summaryrefslogtreecommitdiffstats
path: root/meta/packages/initscripts/initscripts-1.0/rmnologin
blob: 444145a26a2080091e258009ea6ef407605f094b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#! /bin/sh
#
# rmnologin	This script removes the /etc/nologin file as the last
#		step in the boot process.
#
# Version:	@(#)rmnologin  1.00  22-Jun-1998  miquels@cistron.nl
#

if test -f /etc/nologin.boot
then
	rm -f /etc/nologin /etc/nologin.boot
fi

: exit 0