]> git.etc.gen.nz Git - mythtv-status.git/commitdiff
The init.d script shouldn't check the return code anymore, as the return code may...
authorAndrew Ruthven <andrew@etc.gen.nz>
Sun, 14 Sep 2008 23:18:00 +0000 (11:18 +1200)
committerAndrew Ruthven <andrew@etc.gen.nz>
Thu, 30 Oct 2008 00:45:59 +0000 (13:45 +1300)
debian/changelog
debian/init.d

index 5eaa3c60310874f075d026d0369954988c8693fa..0c89ed0d5e8dc2c3724cd22d858ff6f2bf9f5539 100644 (file)
@@ -1,3 +1,10 @@
+mythtv-status (0.9.0-2) unstable; urgency=low
+
+  * The init.d script shouldn't check the return code anymore, as the
+    return code may be 1 if there any warnings present.
+
+ -- Andrew Ruthven <andrew@etc.gen.nz>  Mon, 15 Sep 2008 11:16:53 +1200
+
 mythtv-status (0.9.0-1) unstable; urgency=low
 
   * New upstream release.
index 1c38c8c04b0cc0f41e17f0ec452dbf377e032830..685f312ed6b54e663446d7d43206c1f1fd3a4699 100644 (file)
@@ -61,10 +61,8 @@ case "$1" in
 
     cp /var/run/motd.orig /var/run/motd.new
 
-    if $DAEMON $ARGS -h $HOST >> /var/run/motd.new
-    then
-      mv /var/run/motd.new /var/run/motd
-    fi
+    $DAEMON $ARGS -h $HOST >> /var/run/motd.new
+    mv /var/run/motd.new /var/run/motd
     log_end_msg 0
     ;;
   stop)