From aab69357074162bd953ea06f41148206950c8969 Mon Sep 17 00:00:00 2001 From: Adam Williamson Date: Fri, 18 Sep 2020 13:43:28 -0700 Subject: [PATCH] FreeIPA replica: don't re-do setup_tap_static after deployment ipa-replica-install already changes the DNS config to use the local bind instance, we don't need to do this and it's actually wrong (as it bypasses the local BIND we should use and uses the VM host's DNS servers instead). Signed-off-by: Adam Williamson --- tests/realmd_join_sssd.pm | 5 ----- 1 file changed, 5 deletions(-) diff --git a/tests/realmd_join_sssd.pm b/tests/realmd_join_sssd.pm index 4fe9743a..25ebd5f3 100644 --- a/tests/realmd_join_sssd.pm +++ b/tests/realmd_join_sssd.pm @@ -66,11 +66,6 @@ sub run { } assert_script_run "ipa-replica-install $args", 1500; - # don't use the other server for our DNS lookups any more, as we - # should be independent of it - my ($ip, $hostname) = split(/ /, get_var("POST_STATIC")); - setup_tap_static($ip, $hostname); - # enable and start the systemd service assert_script_run "systemctl enable ipa.service"; assert_script_run "systemctl start ipa.service", 300;