File: tinywm.postrm

package info (click to toggle)
tinywm 1.3-1
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 96 kB
  • ctags: 19
  • sloc: ansic: 92; makefile: 59; sh: 30; python: 29
file content (17 lines) | stat: -rw-r--r-- 216 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/sh
set -e

Tinywm_entry="/usr/bin/tinywm"
PACKAGE="tinywm"

case "$1" in
    purge)
        test -d /etc/X11/$PACKAGE && rm -rf /etc/X11/$PACKAGE
	;;
    remove)
        ;;
    *)
        ;;
esac

#DEBHELPER#