File: postrm

package info (click to toggle)
starplot 0.95.5-8.3
  • links: PTS
  • area: main
  • in suites: bookworm, bullseye, buster
  • size: 3,492 kB
  • sloc: ansic: 11,296; cpp: 6,418; sh: 5,092; makefile: 613; yacc: 289; sed: 16
file content (24 lines) | stat: -rw-r--r-- 396 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!/bin/sh

set -e

case "$1" in
	remove|disappear)
		rmdir /var/lib/starplot > /dev/null 2>&1 || true
	;;
	
	purge|upgrade|failed-upgrade|abort-install|abort-upgrade)

        ;;

	*)
        	echo "postrm called with unknown argument \`$1'" >&2
        	exit 1
	;;
esac

# dh_installdeb will replace this with shell code automatically
# generated by other debhelper scripts.

#DEBHELPER#
exit 0