tags 553055 + patch
thanks

The initscript should return 0 if RUN_HYLAFAX=0.
diff -u hylafax-6.0.3/debian/changelog hylafax-6.0.3/debian/changelog
--- hylafax-6.0.3/debian/changelog
+++ hylafax-6.0.3/debian/changelog
@@ -1,3 +1,9 @@
+hylafax (2:6.0.3-5.1) unstable; urgency=low
+
+  * Return 0 from initscript, if RUN_HYLAFAX=0 (Closes: #553055)
+
+ -- Robert Grimm <r...@robgri.de>  Sat, 28 Nov 2009 11:33:10 +0100
+
 hylafax (2:6.0.3-5) unstable; urgency=low
 
   * Fixed init.d script error (Closes: #551285)
diff -u hylafax-6.0.3/debian/hylafax-server.hylafax.init hylafax-6.0.3/debian/hylafax-server.hylafax.init
--- hylafax-6.0.3/debian/hylafax-server.hylafax.init
+++ hylafax-6.0.3/debian/hylafax-server.hylafax.init
@@ -96,7 +96,7 @@
 
 if [ "$RUN_HYLAFAX" -ne 1 -a "$1" = "start" ]; then
   echo "Hylafax is disabled, see /etc/default/hylafax"
-  exit 1
+  exit 0
 fi
 
 

Reply via email to