Displaying 1 result from an estimated 1 matches for "dhcp_domain".
Did you mean:
  dc_domain
  
2009 May 29
0
[PATCH server] last patch to implement remote freeipa
...guest_dev]
@@ -235,7 +245,11 @@ if dhcp_setup == "n"
     dhcp_start = prompt_for_answer("Enter the dhcp pool start address (example: 3):", :regex => OCTET)
     dhcp_stop = prompt_for_answer("Enter the dhcp pool end addess (example: 100):", :regex => OCTET)
     dhcp_domain = prompt_for_answer("Enter the dhcp domain you wish to use (example: example.com):", :default => dnsdomainname.chomp, :regex => IP_OR_FQDN)
-    admin_dns_server = interfaces[admin_dev]
+    if dns_servers == "y"
+        admin_dns_server = ns_list[0]
+    else
+        ad...