diff options
author | Wolfgang Schweer <wschweer@arcor.de> | 2016-05-15 11:05:39 +0200 |
---|---|---|
committer | Wolfgang Schweer <wschweer@arcor.de> | 2016-05-15 11:05:39 +0200 |
commit | 3cff262441abb3c8dc595f7ae2870792f74872df (patch) | |
tree | c1cdae4f9772c9b4b746df4272dc7fa5d4767084 | |
parent | 42b05b30f9f04d2af5827a5aae5b0666da515cc9 (diff) | |
download | sitesummary-3cff262441abb3c8dc595f7ae2870792f74872df.tar.gz sitesummary-3cff262441abb3c8dc595f7ae2870792f74872df.tar.bz2 sitesummary-3cff262441abb3c8dc595f7ae2870792f74872df.tar.xz |
Fix sitesummary.prerm (Closes: #823688).
-rw-r--r-- | debian/changelog | 6 | ||||
-rw-r--r-- | debian/sitesummary.prerm | 3 |
2 files changed, 9 insertions, 0 deletions
diff --git a/debian/changelog b/debian/changelog index bcb3176..0ef95b2 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +sitesummary (0.1.21) UNRELEASED; urgency=medium + + * Fix sitesummary.prerm (Closes: #823688). + + -- Wolfgang Schweer <wschweer@arcor.de> Sun, 15 May 2016 10:30:13 +0200 + sitesummary (0.1.20) unstable; urgency=medium * Remove broken code from autopkgtest script. diff --git a/debian/sitesummary.prerm b/debian/sitesummary.prerm index dd54993..167dc74 100644 --- a/debian/sitesummary.prerm +++ b/debian/sitesummary.prerm @@ -12,6 +12,9 @@ case "$1" in apache2_invoke disconf sitesummary.conf fi ;; + deconfigure|upgrade|failed-upgrade) + : + ;; *) echo "prerm called with unknown argument \`$1'" >&2 exit 1 |