From 296d1304d0efac6c22dcd11d96fa127f55050c12 Mon Sep 17 00:00:00 2001 From: Michael Stapelberg Date: Thu, 21 Mar 2013 00:37:47 +0100 Subject: 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 --- autoscripts/postrm-init | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'autoscripts/postrm-init') diff --git a/autoscripts/postrm-init b/autoscripts/postrm-init index 61dcfc53..6f5bb09a 100644 --- a/autoscripts/postrm-init +++ b/autoscripts/postrm-init @@ -5,6 +5,6 @@ fi # In case this system is running systemd, we make systemd reload the unit files # to pick up changes. -if [ -d /sys/fs/cgroup/systemd ] ; then +if [ -d /run/systemd/system ] ; then systemctl --system daemon-reload >/dev/null || true fi -- cgit v1.2.3