diff options
author | lado <herrlado@gmail.com> | 2013-03-18 00:25:59 +0100 |
---|---|---|
committer | lado <herrlado@gmail.com> | 2013-03-18 00:25:59 +0100 |
commit | affbb7b027850d488664a05a6e4a33e3b838c19c (patch) | |
tree | 8082b93170f109bd976d2cba5eaba47240d90cb6 /vdr-vdrmanager/debian/postrm.ex | |
parent | 61c639058ba812c78e1d26d6a7bfffd7840c9acc (diff) | |
download | vdr-manager-affbb7b027850d488664a05a6e4a33e3b838c19c.tar.gz vdr-manager-affbb7b027850d488664a05a6e4a33e3b838c19c.tar.bz2 |
no debian here
Diffstat (limited to 'vdr-vdrmanager/debian/postrm.ex')
-rw-r--r-- | vdr-vdrmanager/debian/postrm.ex | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/vdr-vdrmanager/debian/postrm.ex b/vdr-vdrmanager/debian/postrm.ex deleted file mode 100644 index b61f79d..0000000 --- a/vdr-vdrmanager/debian/postrm.ex +++ /dev/null @@ -1,37 +0,0 @@ -#!/bin/sh -# postrm script for vdr-plugin-vdrmanager -# -# see: dh_installdeb(1) - -set -e - -# summary of how this script can be called: -# * <postrm> `remove' -# * <postrm> `purge' -# * <old-postrm> `upgrade' <new-version> -# * <new-postrm> `failed-upgrade' <old-version> -# * <new-postrm> `abort-install' -# * <new-postrm> `abort-install' <old-version> -# * <new-postrm> `abort-upgrade' <old-version> -# * <disappearer's-postrm> `disappear' <overwriter> -# <overwriter-version> -# 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 |