You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
During a tarball install the rke2 executable is run from a temporary directory that is created in the system default temp dir, usually /tmp. If /tmp is mounted with the noexec option the tarball install will fail.
The task that creates the temporary directory is here:
roles/rke2_common/tasks/tarball_install.yml
---
- name: TARBALL | Make temp dir
ansible.builtin.tempfile:
state: directory
suffix: rke2-install.XXXXXXXXXX
register: temp_dir
The text was updated successfully, but these errors were encountered:
During a tarball install the rke2 executable is run from a temporary directory that is created in the system default temp dir, usually
/tmp
. If/tmp
is mounted with thenoexec
option the tarball install will fail.The task that creates the temporary directory is here:
The text was updated successfully, but these errors were encountered: