File: icecc.postrm

package info (click to toggle)
icecc 1.3.1-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 1,444 kB
  • sloc: cpp: 13,720; sh: 2,949; ansic: 767; xml: 744; makefile: 233; asm: 2
file content (44 lines) | stat: -rw-r--r-- 835 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
#!/bin/sh
# postrm script for icecc

set -e

# configure some variables
ICECC_GROUP=icecc
ICECC_USER=icecc

case "$1" in
	purge)
		if [ -x "$(command -v deluser)" ]; then
			deluser --quiet --system $ICECC_USER > /dev/null || true
		else
			echo "deluser command was not found." >&2
			echo "$ICECC_USER user not deleted." >&2
		fi

		if [ -x "$(command -v delgroup)" ]; then
			delgroup --quiet --system $ICECC_GROUP > /dev/null || true
		else
			echo "delgroup command was not found." >&2
			echo "$ICECC_GROUP group not deleted." >&2
		fi

		rm -rf /var/cache/icecc
		;;
	remove)
		;;
	upgrade|failed-upgrade|abort-install|abort-upgrade|disappear)
		;;
	*)
		echo "postrm called with unknown argument \`$1'" >&2
		exit 1
		;;
esac

if [ "$1" = "purge" ] ; then
	update-rc.d icecc-scheduler remove >/dev/null
fi

#DEBHELPER#

exit 0