File: diffmon.postrm

package info (click to toggle)
diffmon 20020222-2
  • links: PTS
  • area: main
  • in suites: sarge, woody
  • size: 76 kB
  • ctags: 4
  • sloc: makefile: 75; sh: 18
file content (16 lines) | stat: -rw-r--r-- 320 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/sh
set -e

#DEBHELPER#

case "$1" in
       purge)
                echo -n "Removing diffmon cache... "
                echo -n "/var/cache/diffmon"
                rm -rf /var/cache/diffmon
		echo -n ", config file directory"
		rmdir --ignore-fail-on-non-empty /etc/diffmon
                echo ". Done."
esac