#!/sbin/runscript
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-src/rc-scripts/init.d/rmnologin,v 1.8 2004/04/21 17:09:18 vapier Exp $

depend() {
	need localmount
}

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


# vim:ts=4
