diff options
author | brl <brl> | 2006-11-21 16:54:49 +0000 |
---|---|---|
committer | brl <brl> | 2006-11-21 16:54:49 +0000 |
commit | 41ee1578d0b079b60a224ad8a595af42b86b0c72 (patch) | |
tree | 3d1cfff1f41e9356d0fb38a90605ceef8b39f6ed /debian/prerm | |
parent | 59dd6a0795dd27192e5c9e63a1d2648bce559326 (diff) | |
download | ratpoison-41ee1578d0b079b60a224ad8a595af42b86b0c72.zip |
update debian/ directory
Diffstat (limited to 'debian/prerm')
-rw-r--r-- | debian/prerm | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/debian/prerm b/debian/prerm new file mode 100644 index 0000000..89b4c83 --- /dev/null +++ b/debian/prerm @@ -0,0 +1,28 @@ +#! /bin/sh +# prerm script for ratpoison + +set -e + +case "$1" in + remove|deconfigure) + update-alternatives --remove x-window-manager /usr/bin/ratpoison + if [ -d /var/lib/ratpoison/menu ] ; then + rm /var/lib/ratpoison/menu/*.menu || true + fi + ;; + upgrade|failed-upgrade) + ;; + *) + echo "prerm called with unknown argument \`$1'" >&2 + exit 1 + ;; +esac + +# taken from dh_pysupport: +if which update-python-modules >/dev/null 2>&1; then + update-python-modules -c -i /usr/share/python-support/ratpoison +fi + +#DEBHELPER# + +exit 0 |