mirror of https://github.com/k3s-io/k3s
install.sh: fix path detection for sle-micro (#4398)
transactional-update was always under /usr/sbin. Signed-off-by: Adam Majer <amajer@suse.de>pull/4403/head
parent
86c6924119
commit
f1d6e9bc4b
|
@ -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}"
|
||||
|
|
Loading…
Reference in New Issue