summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--debian/changelog4
-rw-r--r--debian/cron.daily2
2 files changed, 3 insertions, 3 deletions
diff --git a/debian/changelog b/debian/changelog
index b357968..bf2bb75 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,11 +1,11 @@
-etckeeper (0.29) UNRELEASED; urgency=low
+etckeeper (0.29) unstable; urgency=low
* Add a daily cron job to autocommit changes to /etc. Closes: #515100
The cron job is enabled by default but can be disabled
via etckeeper.conf.
(Thanks to Thierry Carrez)
- -- Joey Hess <joeyh@debian.org> Fri, 13 Feb 2009 13:30:25 -0500
+ -- Joey Hess <joeyh@debian.org> Fri, 13 Feb 2009 13:43:02 -0500
etckeeper (0.28) unstable; urgency=low
diff --git a/debian/cron.daily b/debian/cron.daily
index 6b7ccf7..78e66e4 100644
--- a/debian/cron.daily
+++ b/debian/cron.daily
@@ -4,7 +4,7 @@ if [ -x /usr/sbin/etckeeper ] && [ -e /etc/etckeeper/etckeeper.conf ]; then
. /etc/etckeeper/etckeeper.conf
if [ "$AVOID_DAILY_AUTOCOMMITS" != "1" ]; then
if etckeeper unclean; then
- etckeeper commit "daily autocommit"
+ etckeeper commit "daily autocommit" >/dev/null
fi
fi
fi