]> pilppa.org Git - familiar-h63xx-build.git/blob - org.handhelds.familiar/packages/initscripts/initscripts-1.0/rmnologin
OE tree imported from monotone branch org.openembedded.oz354fam083 at revision 8b12e3...
[familiar-h63xx-build.git] / org.handhelds.familiar / packages / initscripts / initscripts-1.0 / rmnologin
1 #! /bin/sh
2 #
3 # rmnologin     This script removes the /etc/nologin file as the last
4 #               step in the boot process.
5 #
6 # Version:      @(#)rmnologin  1.00  22-Jun-1998  miquels@cistron.nl
7 #
8
9 if test -f /etc/nologin.boot
10 then
11         rm -f /etc/nologin /etc/nologin.boot
12 fi
13
14 : exit 0