blob: d24dea26b11e6a0da7e51b729574a4e26f9911ba (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
if [ "$1" = "configure" ] || [ "$1" = "abort-upgrade" ] || [ "$1" = "abort-deconfigure" ] || [ "$1" = "abort-remove" ] ; then
if [ -z "${DPKG_ROOT:-}" ] && [ -d /run/systemd/system ]; then
# Here we reload synchronously, as we really need to block in
# order to ensure the following restart also works. Furthermore,
# if there is no D-Bus user session, the restart won't work either,
# so there's no point if falling back to signals - so either both
# of these operations work, or both fail.
deb-systemd-invoke --user daemon-reload >/dev/null || true
deb-systemd-invoke --user restart #UNITFILES# >/dev/null || true
fi
fi
|