Displaying 1 result from an estimated 1 matches for "prompt_for_password".
2009 May 15
1
[PATCH server] add server-side groundwork for remote freeipa server
...t_host
+end
+
+# FreeIPA Configuration
+realm_name = prompt_for_answer("Enter your kerberos realm name (example: example.com):", :regex => FQDN)
+ at cli.say("NOTE: The following password will also be your ovirtadmin password for the web management login")
+freeipa_password = prompt_for_password("Enter the admin password for FreeIPA:", "Confirm your FreeIPA admin password:")
+ldap_dn = ""
+ldap_dn_temp = realm_name.split(".")
+ldap_dn_temp.each do |i|
+ ldap_dn += "dc=#{i},"
+ end
+ ldap_dn = ldap_dn.chop
+
# DNS Configuration...