X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=debian%2Fopenvswitch-controller.postrm;fp=debian%2Fopenvswitch-controller.postrm;h=0000000000000000000000000000000000000000;hb=1d5aaa61fa8ca68f487e8b578b7aa99a0bbd1f26;hp=42cb523f96c97c799ddb82d0488f24d5941f2d06;hpb=19c8e9c11bcd441a42ababb8439bc7b24e9e435c;p=sliver-openvswitch.git diff --git a/debian/openvswitch-controller.postrm b/debian/openvswitch-controller.postrm deleted file mode 100755 index 42cb523f9..000000000 --- a/debian/openvswitch-controller.postrm +++ /dev/null @@ -1,44 +0,0 @@ -#!/bin/sh -# postrm script for openvswitch-controller -# -# 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) - if cd /etc/openvswitch-controller; then - rm -f cacert.pem cert.pem privkey.pem req.pem - rm -f tmp-privkey.pem tmp-cert.pem tmp-req.pem - fi - ;; - - 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