File: postrm

package info (click to toggle)
abuse-lib 2.00-18
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k, lenny, squeeze
  • size: 6,776 kB
  • ctags: 364
  • sloc: lisp: 5,618; makefile: 41; sh: 17
file content (12 lines) | stat: -rw-r--r-- 209 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh -e

#DEBHELPER#

case "$1" in
  purge)
	if [ -d /var/games/abuse ] ; then
		rm -f `find /var/games/abuse | grep -v sfx` 2>/dev/null || true
		rmdir /var/games/abuse 2>/dev/null || true
	fi
  ;;
esac