aboutsummaryrefslogtreecommitdiff
path: root/debian/gnunet.postrm
blob: 2c38872028b000859ea156de5741c16ed609c824 (plain) (blame)
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
#!/bin/sh

set -e

pathfind() {
	OLDIFS="$IFS"
	IFS=:
	for p in $PATH; do
		if [ -x "$p/$*" ]; then
			IFS="$OLDIFS"
			return 0
		fi
	done
	IFS="$OLDIFS"
	return 1
}

remove_gns() {
	# abort if /etc/nsswitch.conf does not exist
	if ! [ -e /etc/nsswitch.conf ]; then
		return
	fi
	perl -i -pe '
		my @remove=(
			"gns [NOTFOUND=return]",
		);
		sub remove {
			my $s=shift;
			foreach my $bit (@remove) {
				$s=~s/\s+\Q$bit\E//g;
			}
			return $s;
		}
		s/^(hosts:)(.*)/$1.remove($2)/e;
	' /etc/nsswitch.conf
}


case "${1}" in
	purge)
		if [ -e /usr/share/debconf/confmodule ]
		then
			. /usr/share/debconf/confmodule
			db_version 2.0

			db_get gnunet-systempeer/username
			_USERNAME="${RET:-gnunet}"

			db_get gnunet-systempeer/groupname
			_GROUPNAME="${RET:-gnunet}"

			db_get gnunet-dns/libnsswitch
			_LIBNSSWITCH="${RET}"
		else
			_USERNAME="gnunet"
			_GROUPNAME="gnunet"
		fi

		GNUNETDNS_GROUP="gnunetdns"

		if $_LIBNSSWITCH
		then
			rm -rf /usr/lib/x86_64-linux-gnu/usr/libnss_gns.so.2
			rm -rf /usr/lib/x86_64-linux-gnu/usr/libnss_gns4.so.2
			rm -rf /usr/lib/x86_64-linux-gnu/usr/libnss_gns6.so.2
			remove_gns
		fi

		if pathfind deluser
		then
			deluser --quiet --system ${_USERNAME} || true
		fi

		if pathfind delgroup
		then
			delgroup --quiet --system --only-if-empty ${_GROUPNAME} || true
			delgroup --quiet --system --only-if-empty ${GNUNETDNS_GROUP} || true
		fi

		rm -rf /var/log/gnunet.log /var/lib/gnunet /etc/default/gnunet
		;;

	remove|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear)

		if $_LIBNSSWITCH
		then
			rm -rf /usr/lib/x86_64-linux-gnu/usr/libnss_gns.so.2
			rm -rf /usr/lib/x86_64-linux-gnu/usr/libnss_gns4.so.2
			rm -rf /usr/lib/x86_64-linux-gnu/usr/libnss_gns6.so.2
			remove_gns
		fi

		;;

	*)
		echo "postrm called with unknown argument \`${1}'" >&2
		exit 1
		;;
esac

#DEBHELPER#

exit 0