1
0
mirror of https://github.com/gryf/wmaker.git synced 2025-12-19 20:38:08 +01:00
Files
wmaker/debian/wmaker.prerm
2009-08-24 11:55:20 +02:00

23 lines
380 B
Bash

#!/bin/sh
set -e
case "$1" in
failed-upgrade|abort-upgrade|deconfigure)
update-alternatives --remove x-window-manager /usr/bin/wmaker
;;
remove)
update-alternatives --remove x-window-manager /usr/bin/wmaker
;;
upgrade)
;;
*)
echo "postrm called with unknown argument \`$1'" >&2
exit 1
;;
esac
#DEBHELPER#
exit 0