File: postrm

package info (click to toggle)
ctwm 4.1.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 4,580 kB
  • sloc: ansic: 34,729; yacc: 985; sh: 466; perl: 415; lex: 133; makefile: 102
file content (22 lines) | stat: -rw-r--r-- 476 bytes parent folder | download | duplicates (10)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/bin/sh
# Debian ctwm package post-removal script
# Copyright 1999 Branden Robinson.
# Licensed under the GNU General Public License, version 2.  See the file
# /usr/share/common-licenses/GPL or <http://www.gnu.org/copyleft/gpl.txt>.

set -e

trap "echo ;\
      echo 'Received signal.  Aborting removal of ctwm package.' ;\
      echo ;\
      exit 1" 1 2 3 15

if [ "$1" = "purge" ]; then
  if [ -d /etc/X11/ctwm ]; then
    rm -r /etc/X11/ctwm
  fi
fi

#DEBHELPER#

exit