Ensure fbsd sets up $RUNLEVEL correctly when init changes

This commit is contained in:
Roy Marples 2007-04-09 09:59:09 +00:00
parent 049948eb09
commit 3a20ea36cc
1 changed files with 5 additions and 1 deletions

View File

@ -13,5 +13,9 @@ export LD_LIBRARY_PATH
# BSD's init works somewhat differently to sysvinit.
# This block should 'translate' from the way init calls it to the way it would
# be called by sysvinit on linux.
export RUNLEVEL=S
case "$1" in
reboot) export RUNLEVEL=6;;
shutdown) export RUNLEVEL=0;;
single) export RUNLEVEL=S;;
esac
exec /sbin/rc "$1"