rev 19570 - kde-extras/icecream/trunk/debian

Pino Toscano pino at alioth.debian.org
Fri May 24 16:39:28 UTC 2013


Author: pino
Date: 2013-05-24 16:39:28 +0000 (Fri, 24 May 2013)
New Revision: 19570

Modified:
   kde-extras/icecream/trunk/debian/changelog
   kde-extras/icecream/trunk/debian/icecc.icecc-scheduler.init
   kde-extras/icecream/trunk/debian/icecc.iceccd.init
Log:
implement the "status" action in the init scripts


Modified: kde-extras/icecream/trunk/debian/changelog
===================================================================
--- kde-extras/icecream/trunk/debian/changelog	2013-05-24 15:43:17 UTC (rev 19569)
+++ kde-extras/icecream/trunk/debian/changelog	2013-05-24 16:39:28 UTC (rev 19570)
@@ -50,6 +50,7 @@
   * Bump Standards-Version to 3.9.4, no changes required.
   * Cleanup the old conffiles: remove /etc/init.d/icecc, and move away
     /etc/defaults/icecc.
+  * Implement the "status" action in the init scripts.
 
  -- Debian KDE Extras Team <pkg-kde-extras at lists.alioth.debian.org>  Thu, 23 May 2013 20:48:57 +0200
 

Modified: kde-extras/icecream/trunk/debian/icecc.icecc-scheduler.init
===================================================================
--- kde-extras/icecream/trunk/debian/icecc.icecc-scheduler.init	2013-05-24 15:43:17 UTC (rev 19569)
+++ kde-extras/icecream/trunk/debian/icecc.icecc-scheduler.init	2013-05-24 16:39:28 UTC (rev 19570)
@@ -61,9 +61,12 @@
         start_icecc_scheduler
         log_end_msg $?
         ;;
+  status)
+        status_of_proc "$SCHEDULER" "icecc-scheduler" && exit 0 || exit $?
+        ;;
   *)
         N=/etc/init.d/icecc-scheduler
-        echo "Usage: $N {start|stop|restart|force-reload}" >&2
+        echo "Usage: $N {start|stop|restart|force-reload|status}" >&2
         exit 1
         ;;
 esac

Modified: kde-extras/icecream/trunk/debian/icecc.iceccd.init
===================================================================
--- kde-extras/icecream/trunk/debian/icecc.iceccd.init	2013-05-24 15:43:17 UTC (rev 19569)
+++ kde-extras/icecream/trunk/debian/icecc.iceccd.init	2013-05-24 16:39:28 UTC (rev 19570)
@@ -84,9 +84,12 @@
         start_icecc_daemon
         log_end_msg $?
         ;;
+  status)
+        status_of_proc "$DAEMON" "iceccd" && exit 0 || exit $?
+        ;;
   *)
         N=/etc/init.d/iceccd
-        echo "Usage: $N {start|stop|restart|force-reload}" >&2
+        echo "Usage: $N {start|stop|restart|force-reload|status}" >&2
         exit 1
         ;;
 esac




More information about the pkg-kde-commits mailing list