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

if [ -d /run/systemd/system ]; then
	systemctl --system daemon-reload >/dev/null || true
fi