summaryrefslogtreecommitdiff
path: root/autoscripts/postinst-init-tmpfiles
diff options
context:
space:
mode:
authorMichael Stapelberg <stapelberg@debian.org>2013-03-21 00:37:47 +0100
committerJoey Hess <joey@kitenet.net>2013-03-20 20:03:30 -0400
commit296d1304d0efac6c22dcd11d96fa127f55050c12 (patch)
treef824c3c32958233117ce0b88b67c2e22b47b12c5 /autoscripts/postinst-init-tmpfiles
parent2cef6101c02593ca5a948a286313e93b1142cf53 (diff)
systemd: update check to look for /run/systemd/system
The old check (for /sys/fs/cgroup/systemd) is a false-positive on systems which use standalone logind, but not systemd. The new one is recommended and used by upstream systemd in their sd_booted() implementation, see http://cgit.freedesktop.org/systemd/systemd/tree/src/libsystemd-daemon/sd-daemon.c#n518
Diffstat (limited to 'autoscripts/postinst-init-tmpfiles')
-rw-r--r--autoscripts/postinst-init-tmpfiles2
1 files changed, 1 insertions, 1 deletions
diff --git a/autoscripts/postinst-init-tmpfiles b/autoscripts/postinst-init-tmpfiles
index 41f738a9..e6cb7853 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 /sys/fs/cgroup/systemd ] ; then
+if [ -d /run/systemd/system ] ; then
systemd-tmpfiles --create >/dev/null || true
fi