Commit 429e9d49 authored by Darren Shepherd's avatar Darren Shepherd

Don't require selinux utils and require k3s_selinux

If you are installing k3s on a selinux enforcing system then we required that you also install k3s_selinux RPM to put in the proper policy.
parent 9a1f9a8a
...@@ -276,15 +276,6 @@ verify_downloader() { ...@@ -276,15 +276,6 @@ verify_downloader() {
return 0 return 0
} }
# --- verify existence of semanage when SELinux is enabled ---
verify_semanage() {
if [ -x "$(which getenforce)" ]; then
if [ "Disabled" != $(getenforce) ] && [ ! -x "$(which semanage)" ]; then
fatal 'SELinux is enabled but semanage is not found'
fi
fi
}
# --- create tempory directory and cleanup when done --- # --- create tempory directory and cleanup when done ---
setup_tmp() { setup_tmp() {
TMP_DIR=$(mktemp -d -t k3s-install.XXXXXXXXXX) TMP_DIR=$(mktemp -d -t k3s-install.XXXXXXXXXX)
...@@ -396,13 +387,9 @@ setup_binary() { ...@@ -396,13 +387,9 @@ setup_binary() {
$SUDO chown root:root ${TMP_BIN} $SUDO chown root:root ${TMP_BIN}
$SUDO mv -f ${TMP_BIN} ${BIN_DIR}/k3s $SUDO mv -f ${TMP_BIN} ${BIN_DIR}/k3s
if command -v getenforce > /dev/null 2>&1; then if ! $SUDO chcon -u system_u -r object_r -t container_runtime_exec_t ${BIN_DIR}/k3s 2>/dev/null 2>&1; then
if [ "Disabled" != $(getenforce) ]; then if $SUDO grep SELINUX=enforcing /etc/selinux/config >/dev/null 2>&1; then
info 'SELinux is enabled, setting permissions' fatal "Failed to apply container_runtime_exec_t to ${BIN_DIR}/k3s, please install k3s_selinux RPM"
if ! $SUDO semanage fcontext -l | grep "${BIN_DIR}/k3s" > /dev/null 2>&1; then
$SUDO semanage fcontext -a -t bin_t "${BIN_DIR}/k3s"
fi
$SUDO restorecon -v ${BIN_DIR}/k3s > /dev/null
fi fi
fi fi
} }
...@@ -417,7 +404,6 @@ download_and_verify() { ...@@ -417,7 +404,6 @@ download_and_verify() {
setup_verify_arch setup_verify_arch
verify_downloader curl || verify_downloader wget || fatal 'Can not find curl or wget for downloading files' verify_downloader curl || verify_downloader wget || fatal 'Can not find curl or wget for downloading files'
verify_semanage
setup_tmp setup_tmp
get_release_version get_release_version
download_hash download_hash
......
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