#!/bin/sh

readonly UTMP

#
# If login delaying is enabled then create the flag file
# which prevents logins before startup is complete
#
case "$DELAYLOGIN" in
  Y*|y*)
	echo "System bootup in progress - please wait" > /run/nologin
	;;
esac

# Remove bootclean's flag files.
# Don't run bootclean again after this!
rm -f /tmp/.clean /run/.clean /run/lock/.clean
rm -f /tmp/.tmpfs /run/.tmpfs /run/lock/.tmpfs

:
