summaryrefslogtreecommitdiff
path: root/package/debian/twm.postrm
blob: 98aa2aa563d32fdcb0b6418acf994c9829f74698 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/bin/sh
# Debian twm package post-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" = "purge" ]; then
  if [ -d /etc/X11/twm ]; then
    rm -r /etc/X11/twm
  fi
fi

exit 0

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