diff options
| author | Marco Rodolfi <marco.rodolfi@tuta.io> | 2023-08-28 12:32:02 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-08-28 12:32:02 +0200 |
| commit | 8b18260b2719bf0416348019cf062d5a331144d1 (patch) | |
| tree | 1ec4e691893317839184efa8d82f12b95a3062e3 | |
| parent | 16ca9facb37ac4dedf3ae6e6b7502f6733e73df6 (diff) | |
| download | decky-installer-8b18260b2719bf0416348019cf062d5a331144d1.tar.gz decky-installer-8b18260b2719bf0416348019cf062d5a331144d1.zip | |
Fix SELinux on GUI installer
| -rw-r--r-- | gui/user_install_script.sh | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gui/user_install_script.sh b/gui/user_install_script.sh index 624fa06..92c9b9e 100644 --- a/gui/user_install_script.sh +++ b/gui/user_install_script.sh @@ -144,6 +144,10 @@ echo "45" ; echo "# Installing version $VERSION" ; # make another zenity prompt while downloading the PluginLoader file, I do not know how this works curl -L $DOWNLOADURL -o ${HOMEBREW_FOLDER}/services/PluginLoader 2>&1 | stdbuf -oL tr '\r' '\n' | sed -u 's/^ *\([0-9][0-9]*\).*\( [0-9].*$\)/\1\n#Download Speed\:\2/' | zen_nospam --progress --title "Downloading Decky" --text="Download Speed: 0" --width=300 --height=100 --auto-close --no-cancel chmod +x ${HOMEBREW_FOLDER}/services/PluginLoader + +echo "Check for SELinux presence and if it is present, set the correct permission on the binary file..." +hash getenforce 2>/dev/null && getenforce | grep "Enforcing" >/dev/null && chcon -t bin_t ${HOMEBREW_FOLDER}/services/PluginLoader + echo $VERSION > ${HOMEBREW_FOLDER}/services/.loader.version echo "70" ; echo "# Kiling plugin_loader if it exists" ; |
