Displaying 3 results from an estimated 3 matches for "dnsmasq_restart".
2009 Aug 21
1
[PATCH server] update installer exec items to single_exec where applicable
...er_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]]
}
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/installe...
2009 May 15
1
[PATCH server] add server-side groundwork for remote freeipa server
...manifests/freeipa.pp
@@ -45,6 +45,15 @@ class freeipa::common{
require => Single_exec[ipa_ovirtadmin_group]
}
+ single_exec {"set_hostname":
+ command => "/bin/hostname $ovirt_host",
+ }
+
+ single_exec {"dnsmasq_restart":
+ command => "/usr/bin/pkill dnsmasq;/etc/init.d/dnsmasq start",
+ require => [Single_exec[add_guest_server_to_etc_hosts],Package[dnsmasq]]
+ }
+
}
class freeipa::bundled{
@@ -54,10 +63,6 @@ class freeipa::bundled{
require => [Ex...
2009 Jun 15
1
[PATCH][ovirt-server] restart ipa after installation and before set admin password
...freeipa.pp b/installer/modules/ovirt/manifests/freeipa.pp
index aa806fe..5a9fb44 100644
--- a/installer/modules/ovirt/manifests/freeipa.pp
+++ b/installer/modules/ovirt/manifests/freeipa.pp
@@ -64,6 +64,11 @@ class freeipa::bundled{
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|/...