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

Pino Toscano pino at alioth.debian.org
Fri May 24 12:50:48 UTC 2013


Author: pino
Date: 2013-05-24 12:50:47 +0000 (Fri, 24 May 2013)
New Revision: 19560

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:
stop using $START_ICECC and $START_ICECC_SCHEDULER in init scripts


Modified: kde-extras/icecream/trunk/debian/changelog
===================================================================
--- kde-extras/icecream/trunk/debian/changelog	2013-05-24 11:21:03 UTC (rev 19559)
+++ kde-extras/icecream/trunk/debian/changelog	2013-05-24 12:50:47 UTC (rev 19560)
@@ -40,6 +40,7 @@
       being uncommon to use debconf this way, it also overwrites a conffile,
       /etc/defaults/icecc (which has been removed now, although still used if
       present). (Closes: #656089)
+    - stop using $START_ICECC and $START_ICECC_SCHEDULER in init scripts
   * icecc.postrm: do not manually remove the conffiles in /etc, since dpkg does
     that already.
 

Modified: kde-extras/icecream/trunk/debian/icecc.icecc-scheduler.init
===================================================================
--- kde-extras/icecream/trunk/debian/icecc.icecc-scheduler.init	2013-05-24 11:21:03 UTC (rev 19559)
+++ kde-extras/icecream/trunk/debian/icecc.icecc-scheduler.init	2013-05-24 12:50:47 UTC (rev 19560)
@@ -45,11 +45,9 @@
 
 case "$1" in
     start)
-        if [ "$START_ICECC_SCHEDULER" = "true" ]; then
-            log_daemon_msg "Starting distributed compiler scheduler" "icecc-scheduler"
-            start_icecc_scheduler
-            log_end_msg $?
-        fi
+        log_daemon_msg "Starting distributed compiler scheduler" "icecc-scheduler"
+        start_icecc_scheduler
+        log_end_msg $?
         ;;
   stop)
         log_daemon_msg "Stopping distributed compiler scheduler" "icecc_scheduler"
@@ -60,9 +58,7 @@
         log_daemon_msg "Restarting distributed compiler scheduler" "icecc-scheduler"
         stop_icecc_scheduler
         sleep 1
-        if [ "$START_ICECC_SCHEDULER" = "true" ]; then
-            start_icecc_scheduler
-        fi
+        start_icecc_scheduler
         log_end_msg $?
         ;;
   *)

Modified: kde-extras/icecream/trunk/debian/icecc.iceccd.init
===================================================================
--- kde-extras/icecream/trunk/debian/icecc.iceccd.init	2013-05-24 11:21:03 UTC (rev 19559)
+++ kde-extras/icecream/trunk/debian/icecc.iceccd.init	2013-05-24 12:50:47 UTC (rev 19560)
@@ -68,11 +68,9 @@
 
 case "$1" in
     start)
-        if [ "$START_ICECC" = "true" ]; then
-            log_daemon_msg "Starting distributed compiler daemon" "iceccd"
-            start_icecc_daemon
-            log_end_msg $?
-        fi
+        log_daemon_msg "Starting distributed compiler daemon" "iceccd"
+        start_icecc_daemon
+        log_end_msg $?
         ;;
   stop)
         log_daemon_msg "Stopping distributed compiler daemon" "iceccd"
@@ -83,9 +81,7 @@
         log_daemon_msg "Restarting distributed compiler daemon" "iceccd"
         stop_icecc_daemon
         sleep 1
-        if [ "$START_ICECC" = "true" ]; then
-            start_icecc_daemon
-        fi
+        start_icecc_daemon
         log_end_msg $?
         ;;
   *)




More information about the pkg-kde-commits mailing list