summaryrefslogtreecommitdiffstats
path: root/admin/Sources/Clients/ogagent/linux/debian/ogagent.postrm.debhelper
blob: 3167f1f8b4fc483f7a49cf9d1c957e24ff6667fe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# Automatically added by dh_installinit
if [ "$1" = "purge" ] ; then
	update-rc.d ogagent remove >/dev/null
fi


# In case this system is running systemd, we make systemd reload the unit files
# to pick up changes.
if [ -d /run/systemd/system ] ; then
	systemctl --system daemon-reload >/dev/null || true
fi
# End automatically added section