summaryrefslogtreecommitdiff
path: root/autoscripts/postrm-systemd
blob: 4e7c74d285ef493547fc2f9ce54688cf781ccbb2 (plain)
1
2
3
4
5
6
7
8
9
10
11
if [ "$1" = "remove" ] || [ "$1" = "purge" ]; then
	if [ -x "/usr/bin/deb-systemd-helper" ]; then
		if [ "$1" = "purge" ]; then
			export _DEB_SYSTEMD_HELPER_PURGE=1
		else
			# To explicitly clean the environment.
			export _DEB_SYSTEMD_HELPER_PURGE=0
		fi
		deb-systemd-helper disable #UNITFILES# >/dev/null
	fi
fi