From 32726615cde7ebfe6b5b72a152b35202409526b1 Mon Sep 17 00:00:00 2001 From: Michael Stapelberg Date: Sat, 4 May 2013 18:49:28 +0200 Subject: dh_installinit: call systemd-tmpfiles with the config file names This makes the invocation more specific and thus less likely to have any unwanted side effects. The invocation before was: systemd-tmpfiles --create >/dev/null || true With this commit, it becomes: systemd-tmpfiles --create bacula.conf >/dev/null || true (for bacula-fd shipping /etc/tmpfiles.d/bacula.conf) --- autoscripts/postinst-init-tmpfiles | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'autoscripts') diff --git a/autoscripts/postinst-init-tmpfiles b/autoscripts/postinst-init-tmpfiles index e6cb7853..fd613bcd 100644 --- a/autoscripts/postinst-init-tmpfiles +++ b/autoscripts/postinst-init-tmpfiles @@ -1,5 +1,5 @@ # In case this system is running systemd, we need to ensure that all # necessary tmpfiles (if any) are created before starting. if [ -d /run/systemd/system ] ; then - systemd-tmpfiles --create >/dev/null || true + systemd-tmpfiles --create #TMPFILES# >/dev/null || true fi -- cgit v1.2.3