diff options
author | Bill Nottingham <notting@redhat.com> | 2010-09-03 17:29:35 -0400 |
---|---|---|
committer | Bill Nottingham <notting@redhat.com> | 2010-09-03 17:29:35 -0400 |
commit | 7a94dcb58575955a458645beeef424fc3d57f1dc (patch) | |
tree | 7ecb062c1605ecc35c153b4f28ac1c3f025d4c0d | |
parent | c4c67d00be0b90d371bbe30e80be53ca980e8488 (diff) | |
download | initscripts-7a94dcb58575955a458645beeef424fc3d57f1dc.tar initscripts-7a94dcb58575955a458645beeef424fc3d57f1dc.tar.gz initscripts-7a94dcb58575955a458645beeef424fc3d57f1dc.tar.bz2 initscripts-7a94dcb58575955a458645beeef424fc3d57f1dc.tar.xz initscripts-7a94dcb58575955a458645beeef424fc3d57f1dc.zip |
Properly group tests.initscripts-9.18-1
-rw-r--r-- | rc.d/init.d/functions | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rc.d/init.d/functions b/rc.d/init.d/functions index fadfb8e7..3fedd87b 100644 --- a/rc.d/init.d/functions +++ b/rc.d/init.d/functions @@ -14,7 +14,7 @@ PATH="/sbin:/usr/sbin:/bin:/usr/bin" export PATH if [ $PPID -ne 1 -a -z "$SYSTEMCTL_SKIP_REDIRECT" ] && \ - /bin/mountpoint -q /cgroup/systemd || /bin/mountpoint -q /sys/fs/cgroup/systemd ; then + ( /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 |