GNU bug report logs -
#40601
guix-install.sh: port to other distros & init systems
Previous Next
Full log
View this message in rfc822 format
---
etc/guix-install.sh | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/etc/guix-install.sh b/etc/guix-install.sh
index be2fd74905..45b4c4b720 100755
--- a/etc/guix-install.sh
+++ b/etc/guix-install.sh
@@ -139,23 +139,23 @@ chk_term()
chk_init_sys()
{ # Return init system type name.
- if [[ $(/sbin/init --version 2>/dev/null) =~ upstart ]]; then
+ if /sbin/init --version 2>/dev/null | grep -q upstart; then
_msg "${INF}init system is: upstart"
INIT_SYS="upstart"
return 0
- elif [[ $(systemctl 2>/dev/null) =~ -\.mount ]]; then
+ elif systemctl 2>/dev/null | grep -q -- -\.mount; then
_msg "${INF}init system is: systemd"
INIT_SYS="systemd"
return 0
- elif [[ $(rc -V 2>/dev/null) =~ OpenRC ]]; then
+ elif rc -V 2>/dev/null | grep -q OpenRC; then
_msg "${INF}init system is: openrc"
INIT_SYS="openrc"
return 0
- elif [[ -f /etc/init.d/cron && ! -h /etc/init.d/cron ]]; then
+ elif [ -f /etc/init.d/cron ] && [ ! -h /etc/init.d/cron ]; then
_msg "${INF}init system is: sysv-init"
INIT_SYS="sysv-init"
return 0
- elif [[ -d /etc/sv ]]; then
+ elif [ -d /etc/sv ]; then
_msg "${INF}init system is: runit"
INIT_SYS="runit"
return 0
--
2.26.2
This bug report was last modified 345 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.