From: Michael Tremer Date: Tue, 25 Aug 2009 21:17:49 +0000 (+0200) Subject: initscripts: Removed unknown functions. X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6bc4d861ff077d9acad13c1c6c0d76bb353d8fa5;p=ipfire-3.x.git initscripts: Removed unknown functions. You can't just copy some lines... --- diff --git a/src/initscripts/core/shutdown.conf b/src/initscripts/core/shutdown.conf index 625614459..cf8841aec 100644 --- a/src/initscripts/core/shutdown.conf +++ b/src/initscripts/core/shutdown.conf @@ -8,18 +8,11 @@ console output script # Exterminate any lil' process that managed to evade my merciless # terminating. - initmsg msg "Sending all processes the SIGTERM signal" killall5 -15 || true - initmsg ret $? "Sending all processes the SIGTERM signal" - - initmsg msg "Sending all processes the SIGKILL signal" sleep 5 killall5 -9 || true - initmsg ret $? "Sending all processes the SIGKILL signal" - initmsg msg "Remounting root filesystem read-only" mount -n -o remount,ro / || true - initmsg ret $? "Remount of the root filesystem read-only" # The UPSTART_EVENTS variable contains the event that has been called. # The script use it to perform the requested action.