summaryrefslogtreecommitdiffstats
path: root/perl-install
diff options
context:
space:
mode:
Diffstat (limited to 'perl-install')
-rw-r--r--perl-install/NEWS1
-rw-r--r--perl-install/services.pm2
2 files changed, 2 insertions, 1 deletions
diff --git a/perl-install/NEWS b/perl-install/NEWS
index 3bcfe329d..37d065d9b 100644
--- a/perl-install/NEWS
+++ b/perl-install/NEWS
@@ -1,3 +1,4 @@
+- fix services::running_systemd()
- service_harddrake: recognise noxconf boot command line option
(disables creation of xorg.conf, allowing X server to configure itself)
- cache results from detect_devices::getInputDevices()
diff --git a/perl-install/services.pm b/perl-install/services.pm
index f76b29b86..29593c9b2 100644
--- a/perl-install/services.pm
+++ b/perl-install/services.pm
@@ -342,7 +342,7 @@ sub doit {
}
sub running_systemd() {
- run_program::rooted($::prefix, '/bin/mountpoint', '-q', '/sys/fs/cgroup/systemd');
+ -d '/run/systemd/system';
}
sub has_systemd() {