From 3a20ea36cc7f1ed89186bdfa46ea0dd2c72742ec Mon Sep 17 00:00:00 2001 From: Roy Marples Date: Mon, 9 Apr 2007 09:59:09 +0000 Subject: Ensure fbsd sets up $RUNLEVEL correctly when init changes --- etc.BSD/rc.shutdown | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'etc.BSD') diff --git a/etc.BSD/rc.shutdown b/etc.BSD/rc.shutdown index 737002d4..0fe22836 100644 --- a/etc.BSD/rc.shutdown +++ b/etc.BSD/rc.shutdown @@ -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" -- cgit v1.2.3