File: libhtml-mason-perl.postrm

package info (click to toggle)
libhtml-mason-perl 1%3A1.58-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 1,796 kB
  • sloc: perl: 8,618; sh: 49; makefile: 2
file content (16 lines) | stat: -rw-r--r-- 167 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/sh

set -e

case "$1" in
purge)
	# Remove mason data directory
	rm -rf /var/cache/mason
	# and old symlink
	rm -f /var/lib/mason
;;
esac

##DEBHELPER##

exit 0