diff options
author | Daniel Baumann <daniel@debian.org> | 2007-09-23 10:05:09 +0200 |
---|---|---|
committer | Daniel Baumann <daniel@debian.org> | 2007-09-23 10:05:09 +0200 |
commit | f0712b2f79ae4a23146a088624fe48aed7c02cca (patch) | |
tree | d7facbbbf53b1a5bc0fa92f671f5b1e29a7e3200 /debian/postrm | |
parent | afe37cce9356e0284db08134781e3a0da375c35d (diff) | |
download | vyos-live-build-f0712b2f79ae4a23146a088624fe48aed7c02cca.tar.gz vyos-live-build-f0712b2f79ae4a23146a088624fe48aed7c02cca.zip |
Adding live-helper 1.0~a10-1.
Diffstat (limited to 'debian/postrm')
-rw-r--r-- | debian/postrm | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/debian/postrm b/debian/postrm deleted file mode 100644 index 08e1cb376..000000000 --- a/debian/postrm +++ /dev/null @@ -1,25 +0,0 @@ -#!/bin/sh - -set -e - -case "${1}" in - remove) - for FILE in /usr/share/man/man7/casper.7.gz /usr/share/man/man1/casper-snapshot.1.gz - 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 |