From: Vincent Bernat Date: Sat, 16 Aug 2008 11:22:23 +0000 (+0000) Subject: Fix debian/roundcube-core.cron.daily to use X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=1d71e64ce671c0ea02378e927351980598c507f8;p=roundcube.git Fix debian/roundcube-core.cron.daily to use /etc/default/roundcube-core instead of /etc/default/roundcube which should not exist any more --- diff --git a/debian/changelog b/debian/changelog index 82ddbaa..d65155e 100644 --- a/debian/changelog +++ b/debian/changelog @@ -5,11 +5,14 @@ roundcube (0.2~alpha-2) UNRELEASED; urgency=low * Fix lighttpd.conf to make it work with latest versions (Closes: #494044) * Ship a bug/control file to have all bugs submitted against roundcube metapackage + * Fix debian/roundcube-core.cron.daily to use + /etc/default/roundcube-core instead of /etc/default/roundcube which + should not exist any more [ Romain Beauxis ] * Versioned roundcube-core dependency for roundcube - -- Vincent Bernat Sat, 09 Aug 2008 18:45:17 +0200 + -- Vincent Bernat Sat, 16 Aug 2008 13:22:08 +0200 roundcube (0.2~alpha-1) experimental; urgency=low diff --git a/debian/roundcube-core.cron.daily b/debian/roundcube-core.cron.daily index 4b071ca..0fe51fc 100644 --- a/debian/roundcube-core.cron.daily +++ b/debian/roundcube-core.cron.daily @@ -2,8 +2,8 @@ MAX_TMPFILE_LIFETIME=5 # MAX_TMPFILE_LIFETIME can be overridden in this file -if [ -r /etc/default/roundcube ]; then - . /etc/default/roundcube +if [ -r /etc/default/roundcube-core ]; then + . /etc/default/roundcube-core fi find /var/lib/roundcube/temp -type f -mtime +$MAX_TMPFILE_LIFETIME -print0 | xargs -0 -r rm