summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVincent Legoll <vincent.legoll@gmail.com>2020-04-13 18:07:38 +0200
committerGuix Patches Tester <>2020-04-14 19:16:29 +0100
commitd890442de50b972d8df32e9c4da8ea7bf833a671 (patch)
tree543208ecc7b4ea931a0c2b77a41105ff0aed890d
parent7a6283cf4b5175e4d48662c5acd3ced823e81a7a (diff)
downloadpatches-d890442de50b972d8df32e9c4da8ea7bf833a671.tar
patches-d890442de50b972d8df32e9c4da8ea7bf833a671.tar.gz
guix-install.sh: Fix systemctl not found error message at probe.
* etc/guix-install.sh (chk_init_sys)[systemctl]: Redirect errors to /dev/null.
-rwxr-xr-xetc/guix-install.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/etc/guix-install.sh b/etc/guix-install.sh
index dbc038a0ab..4fa9664cf5 100755
--- a/etc/guix-install.sh
+++ b/etc/guix-install.sh
@@ -142,7 +142,7 @@ chk_init_sys()
_msg "${INF}init system is: upstart"
INIT_SYS="upstart"
return 0
- elif [[ $(systemctl) =~ -\.mount ]]; then
+ elif [[ $(systemctl 2>/dev/null) =~ -\.mount ]]; then
_msg "${INF}init system is: systemd"
INIT_SYS="systemd"
return 0