This commit is contained in:
deathbybandaid 2022-03-08 09:07:20 -05:00
parent a9489ef2df
commit f309d42259

View File

@ -18,20 +18,22 @@ else
fi fi
## FreeIPA Realm Join ## FreeIPA Realm Join
if (whiptail --title "FreeIPA Relam Join" --yes-button "yes" --no-button "no" --yesno "Do You want to join a FreeIPA Realm?" 10 80) if [ "$realm_join" == 1 ]; then
then if (whiptail --title "FreeIPA Relam Join" --yes-button "yes" --no-button "no" --yesno "Do You want to join a FreeIPA Realm?" 10 80)
then
if [[ $HOSTNAME == *template* ]]; then if [[ $HOSTNAME == *template* ]]; then
echo "Hostname $HOSTNAME contains the word 'template', skipping realm joining" echo "Hostname $HOSTNAME contains the word 'template', skipping realm joining"
realm_join=0 realm_join=0
fi fi
if [ "$realm_join" == 1 ]; then if [ "$realm_join" == 1 ]; then
echo "Setting up ipa-client to join FreeIPA Server Realm" echo "Setting up ipa-client to join FreeIPA Server Realm"
freeipa_admin=$(whiptail --passwordbox "Please enter the user authorized to join FreeIPA realm: $freeipa_admin" 8 78 --title "FreeIPA Admin User Prompt" 3>&1 1>&2 2>&3) freeipa_admin=$(whiptail --passwordbox "Please enter the user authorized to join FreeIPA realm: $freeipa_admin" 8 78 --title "FreeIPA Admin User Prompt" 3>&1 1>&2 2>&3)
freeipa_password=$(whiptail --passwordbox "Please enter the password for the FreeIPA admin user: $freeipa_admin" 8 78 --title "FreeIPA Password Prompt" 3>&1 1>&2 2>&3) freeipa_password=$(whiptail --passwordbox "Please enter the password for the FreeIPA admin user: $freeipa_admin" 8 78 --title "FreeIPA Password Prompt" 3>&1 1>&2 2>&3)
ipa-client-install --mkhomedir --no-ntp --principal="$freeipa_admin" --password="$freeipa_password" --enable-dns-updates --unattended ipa-client-install --mkhomedir --no-ntp --principal="$freeipa_admin" --password="$freeipa_password" --enable-dns-updates --unattended
fi
else
echo "Skipping realm joining"
fi fi
else
echo "Skipping realm joining"
fi fi