idm/tests/sanity/runtest.sh
Rafael Guterres Jeffman 3203e4dcd0 Use primary DNS hostname for testing IPA deployment.
Signed-off-by: Rafael Guterres Jeffman <rjeffman@redhat.com>
2024-11-14 19:14:14 -03:00

18 lines
484 B
Bash

#!/bin/sh -eux
dnshost="$(hostname)"
if command -v dig >/dev/null
then
hostip="$(dig +short $(hostname))"
if [ -n "${hostip}" ]
then
dnshost="$(dig +short -x "${hostip}" | sed "s/\(.*\)\./\1/")"
fi
fi
systemctl unmask gssproxy
ipa-server-install --hostname=${dnshost} -r EXAMPLE.TEST -n example.test --setup-dns --no-forwarders --allow-zone-overlap -p Secret123 -a Secret123 -U
echo Secret123 | kinit admin
ipa config-show
ipa-server-install --uninstall -U