summaryrefslogtreecommitdiff
path: root/autoscripts/postinst-systemd-start
diff options
context:
space:
mode:
Diffstat (limited to 'autoscripts/postinst-systemd-start')
-rw-r--r--autoscripts/postinst-systemd-start6
1 files changed, 6 insertions, 0 deletions
diff --git a/autoscripts/postinst-systemd-start b/autoscripts/postinst-systemd-start
new file mode 100644
index 00000000..9072c534
--- /dev/null
+++ b/autoscripts/postinst-systemd-start
@@ -0,0 +1,6 @@
+if [ "$1" = "configure" ] || [ "$1" = "abort-upgrade" ] || [ "$1" = "abort-deconfigure" ] || [ "$1" = "abort-remove" ] ; then
+ if [ -z "${DPKG_ROOT:-}" ] && [ -d /run/systemd/system ]; then
+ systemctl --system daemon-reload >/dev/null || true
+ deb-systemd-invoke start #UNITFILES# >/dev/null || true
+ fi
+fi