From: Andrew Ruthven Date: Wed, 18 Jun 2008 23:10:16 +0000 (+1200) Subject: Stop the cron.daily script from complaining if mythtv-status returns 1. X-Git-Tag: debian-0.8.0-2^0 X-Git-Url: http://git.etc.gen.nz/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=93b2076aa62000ad044aafe49b717dadbbdee337;p=mythtv-status.git Stop the cron.daily script from complaining if mythtv-status returns 1. This can happen if any of the warning conditions are meet. --- diff --git a/debian/changelog b/debian/changelog index f83fe68..af59245 100644 --- a/debian/changelog +++ b/debian/changelog @@ -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 Thu, 19 Jun 2008 11:09:04 +1200 + mythtv-status (0.8.0-1) unstable; urgency=low * New upstream release. diff --git a/debian/cron.daily b/debian/cron.daily index 3a40e91..54295bc 100644 --- a/debian/cron.daily +++ b/debian/cron.daily @@ -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