[fix] PATH with no sbin dir

This commit is contained in:
ljf (zamentur) 2021-07-07 00:29:40 +02:00 committed by Alexandre Aubin
parent dea5a9a2fc
commit a3984321dd

4
buster
View file

@ -228,9 +228,13 @@ function check_assertions()
fi
fi
# Assert we're root
[[ "$(id -u)" == "0" ]] || die "This script must be run as root. On most setups, the command 'sudo -i' can be run first to become root."
# Assert we're root
[[ "$PATH" == *"/sbin"* ]] || die "Your environment PATH variable must contains /sbin directory."
# Assert systemd is installed
command -v systemctl > /dev/null || die "YunoHost requires systemd to be installed."