#! /bin/sh
#
# rmnologin	This script removes the /etc/nologin file as the last
#		step in the boot process.
#

RCDLINKS="2,S16 3,S16 4,S16 5,S16"

if [ -f /etc/nologin.boot ]
then
	rm -f /etc/nologin /etc/nologin.boot
fi

