File: postrm

package info (click to toggle)
chasquid 1.11-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 2,036 kB
  • sloc: sh: 1,260; python: 338; makefile: 73
file content (14 lines) | stat: -rw-r--r-- 210 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/sh
# postrm script for chasquid
# Script executed after the package is removed.

set -e

case "$1" in
  purge)
        rm -rf /var/lib/chasquid
	# We do NOT remove the system user.
	;;
esac

#DEBHELPER#