[Pkg-sysvinit-commits] r188 - sysvinit/trunk/debian/initscripts/etc/init.d

Thomas Hood jdthood-guest at costa.debian.org
Mon Nov 21 12:00:18 UTC 2005


Author: jdthood-guest
Date: 2005-11-21 12:00:18 +0000 (Mon, 21 Nov 2005)
New Revision: 188

Modified:
   sysvinit/trunk/debian/initscripts/etc/init.d/sendsigs
Log:
Remove old Miquel version comment; fix indentation

Modified: sysvinit/trunk/debian/initscripts/etc/init.d/sendsigs
===================================================================
--- sysvinit/trunk/debian/initscripts/etc/init.d/sendsigs	2005-11-21 11:59:23 UTC (rev 187)
+++ sysvinit/trunk/debian/initscripts/etc/init.d/sendsigs	2005-11-21 12:00:18 UTC (rev 188)
@@ -8,38 +8,35 @@
 # Short-Description: Kill all remaining processes.
 # Description: 
 ### END INIT INFO
-#
-# Version:      @(#)sendsigs  2.85-8  05-Nov-2003  miquels at cistron.nl
-#
 
 PATH=/sbin:/bin:/usr/sbin:/usr/bin
 . /lib/lsb/init-functions
 
 do_stop () {
-    # Kill all processes.
-    log_action_begin_msg "Sending all processes the TERM signal"
-    killall5 -15
-    log_action_end_msg 0
-    sleep 5
-    log_action_begin_msg "Sending all processes the KILL signal"
-    killall5 -9
-    log_action_end_msg 0
+	# Kill all processes.
+	log_action_begin_msg "Sending all processes the TERM signal"
+	killall5 -15
+	log_action_end_msg 0
+	sleep 5
+	log_action_begin_msg "Sending all processes the KILL signal"
+	killall5 -9
+	log_action_end_msg 0
 }
 
 case "$1" in
-    start)
-        ;;
-    restart|reload|force-reload)
-        echo "Error: argument '$1' not supported" >&2
-        exit 3
-        ;;
-    stop)
-        do_stop
-        ;;
-    *)
-        echo "Usage: $0 start|stop" >&2
-        exit 3
-        ;;
+  start)
+	;;
+  restart|reload|force-reload)
+	echo "Error: argument '$1' not supported" >&2
+	exit 3
+	;;
+  stop)
+	do_stop
+	;;
+  *)
+	echo "Usage: $0 start|stop" >&2
+	exit 3
+	;;
 esac
 
 : exit 0




More information about the Pkg-sysvinit-commits mailing list