From 6be3ce507637aaa8e015127028c91380f0799baf Mon Sep 17 00:00:00 2001 From: Vincent Bernat Date: Sat, 29 Sep 2012 11:39:58 +0200 Subject: [PATCH] Don't handle old configuration files from legacy roundcube package. roundcube package is an empty metapackage since Squeeze. Closes: #688230. --- debian/changelog | 5 ++++- debian/roundcube.cron.daily | 9 --------- debian/roundcube.default | 8 -------- debian/roundcube.logrotate | 8 -------- debian/roundcube.postinst | 18 ------------------ 5 files changed, 4 insertions(+), 44 deletions(-) delete mode 100644 debian/roundcube.cron.daily delete mode 100644 debian/roundcube.default delete mode 100644 debian/roundcube.logrotate delete mode 100644 debian/roundcube.postinst diff --git a/debian/changelog b/debian/changelog index e3c6c4b..e1dcca2 100644 --- a/debian/changelog +++ b/debian/changelog @@ -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 Sat, 29 Sep 2012 11:30:04 +0200 + -- Vincent Bernat 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 index 8efe0fb..0000000 --- a/debian/roundcube.cron.daily +++ /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 index 3506610..0000000 --- a/debian/roundcube.default +++ /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 index bdb3ea5..0000000 --- a/debian/roundcube.logrotate +++ /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 index 99e67a5..0000000 --- a/debian/roundcube.postinst +++ /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 -- 2.39.2