summaryrefslogtreecommitdiff
path: root/autoscripts/postrm-systemd
blob: c8a5a328a0496494d2c82748ebf2da66bc9ef327 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
if [ "$1" = "remove" ]; then
	if [ -x "/usr/bin/deb-systemd-helper" ]; then
		deb-systemd-helper mask #UNITFILES# >/dev/null
	fi
fi

if [ "$1" = "purge" ]; then
	if [ -x "/usr/bin/deb-systemd-helper" ]; then
		export _DEB_SYSTEMD_HELPER_PURGE=1
		deb-systemd-helper disable #UNITFILES# >/dev/null
	fi
fi