File: postrm

package info (click to toggle)
namazu2 2.0.21-25
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 7,044 kB
  • sloc: ansic: 14,161; perl: 10,789; sh: 9,355; lisp: 1,147; makefile: 896
file content (31 lines) | stat: -rw-r--r-- 326 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#!/bin/sh

set -e

package=namazu2

CFG=/etc/namazu/cgidirs

remove_cgi () {
	if [ -f $CFG ]; then 
		for d in `cat $CFG`; do
			if [ -d $d -a -f $d/namazu.cgi ]; then
				rm -f $d/namazu.cgi
			fi
		done
	fi
}

case "$1" in
	purge)
	remove_cgi
	rm -f $CFG
	;;
	remove|abort-install)
	remove_cgi
	;;
	*)
	;;
esac

#DEBHELPER#