mirror of
https://github.com/YunoHost/install_script.git
synced 2024-09-03 20:06:25 +02:00
[fix] PATH with no sbin dir
This commit is contained in:
parent
691e7e54ca
commit
cc152b0c95
1 changed files with 4 additions and 0 deletions
|
@ -228,9 +228,13 @@ function check_assertions()
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
||||||
# Assert we're root
|
# Assert we're root
|
||||||
[[ "$(id -u)" == "0" ]] || die "This script must be run as root. On most setups, typing 'sudo -i' can be used to become root."
|
[[ "$(id -u)" == "0" ]] || die "This script must be run as root. On most setups, typing 'sudo -i' can be used to become root."
|
||||||
|
|
||||||
|
# Assert we're root
|
||||||
|
[[ "$PATH" == *"/sbin"* ]] || die "Your environment PATH variable must contains /sbin directory."
|
||||||
|
|
||||||
# Assert systemd is installed
|
# Assert systemd is installed
|
||||||
command -v systemctl > /dev/null || die "YunoHost requires systemd to be installed."
|
command -v systemctl > /dev/null || die "YunoHost requires systemd to be installed."
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue