guix-install.sh: Fix ‘systemctl not found’ error message at probe.
* etc/guix-install.sh (chk_init_sys): Redirect systemctl errors to /dev/null. Signed-off-by: Tobias Geerinckx-Rice <me@tobias.gr>master
parent
39939e30cf
commit
dc1aede30a
|
@ -142,7 +142,7 @@ chk_init_sys()
|
||||||
_msg "${INF}init system is: upstart"
|
_msg "${INF}init system is: upstart"
|
||||||
INIT_SYS="upstart"
|
INIT_SYS="upstart"
|
||||||
return 0
|
return 0
|
||||||
elif [[ $(systemctl) =~ -\.mount ]]; then
|
elif [[ $(systemctl 2>/dev/null) =~ -\.mount ]]; then
|
||||||
_msg "${INF}init system is: systemd"
|
_msg "${INF}init system is: systemd"
|
||||||
INIT_SYS="systemd"
|
INIT_SYS="systemd"
|
||||||
return 0
|
return 0
|
||||||
|
|
Reference in New Issue