File: postrm

package info (click to toggle)
phpwebcounter 1.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 256 kB
  • sloc: php: 61; sh: 43; makefile: 4
file content (15 lines) | stat: -rwxr-xr-x 195 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/sh
# postrm script for phpwebcounter

set -eu

if [ "$1" = "remove" ] || [ "$1" = "purge" ]; then

	if [ "$1" = "purge" ]; then
		rm -rf /var/lib/phpwebcounter
	fi
fi

#DEBHELPER#

exit 0