]> git.donarmstrong.com Git - roundcube.git/commitdiff
Don't handle old configuration files from legacy roundcube
authorVincent Bernat <bernat@luffy.cx>
Sat, 29 Sep 2012 09:39:58 +0000 (11:39 +0200)
committerVincent Bernat <bernat@luffy.cx>
Sat, 29 Sep 2012 09:39:58 +0000 (11:39 +0200)
package. roundcube package is an empty metapackage since
Squeeze. Closes: #688230.

debian/changelog
debian/roundcube.cron.daily [deleted file]
debian/roundcube.default [deleted file]
debian/roundcube.logrotate [deleted file]
debian/roundcube.postinst [deleted file]

index e3c6c4bd3632bbdd760a9f94cd0a270ec1ededba..e1dcca28dc77fb459814a9ccd183ce5e7c3f4548 100644 (file)
@@ -2,8 +2,11 @@ roundcube (0.7.2-5) unstable; urgency=low
 
   * Fix problem with some uuencoded attachments. Patch from Michał
     Mirosław. Closes: #686857.
+  * Don't handle old configuration files from legacy roundcube
+    package. roundcube package is an empty metapackage since
+    Squeeze. Closes: #688230.
 
- -- Vincent Bernat <bernat@debian.org>  Sat, 29 Sep 2012 11:30:04 +0200
+ -- Vincent Bernat <bernat@debian.org>  Sat, 29 Sep 2012 11:39:07 +0200
 
 roundcube (0.7.2-4) unstable; urgency=high
 
diff --git a/debian/roundcube.cron.daily b/debian/roundcube.cron.daily
deleted file mode 100644 (file)
index 8efe0fb..0000000
+++ /dev/null
@@ -1,9 +0,0 @@
-#!/bin/sh
-# This file conflicts with /etc/cron.daily/roundcube-core. If you have
-# modified it, report your modifications to
-# /etc/cron.daily/roundcube-core. If this file is left empty or
-# untouched, it will be deleted.
-
-# If you leave the following marker, this file will be deleted during
-# the next upgrade:
-# 75321 DELETE 75321
diff --git a/debian/roundcube.default b/debian/roundcube.default
deleted file mode 100644 (file)
index 3506610..0000000
+++ /dev/null
@@ -1,8 +0,0 @@
-# This file conflicts with /etc/default/roundcube-core. If you have
-# modified it, report your modifications to
-# /etc/default/roundcube-core. If this file is left empty or
-# untouched, it will be deleted.
-
-# If you leave the following marker, this file will be deleted during
-# the next upgrade:
-# 75321 DELETE 75321
diff --git a/debian/roundcube.logrotate b/debian/roundcube.logrotate
deleted file mode 100644 (file)
index bdb3ea5..0000000
+++ /dev/null
@@ -1,8 +0,0 @@
-# This file conflicts with /etc/logrotate.d/roundcube-core. If you
-# have modified it, report your modifications to
-# /etc/logrotate.d/roundcube-core. If this file is left empty or
-# untouched, it will be deleted.
-
-# If you leave the following marker, this file will be deleted during
-# the next upgrade:
-# 75321 DELETE 75321
diff --git a/debian/roundcube.postinst b/debian/roundcube.postinst
deleted file mode 100644 (file)
index 99e67a5..0000000
+++ /dev/null
@@ -1,18 +0,0 @@
-#!/bin/sh
-
-set -e
-
-# Handle old files that are not needed any more
-for OLD in /etc/logrotate.d/roundcube /etc/default/roundcube /etc/cron.daily/roundcube; do
-    [ -f $OLD ] && {
-       if [ ! -s $OLD ]; then
-           rm $OLD
-       else
-           grep -q '^# 75321 DELETE 75321$' $OLD && rm $OLD
-       fi
-    }
-done
-
-#DEBHELPER#
-
-exit 0