tweak installer

fix issue with selinux on Fedora
This commit is contained in:
Marco Ochse
2023-07-03 16:45:40 +02:00
parent ae9a2dd2ee
commit 4dfb9a9caf
2 changed files with 10 additions and 4 deletions

View File

@ -95,9 +95,9 @@ esac
echo
# Define tag for Ansible
if [ "${myCURRENT_DISTRIBUTION}" == "Debian GNU/Linux" ];
if [ "${myCURRENT_DISTRIBUTION}" == "Debian GNU/Linux" ] || [ "${myCURRENT_DISTRIBUTION}" == "Fedora Linux" ];
then
myANSIBLE_TAG="Debian"
myANSIBLE_TAG=$(echo ${myCURRENT_DISTRIBUTION} | cut -d " " -f 1)
else
myANSIBLE_TAG=${myCURRENT_DISTRIBUTION}
fi