blob: 8ac28fb326bc49973d9d8e35187f0c1ce67405fc (
plain)
1
2
3
4
5
6
7
8
|
if [ "$1" = "configure" ] || [ "$1" = "abort-upgrade" ] || [ "$1" = "abort-deconfigure" ] || [ "$1" = "abort-remove" ] ; then
if [ -d /run/systemd/system ]; then
systemctl --system daemon-reload >/dev/null || true
if [ -n "$2" ]; then
deb-systemd-invoke try-restart #UNITFILES# >/dev/null || true
fi
fi
fi
|