diff options
author | Jérémie Courrèges-Anglas <jca@wxcvbn.org> | 2017-04-04 11:21:30 +0200 |
---|---|---|
committer | Jérémie Courrèges-Anglas <jca@wxcvbn.org> | 2017-04-04 11:21:30 +0200 |
commit | 2f511f98feca2d966bc67ee4d0d8524f3c8c7143 (patch) | |
tree | 5ba5ed9e1358feb040c0bcdd68cd20583fc3a4d5 /debian/postinst | |
parent | e0d6cb491f67f3c605305f33dc2465ff706b9f2c (diff) | |
download | ratpoison-2f511f98feca2d966bc67ee4d0d8524f3c8c7143.zip |
Remove the debian/ directory
Outdated; no objection from brl
Diffstat (limited to 'debian/postinst')
-rw-r--r-- | debian/postinst | 36 |
1 files changed, 0 insertions, 36 deletions
diff --git a/debian/postinst b/debian/postinst deleted file mode 100644 index 6a1d7ee..0000000 --- a/debian/postinst +++ /dev/null @@ -1,36 +0,0 @@ -#! /bin/sh -# postinst script for ratpoison - -set -e - -case "$1" in - configure|abort-remove|abort-deconfigure) -# 20 to start with, -## when depending again on 9menu: -## plus 20 as we have menu support configured -## plus 10 as it can restart other wm's with :newwm or menu - update-alternatives --install /usr/bin/x-window-manager \ - x-window-manager /usr/bin/ratpoison 20 \ - --slave /usr/share/man/man1/x-window-manager.1.gz \ - x-window-manager.1.gz /usr/share/man/man1/ratpoison.1.gz - ;; - - abort-upgrade) - ;; - - *) - echo "postinst called with unknown argument \`$1'" >&2 - exit 1 - ;; -esac - -# taken from dh_pysupport -if [ "$1" = "configure" ] && which update-python-modules >/dev/null 2>&1; then - update-python-modules -i /usr/share/python-support/ratpoison -fi - -#DEBHELPER# - -exit 0 - - |