search for: ipa_host

Displaying 9 results from an estimated 9 matches for "ipa_host".

Did you mean: cpu_host
2009 May 20
1
[PATCH server] update host-browser to use ipa commands rather than kadmin
...644 --- a/installer/modules/ovirt/manifests/ovirt.pp +++ b/installer/modules/ovirt/manifests/ovirt.pp @@ -130,6 +130,11 @@ class ovirt::setup { notify => Service[qpidd] } + single_exec { "ipa_admin_keytab" : + command => "/usr/sbin/ipa-getkeytab -s $ipa_host -p admin@$realm_name -k /usr/share/ovirt-server/ipa-admin.tab", + require => Exec[get_krb5_tkt] + } + service {"httpd" : enable => true, require => Package[httpd], diff --git a/src/host-browser/host-browser.rb b/src/h...
2009 May 15
1
[PATCH server] add server-side groundwork for remote freeipa server
...to be the same -guest_dev = admin_dev +guest_dev = guest_httpd_dev #sep_networks = (guest_dev == admin_dev) ? "n" : "y" -ovirt_host = prompt_for_answer("Enter the hostname of the oVirt management server (example: management.example.com):", :regex => IP_OR_FQDN) -ipa_host = ovirt_host +ovirt_host = prompt_for_answer("Enter the hostname of the oVirt management server", :regex => IP_OR_FQDN, :default => hostname.chomp) +#remote_ipa = prompt_yes_no("Is FreeIPA already installed on another machine?") +remote_ipa = "n" +if remote_ipa =...
2009 May 27
3
[PATCH server] correctly set collectd dnsmasq entry to udp
....erb b/installer/modules/ovirt/templates/ovirt-dns.conf.erb index ae3eb48..f4ee39b 100644 --- a/installer/modules/ovirt/templates/ovirt-dns.conf.erb +++ b/installer/modules/ovirt/templates/ovirt-dns.conf.erb @@ -1,7 +1,7 @@ srv-host=_ovirt._tcp,<%= ovirt_host %>,80 srv-host=_ipa._tcp,<%= ipa_host %>,80 srv-host=_ldap._tcp,<%= ipa_host %>,389 -srv-host=_collectd._tcp,<%= ovirt_host %>,25826 +srv-host=_collectd._udp,<%= ovirt_host %>,25826 srv-host=_qpidd._tcp,<%= ovirt_host %>,5672 srv-host=_identify._tcp,<%= ovirt_host %>,12120 -- 1.6.0.6
2009 Aug 21
1
[PATCH server] update installer exec items to single_exec where applicable
...ler/modules/ovirt/manifests/freeipa.pp b/installer/modules/ovirt/manifests/freeipa.pp index e5de852..f91cd43 100644 --- a/installer/modules/ovirt/manifests/freeipa.pp +++ b/installer/modules/ovirt/manifests/freeipa.pp @@ -29,12 +29,12 @@ class freeipa::bundled{ command => "/bin/hostname $ipa_host", } - exec {"set_kdc_defaults": + single_exec {"set_kdc_defaults": command => "/bin/sed -i '/\[kdcdefaults\]/a \ kdc_ports = 88' /usr/share/ipa/kdc.conf.template", require => Package[ipa-server]...
2009 Jul 02
2
How to install ovirt in working environment?
...;setup': status => 'enabled' } firewall_rule{"ssh": destination_port => "22"} #DNS Configuration $guest_httpd_ipaddr = '195.168.1.7' $guest_ipaddr = '10.1.1.7' $admin_ipaddr = '10.1.1.7' $ovirt_host = 'station.example.ru' $ipa_host = 'station.example.ru' dns::remote{setup: guest_ipaddr=> $guest_ipaddr, admin_ipaddr=> $admin_ipaddr, guest_dev => 'eth1', admin_dev => 'eth1' } # DHCP Configuration # Cobbler configuration $cobbler_hostname = 'station.example.ru'...
2009 Sep 17
1
[PATCH server] oVirt server single network installer
...; : "y" +# different scenarios for 1 & 2 networks +seperate_networks = (guest_dev == admin_dev) ? "n" : "y" ovirt_host = prompt_for_answer("Enter the hostname of the oVirt management server (example: management.example.com):", :regex => IP_OR_FQDN) ipa_host = ovirt_host @@ -193,7 +191,6 @@ File.open('/etc/resolv.conf').each_line{ |line| otherwise select \"n\" and a dns server will be configured during the install', RED) %>") dns_servers = prompt_yes_no("Use this systems's dns servers?") -guest_httpd_ipad...
2009 May 29
0
[PATCH server] last patch to implement remote freeipa
...egex => IP_OR_FQDN, :default => hostname.chomp) -#remote_ipa = prompt_yes_no("Is FreeIPA already installed on another machine?") -remote_ipa = "n" +remote_ipa = prompt_yes_no("Is FreeIPA already installed on another machine?") if remote_ipa == "y" ipa_host = prompt_for_answer("Enter the hostname of the FreeIPA server", :regex => IP_OR_FQDN) else @@ -196,14 +195,25 @@ ldap_dn_temp.each do |i| # DNS Configuration +ns_count = 0 +ns_list = {} @cli.say( "\nThe following DNS servers were found:") File.open('/etc/resolv.co...
2009 Jun 23
1
[PATCH server] added ovirt-wait4service and invokation in installer to wait for psql/ldap
...usr/bin/ovirt-wait4service 'true' 10 2", + require => [Single_exec[set_ldap_hostname],Single_exec[set_ldap_dn]] + } + + single_exec { "set_ldap_hostname" : command => "/bin/sed -i -e 's/management.priv.ovirt.org/$ipa_host/' /usr/share/ovirt-server/config/ldap.yml", require => Package[ovirt-server] diff --git a/installer/modules/ovirt/manifests/postgres.pp b/installer/modules/ovirt/manifests/postgres.pp index c46b360..9a4afa1 100644 --- a/installer/modules/ovirt/manifests/postgres.pp +++...
2009 Aug 11
0
[PATCH server] Added support for remote logging with rsyslog-gssapi to server.
.../installer/modules/ovirt/templates/ovirt-dns.conf.erb b/installer/modules/ovirt/templates/ovirt-dns.conf.erb index f4ee39b..03988aa 100644 --- a/installer/modules/ovirt/templates/ovirt-dns.conf.erb +++ b/installer/modules/ovirt/templates/ovirt-dns.conf.erb @@ -4,4 +4,5 @@ srv-host=_ldap._tcp,<%= ipa_host %>,389 srv-host=_collectd._udp,<%= ovirt_host %>,25826 srv-host=_qpidd._tcp,<%= ovirt_host %>,5672 srv-host=_identify._tcp,<%= ovirt_host %>,12120 +srv-host=_rsyslog._tcp,<%= ovirt_host %>,514 diff --git a/ovirt-server.spec.in b/ovirt-server.spec.in index 0715690..ec...