call systemctl in subshell to prevent the explorer from failing if it exits non zero
Signed-off-by: Steven Armstrong <steven@icarus.ethz.ch>
This commit is contained in:
parent
48e2468c56
commit
127c512f84
1 changed files with 4 additions and 9 deletions
|
@ -28,14 +28,9 @@ name="$__object_id"
|
|||
|
||||
case "$os" in
|
||||
archlinux)
|
||||
# convert bash array to shell
|
||||
systemctl is-enabled "$name" >/dev/null 2>&1; ret=$?
|
||||
|
||||
if [ "$ret" = 0 ]; then
|
||||
state="present"
|
||||
else
|
||||
state="absent"
|
||||
fi
|
||||
state=$(systemctl is-enabled "$name" >/dev/null 2>&1 \
|
||||
&& echo present \
|
||||
|| echo absent)
|
||||
;;
|
||||
|
||||
debian|ubuntu|openwrt)
|
||||
|
|
Loading…
Reference in a new issue