Unverified Commit f1d6e9bc authored by Adam Majer's avatar Adam Majer Committed by GitHub

install.sh: fix path detection for sle-micro (#4398)

transactional-update was always under /usr/sbin. Signed-off-by: 's avatarAdam Majer <amajer@suse.de>
parent 86c69241
......@@ -534,7 +534,7 @@ EOF
;;
sle)
rpm_installer="zypper --gpg-auto-import-keys"
if [ "${TRANSACTIONAL_UPDATE=false}" != "true" ] && [ -x /sbin/transactional-update ]; then
if [ "${TRANSACTIONAL_UPDATE=false}" != "true" ] && [ -x /usr/sbin/transactional-update ]; then
rpm_installer="transactional-update --no-selfupdate -d run ${rpm_installer}"
: "${INSTALL_K3S_SKIP_START:=true}"
: "${INSTALL_K3S_SELINUX_WARN:=true}"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment