search for: freeipa_password

Displaying 4 results from an estimated 4 matches for "freeipa_password".

2009 May 15
1
[PATCH server] add server-side groundwork for remote freeipa server
...ipa_host = ovirt_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 +...
2009 Aug 21
1
[PATCH server] update installer exec items to single_exec where applicable
...=> Single_exec[replace_line_returns] } file_replacement{"ipa_proxy_config_2": @@ -61,7 +61,7 @@ class freeipa::bundled{ single_exec {"ipa_server_install": command => "/usr/sbin/ipa-server-install -r $realm_name -p '$freeipa_password' -P '$freeipa_password' -a '$freeipa_password' --hostname $ipa_host -u dirsrv -U", - require => [Exec[set_kdc_defaults],Single_exec[dnsmasq_restart]] + require => [Single_exec[set_kdc_defaults],Single_exec[dnsmasq_restart]] }...
2009 Jun 15
1
[PATCH][ovirt-server] restart ipa after installation and before set admin password
...ec[dnsmasq_restart]] } + exec {"restart_ipa": + command => "/usr/sbin/ipactl restart", + require => Single_Exec[ipa_server_install] + } + exec {"get_krb5_tkt": command => "/bin/echo $freeipa_password|/usr/kerberos/bin/kinit admin", require => Single_Exec[ipa_server_install] -- 1.6.0.6
2009 Jul 02
2
How to install ovirt in working environment?
...configuration $cobbler_hostname = 'station.example.ru' $cobbler_user_name = 'cobbler' $cobbler_user_password = 'cobbler' # Postgres Configuration $db_username = 'ovirt' $db_password = 'ovirtadmin' # FreeIPA configuration $realm_name = 'example.ru' $freeipa_password = 'secret' $short_ldap_dn = 'dc=example,dc=ru' $ldap_dn = 'cn=ipaConfig,cn=etc,dc=example,dc=ru' include cobbler::remote include postgres::bundled include freeipa::bundled include ovirt::setup I ran it with ace -d -v install ovirt | tee ovirt-inst-log And stopped it when...