From dc1aede30a63d60708ca98e92724dc14a262b0ec Mon Sep 17 00:00:00 2001 From: Vincent Legoll Date: Sun, 17 May 2020 19:17:00 +0200 Subject: =?UTF-8?q?guix-install.sh:=20Fix=20=E2=80=98systemctl=20not=20fou?= =?UTF-8?q?nd=E2=80=99=20error=20message=20at=20probe.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * etc/guix-install.sh (chk_init_sys): Redirect systemctl errors to /dev/null. Signed-off-by: Tobias Geerinckx-Rice --- etc/guix-install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/etc/guix-install.sh b/etc/guix-install.sh index 4d457e7f2d..bf15aede21 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 -- cgit v1.2.3