Displaying 3 results from an estimated 3 matches for "get_krb5_tkt".
2009 Jun 15
1
[PATCH][ovirt-server] restart ipa after installation and before set admin password
...ed{
require => [Exec[set_kdc_defaults],Single_exec[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 May 20
1
[PATCH server] update host-browser to use ipa commands rather than kadmin
...30,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/host-browser/host-browser.rb
index 13b2ac4..b62fdba 100755
--- a/src/host-browser/host-browser.rb
+++ b/src/host-browse...
2009 Aug 21
1
[PATCH server] update installer exec items to single_exec where applicable
...pa_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]]
}
exec {"get_krb5_tkt":
diff --git a/installer/modules/ovirt/manifests/postgres.pp b/installer/modules/ovirt/manifests/postgres.pp
index 12b7764..42433ea 100644
--- a/installer/modules/ovirt/manifests/postgres.pp
+++ b/installer/modules/ovirt/manifests/postgres.pp
@@ -41,18 +41,18 @@ class postgres::bundled{...