summaryrefslogtreecommitdiff
path: root/package/debian/twm.prerm
blob: a92122a9ed21b9bca02d279a0ac9bd1c56397d69 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/bin/sh
# Debian twm package pre-removal script
# Copyright 1998-2001, 2004 Branden Robinson.
# Licensed under the GNU General Public License, version 2.  See the file
# /usr/share/common-licenses/GPL or <https://www.gnu.org/copyleft/gpl.txt>.
# Acknowledgements to Stephen Early, Mark Eichin, and Manoj Srivastava.

set -e

#DEBHELPER#

if [ "$1" = "remove" ] || [ "$1" = "deconfigure" ]; then
  update-alternatives --remove x-window-manager /usr/bin/twm
fi

exit 0

# vim:set ai et sts=2 sw=2 tw=0: