From: Michael Tremer Date: Wed, 26 Aug 2009 19:32:21 +0000 (+0200) Subject: initscripts: Fix shutdown and reboot. X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=cf572b2de2bd89ac12448dc965c7436129890d3f;p=ipfire-3.x.git initscripts: Fix shutdown and reboot. Systems got a hang. --- diff --git a/src/initscripts/core/shutdown.conf b/src/initscripts/core/shutdown.conf index cf8841aec..a51e44f82 100644 --- a/src/initscripts/core/shutdown.conf +++ b/src/initscripts/core/shutdown.conf @@ -17,8 +17,8 @@ script # The UPSTART_EVENTS variable contains the event that has been called. # The script use it to perform the requested action. if [ "${UPSTART_EVENTS}" = "reboot" ]; then - reboot -f + reboot -pf else - halt -f + halt -pf fi end script