summaryrefslogtreecommitdiff
path: root/autoscripts/postinst-init-restart
diff options
context:
space:
mode:
authorMichael Stapelberg <stapelberg@debian.org>2012-07-29 19:46:53 +0200
committerJoey Hess <joey@kitenet.net>2012-10-15 14:07:50 -0400
commita0a7bb3433cba64677cf25c469d626552da9f356 (patch)
tree0ee3cc686ea9b34f8b84a9ea29426063adb26ec4 /autoscripts/postinst-init-restart
parentd5c2fb4cf3d9be4bb991a8dc918fd2c6a48fe374 (diff)
Support systemd in dh_installinit and postinst/postrm
Diffstat (limited to 'autoscripts/postinst-init-restart')
-rw-r--r--autoscripts/postinst-init-restart6
1 files changed, 6 insertions, 0 deletions
diff --git a/autoscripts/postinst-init-restart b/autoscripts/postinst-init-restart
index 35bba207..862f9cc3 100644
--- a/autoscripts/postinst-init-restart
+++ b/autoscripts/postinst-init-restart
@@ -1,4 +1,10 @@
if [ -x "/etc/init.d/#SCRIPT#" ]; then
+ # In case this system is running systemd, we need to ensure that all
+ # necessary tmpfiles (if any) are created before starting.
+ if [ -d /sys/fs/cgroup/systemd ] ; then
+ systemd-tmpfiles --create >/dev/null || true
+ fi
+
update-rc.d #SCRIPT# #INITPARMS# >/dev/null
if [ -n "$2" ]; then
_dh_action=restart