From 93b2076aa62000ad044aafe49b717dadbbdee337 Mon Sep 17 00:00:00 2001 From: Andrew Ruthven Date: Thu, 19 Jun 2008 11:10:16 +1200 Subject: [PATCH] Stop the cron.daily script from complaining if mythtv-status returns 1. This can happen if any of the warning conditions are meet. --- debian/changelog | 7 +++++++ debian/cron.daily | 3 +++ 2 files changed, 10 insertions(+) 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 -- 2.30.2