]> git.donarmstrong.com Git - roundcube.git/commitdiff
Fix debian/roundcube-core.cron.daily to use
authorVincent Bernat <bernat@debian.org>
Sat, 16 Aug 2008 11:22:23 +0000 (11:22 +0000)
committerJérémy Bobbio <lunar@debian.org>
Sat, 18 Jun 2011 17:39:18 +0000 (19:39 +0200)
/etc/default/roundcube-core instead of /etc/default/roundcube which
should not exist any more

debian/changelog
debian/roundcube-core.cron.daily

index 82ddbaa13169b24a48bb9ab8da306a194513f558..d65155e2adc253b8dcdc3d3146c6637133c01594 100644 (file)
@@ -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 <bernat@debian.org>  Sat, 09 Aug 2008 18:45:17 +0200
+ -- Vincent Bernat <bernat@debian.org>  Sat, 16 Aug 2008 13:22:08 +0200
 
 roundcube (0.2~alpha-1) experimental; urgency=low
 
index 4b071ca2684f1c23463c4d7c7da7c6e80f73a496..0fe51fc1e21364cf1e11a3a1f446d6912985adf5 100644 (file)
@@ -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