From: Thomas Lamprecht Date: Fri, 17 Nov 2017 14:02:23 +0000 (+0100) Subject: buildsys: remove outdated postrm X-Git-Url: https://git.proxmox.com/?a=commitdiff_plain;h=f238b968969a97619bbefc2597cedf9097fcb2a1;p=pve-cluster.git buildsys: remove outdated postrm we did nothing special here so just use the debhelper generated one Signed-off-by: Thomas Lamprecht --- diff --git a/debian/postrm b/debian/postrm deleted file mode 100644 index 20f4fe7..0000000 --- a/debian/postrm +++ /dev/null @@ -1,39 +0,0 @@ -#!/bin/sh -# postrm script for pve-cluster -# -# see: dh_installdeb(1) - -set -e - -# summary of how this script can be called: -# * `remove' -# * `purge' -# * `upgrade' -# * `failed-upgrade' -# * `abort-install' -# * `abort-install' -# * `abort-upgrade' -# * `disappear' -# -# for details, see http://www.debian.org/doc/debian-policy/ or -# the debian-policy package - - -case "$1" in - purge|remove|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear) - ;; - - *) - echo "postrm called with unknown argument \`$1'" >&2 - exit 1 - ;; -esac - -# dh_installdeb will replace this with shell code automatically -# generated by other debhelper scripts. - -#DEBHELPER# - -exit 0 - -