#!/sbin/runscript
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /home/cvsroot/gentoo-src/rc-scripts/init.d/rmnologin,v 1.6 2002/11/18 13:07:02 azarah Exp $


depend() {
	need localmount
}

start() {
	if [ -f /etc/nologin.boot ]
	then
		rm -f /etc/nologin /etc/nologin.boot &>/dev/null
	fi
}


# vim:ts=4
