diff options
-rwxr-xr-x | add-service | 4 | ||||
-rwxr-xr-x | del-service | 4 | ||||
-rwxr-xr-x | reread-services | 2 |
3 files changed, 5 insertions, 5 deletions
diff --git a/add-service b/add-service index d04b4e5..571a54c 100755 --- a/add-service +++ b/add-service @@ -1,6 +1,6 @@ #!/bin/bash #--------------------------------------------------------------- -# Project : Mandriva Linux +# Project : Mageia Linux # Module : rpm-helper # File : add-service # Version : $Id$ @@ -23,7 +23,7 @@ if [ $# -lt 3 ]; then fi # What init system are we currently using? -if /bin/mountpoint -q /sys/fs/cgroup/systemd; then +if [ -d /run/systemd/system/ ]; then init=systemd else init=sysvinit diff --git a/del-service b/del-service index 55c26bf..ac1f7e7 100755 --- a/del-service +++ b/del-service @@ -1,6 +1,6 @@ #!/bin/sh #--------------------------------------------------------------- -# Project : Mandriva Linux +# Project : Mageia Linux # Module : rpm-helper # File : del-service # Version : $Id$ @@ -23,7 +23,7 @@ if [ $# -lt 3 ]; then fi # What init system are we currently using? -if /bin/mountpoint -q /sys/fs/cgroup/systemd; then +if [ -d /run/systemd/system/ ]; then init=systemd else init=sysvinit diff --git a/reread-services b/reread-services index 73092d6..635c9ff 100755 --- a/reread-services +++ b/reread-services @@ -16,7 +16,7 @@ if [ $# -lt 1 ]; then fi # What init system are we currently using? -if /bin/mountpoint -q /sys/fs/cgroup/systemd; then +if [ -d /run/systemd/system/ ]; then init=systemd else init=sysvinit |