]> git.etc.gen.nz Git - mythtv-status.git/commitdiff
Stop the cron.daily script from complaining if mythtv-status returns 1. debian-0.8.0-2 debian-0.9.5-1
authorAndrew Ruthven <andrew@etc.gen.nz>
Wed, 18 Jun 2008 23:10:16 +0000 (11:10 +1200)
committerAndrew Ruthven <andrew@cerberus.etc.gen.nz>
Wed, 18 Jun 2008 23:10:16 +0000 (11:10 +1200)
This can happen if any of the warning conditions are meet.

debian/changelog
debian/cron.daily

index f83fe683b16e64b37155cbd8f6a2975da30fe0db..af5924580452c478f41868c489dc580eb0424489 100644 (file)
@@ -1,3 +1,10 @@
+mythtv-status (0.8.0-2) unstable; urgency=low
+
+  * Stop run-parts in the cron.daily script from complaining if mythtv-status
+    returns an exit code of 1 (which is common).
+
+ -- Andrew Ruthven <andrew@etc.gen.nz>  Thu, 19 Jun 2008 11:09:04 +1200
+
 mythtv-status (0.8.0-1) unstable; urgency=low
 
   * New upstream release.
index 3a40e91c4d44fa2b95adcf4d0d60178bbbe76227..54295bc1c8d8b609da11ab10609ff5adb38a457d 100644 (file)
@@ -8,3 +8,6 @@ then
 fi
 
 /usr/bin/mythtv-status --host $HOST --email $EMAIL $EMAIL_ARGS
+
+# Keep run-parts happy by always return a return code of 0.
+exit 0