rev 4529 - in kde-extras/icecream: tags tags/0.7.14-3/debian trunk/debian

Fathi Boudra fboudra-guest at costa.debian.org
Tue Sep 19 09:39:01 UTC 2006


Author: fboudra-guest
Date: 2006-09-19 09:39:00 +0000 (Tue, 19 Sep 2006)
New Revision: 4529

Added:
   kde-extras/icecream/tags/0.7.14-3/
Modified:
   kde-extras/icecream/tags/0.7.14-3/debian/changelog
   kde-extras/icecream/tags/0.7.14-3/debian/icecc.init
   kde-extras/icecream/trunk/debian/changelog
   kde-extras/icecream/trunk/debian/icecc.init
Log:
tags icecc 0.7.14-3

Copied: kde-extras/icecream/tags/0.7.14-3 (from rev 4528, kde-extras/icecream/trunk)

Modified: kde-extras/icecream/tags/0.7.14-3/debian/changelog
===================================================================
--- kde-extras/icecream/trunk/debian/changelog	2006-09-19 02:03:54 UTC (rev 4528)
+++ kde-extras/icecream/tags/0.7.14-3/debian/changelog	2006-09-19 09:39:00 UTC (rev 4529)
@@ -1,3 +1,10 @@
+icecc (0.7.14-3) unstable; urgency=low
+
+  * Fix comparisons in init script.
+    Thanks to Jens Reinsberger (Closes: #388166)
+
+ -- Fathi Boudra <fboudra at free.fr>  Tue, 19 Sep 2006 11:31:49 +0200
+
 icecc (0.7.14-2) unstable; urgency=low
 
   * Make init script LSB compliant

Modified: kde-extras/icecream/tags/0.7.14-3/debian/icecc.init
===================================================================
--- kde-extras/icecream/trunk/debian/icecc.init	2006-09-19 02:03:54 UTC (rev 4528)
+++ kde-extras/icecream/tags/0.7.14-3/debian/icecc.init	2006-09-19 09:39:00 UTC (rev 4529)
@@ -76,13 +76,13 @@
 
 case "$1" in
     start)
-        if [ "$START_ICECC" == "true" ]; then
+        if [ "$START_ICECC" = "true" ]; then
             log_daemon_msg "Starting distributed compiler daemon" "iceccd"
             start_icecc_daemon
             log_end_msg $?
         fi
 
-        if [ "$START_ICECC_SCHEDULER" == "true" ]; then
+        if [ "$START_ICECC_SCHEDULER" = "true" ]; then
             log_daemon_msg "Starting distributed compiler scheduler" "icecc-scheduler"
             start_icecc_scheduler
             log_end_msg $?
@@ -101,7 +101,7 @@
         log_daemon_msg "Restarting distributed compiler daemon" "iceccd"
         stop_icecc_daemon
         sleep 1
-        if [ "$START_ICECC" == "true" ]; then
+        if [ "$START_ICECC" = "true" ]; then
             start_icecc_daemon
         fi
         log_end_msg $?
@@ -109,7 +109,7 @@
         log_daemon_msg "Restarting distributed compiler scheduler" "icecc-scheduler"
         stop_icecc_scheduler
         sleep 1
-        if [ "$START_ICECC_SCHEDULER" == "true" ]; then
+        if [ "$START_ICECC_SCHEDULER" = "true" ]; then
             start_icecc_scheduler
         fi
         log_end_msg $?

Modified: kde-extras/icecream/trunk/debian/changelog
===================================================================
--- kde-extras/icecream/trunk/debian/changelog	2006-09-19 02:03:54 UTC (rev 4528)
+++ kde-extras/icecream/trunk/debian/changelog	2006-09-19 09:39:00 UTC (rev 4529)
@@ -1,3 +1,10 @@
+icecc (0.7.14-3) unstable; urgency=low
+
+  * Fix comparisons in init script.
+    Thanks to Jens Reinsberger (Closes: #388166)
+
+ -- Fathi Boudra <fboudra at free.fr>  Tue, 19 Sep 2006 11:31:49 +0200
+
 icecc (0.7.14-2) unstable; urgency=low
 
   * Make init script LSB compliant

Modified: kde-extras/icecream/trunk/debian/icecc.init
===================================================================
--- kde-extras/icecream/trunk/debian/icecc.init	2006-09-19 02:03:54 UTC (rev 4528)
+++ kde-extras/icecream/trunk/debian/icecc.init	2006-09-19 09:39:00 UTC (rev 4529)
@@ -76,13 +76,13 @@
 
 case "$1" in
     start)
-        if [ "$START_ICECC" == "true" ]; then
+        if [ "$START_ICECC" = "true" ]; then
             log_daemon_msg "Starting distributed compiler daemon" "iceccd"
             start_icecc_daemon
             log_end_msg $?
         fi
 
-        if [ "$START_ICECC_SCHEDULER" == "true" ]; then
+        if [ "$START_ICECC_SCHEDULER" = "true" ]; then
             log_daemon_msg "Starting distributed compiler scheduler" "icecc-scheduler"
             start_icecc_scheduler
             log_end_msg $?
@@ -101,7 +101,7 @@
         log_daemon_msg "Restarting distributed compiler daemon" "iceccd"
         stop_icecc_daemon
         sleep 1
-        if [ "$START_ICECC" == "true" ]; then
+        if [ "$START_ICECC" = "true" ]; then
             start_icecc_daemon
         fi
         log_end_msg $?
@@ -109,7 +109,7 @@
         log_daemon_msg "Restarting distributed compiler scheduler" "icecc-scheduler"
         stop_icecc_scheduler
         sleep 1
-        if [ "$START_ICECC_SCHEDULER" == "true" ]; then
+        if [ "$START_ICECC_SCHEDULER" = "true" ]; then
             start_icecc_scheduler
         fi
         log_end_msg $?




More information about the pkg-kde-commits mailing list