#!/sbin/runscript
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-src/rc-scripts/init.d/rmnologin,v 1.9 2004/08/23 06:39:41 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
