diff options
author | Tom Grennan <tgrennan@vyatta.com> | 2007-09-17 12:05:31 -0700 |
---|---|---|
committer | Tom Grennan <tgrennan@vyatta.com> | 2007-09-17 12:05:31 -0700 |
commit | 359112f4f9441b9db3d59ca431fb341bf0c37d23 (patch) | |
tree | d138cd0320c58fe2d7e3e55f662316e9e69b1bf4 /debian/postrm.ex | |
parent | 7bfdaea6ad1bbe46fcd44064815b8aefee155675 (diff) | |
download | vyatta-op-359112f4f9441b9db3d59ca431fb341bf0c37d23.tar.gz vyatta-op-359112f4f9441b9db3d59ca431fb341bf0c37d23.zip |
add debian/
Diffstat (limited to 'debian/postrm.ex')
-rw-r--r-- | debian/postrm.ex | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/debian/postrm.ex b/debian/postrm.ex new file mode 100644 index 0000000..210546d --- /dev/null +++ b/debian/postrm.ex @@ -0,0 +1,39 @@ +#!/bin/sh +# postrm script for vyatta-op +# +# 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 + + |