diff options
author | Daniel Baumann <daniel@debian.org> | 2007-09-23 10:04:48 +0200 |
---|---|---|
committer | Daniel Baumann <daniel@debian.org> | 2007-09-23 10:04:48 +0200 |
commit | 544384c28f648c04336b6bea17f5a05ab6045ca0 (patch) | |
tree | 4bbc1758ceaa46c5e81fe9d66ccdaacfec047ef8 /debian/postrm | |
parent | f4383da69d4642521cb07f8f970d9c9c759b44ee (diff) | |
download | vyos-live-build-544384c28f648c04336b6bea17f5a05ab6045ca0.tar.gz vyos-live-build-544384c28f648c04336b6bea17f5a05ab6045ca0.zip |
Adding live-helper 1.0~a3-1.
Diffstat (limited to 'debian/postrm')
-rw-r--r-- | debian/postrm | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/debian/postrm b/debian/postrm new file mode 100644 index 000000000..88fdf8c39 --- /dev/null +++ b/debian/postrm @@ -0,0 +1,25 @@ +#!/bin/sh + +set -e + +case "${1}" in + remove) + for FILE in /usr/share/man/man7/casper.7 /usr/share/man/man1/casper-snapshot.1 + do + dpkg-divert --package live-helper --remove --rename --divert ${FILE}.casper ${FILE} + done + ;; + + purge|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear) + + ;; + + *) + echo "postrm called with unknown argument \`${1}'" >&2 + exit 1 + ;; +esac + +#DEBHELPER# + +exit 0 |