blob: 6f5bb09a8ed7e21cf54e1b729c3e5d3b73bbef68 (
plain)
1
2
3
4
5
6
7
8
9
10
|
if [ "$1" = "purge" ] ; then
update-rc.d #SCRIPT# 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
|