From c549887e9a50017f55a94da683f2c1c7d68d91e8 Mon Sep 17 00:00:00 2001 From: Petr Lautrbach Date: Wed, 1 Sep 2010 12:34:58 +0200 Subject: [PATCH] fix detection of systemd with new cgroup location --- rc.d/init.d/functions | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/rc.d/init.d/functions b/rc.d/init.d/functions index b2f8c95..fadfb8e 100644 --- a/rc.d/init.d/functions +++ b/rc.d/init.d/functions @@ -13,7 +13,8 @@ umask 022 PATH="/sbin:/usr/sbin:/bin:/usr/bin" export PATH -if [ $PPID -ne 1 -a -z "$SYSTEMCTL_SKIP_REDIRECT" ] && /bin/mountpoint -q /cgroup/systemd ; then +if [ $PPID -ne 1 -a -z "$SYSTEMCTL_SKIP_REDIRECT" ] && \ + /bin/mountpoint -q /cgroup/systemd || /bin/mountpoint -q /sys/fs/cgroup/systemd ; then case "$0" in /etc/init.d/*|/etc/rc.d/init.d/*) _use_systemctl=1 -- 1.7.1