summaryrefslogtreecommitdiff
path: root/autoscripts/postinst-init-nostart
diff options
context:
space:
mode:
Diffstat (limited to 'autoscripts/postinst-init-nostart')
-rw-r--r--autoscripts/postinst-init-nostart6
1 files changed, 6 insertions, 0 deletions
diff --git a/autoscripts/postinst-init-nostart b/autoscripts/postinst-init-nostart
index 7a1bd5e8..ec6bdbd6 100644
--- a/autoscripts/postinst-init-nostart
+++ b/autoscripts/postinst-init-nostart
@@ -1,3 +1,9 @@
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 || #ERROR_HANDLER#
fi