summaryrefslogtreecommitdiff
path: root/init.d/rmnologin
blob: 56b20ea1b2e2a141365bf6548ef577a9a40426a5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/sbin/runscript
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2

depend() {
	need localmount
}

start() {
	if [ -f /etc/nologin.boot ] ; then
		rm -f /etc/nologin /etc/nologin.boot
	fi
}


# vim:ts=4