File: postrm

package info (click to toggle)
twms 0.03e-2
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 424 kB
  • sloc: python: 1,527; sh: 111; makefile: 9
file content (11 lines) | stat: -rw-r--r-- 151 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/sh
# postrm script for twms
set -e

if [ "$1" = "purge" ]; then
	rm -rf /var/log/twms /var/run/twms.pid /var/cache/twms
fi

#DEBHELPER#

exit 0