File: postrm

package info (click to toggle)
twms 0.05t-2
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 284 kB
  • ctags: 222
  • sloc: python: 1,647; sh: 79; makefile: 22
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