search for: db_migrat

Displaying 5 results from an estimated 5 matches for "db_migrat".

Did you mean: db_migrate
2009 Apr 27
1
[PATCH server] fix the ovirt-mongrel-rails restart problem in the installer if ran more than once
...installer/modules/ovirt/manifests/ovirt.pp index 09b1925..03a93a7 100644 --- a/installer/modules/ovirt/manifests/ovirt.pp +++ b/installer/modules/ovirt/manifests/ovirt.pp @@ -156,7 +156,8 @@ class ovirt::setup { enable => true, require => [Package[ovirt-server],Single_Exec[db_migrate]], ensure => running, - notify => Service[httpd] + notify => Service[httpd], + hasstatus => true } service {"ovirt-taskomatic" : -- 1.6.0.6
2009 Sep 11
2
ovirt ace error
Good morning, I have succesfully buil ovirt on fedora 11 but running ace -d l /tmp/ace.log install ovirt I got en error (I think it is krb5 issue). My server was not a kerberos server before installing ovirt, so I think ace procedure has installed it. Attacchede here there is the ace.log file. Could anyone help me ? Thanks & Regards Ignazio -------------- next part -------------- A non-text
2009 Jun 23
1
[PATCH server] added ovirt-wait4service and invokation in installer to wait for psql/ldap
...virt.pp +++ b/installer/modules/ovirt/manifests/ovirt.pp @@ -111,9 +111,15 @@ class ovirt::setup { single_exec { "create_ovirtadmin_acct" : command => "/usr/share/ovirt-server/script/grant_admin_privileges ovirtadmin", - require => [Single_Exec[db_migrate],Single_exec[set_ldap_hostname],Single_exec[set_ldap_dn]] + require => [Single_Exec[db_migrate],Single_exec[wait_for_ldap]] } + single_exec { "wait_for_ldap" : + command => "/usr/bin/ovirt-wait4service 'true' 10 2", +...
2009 Jul 07
1
[PATCH] Set up ovirt-agent so it starts as a daemon
.../ovirt/manifests/ovirt.pp +++ b/installer/modules/ovirt/manifests/ovirt.pp @@ -172,6 +172,12 @@ class ovirt::setup { ensure => running } + service {"ovirt-agent" : + enable => true, + require => [Package[ovirt-server],Single_Exec[db_migrate]], + ensure => running + } + service {"qpidd" : enable => true, ensure => running, diff --git a/ovirt-server.spec.in b/ovirt-server.spec.in index ad9dd2c..a315381 100644 --- a/ovirt-server.spec.in +++ b/ovirt-serve...
2009 Aug 11
0
[PATCH server] Added support for remote logging with rsyslog-gssapi to server.
...gt; installed; } @@ -97,6 +105,11 @@ class ovirt::setup { notify => Service["qpidd"] } + file {"/etc/rsyslog.conf": + source => "puppet:///ovirt/rsyslog.conf", + notify => Service["rsyslog"] + } + single_exec { "db_migrate" : cwd => "/usr/share/ovirt-server/", command => "/usr/bin/rake db:migrate", @@ -130,6 +143,18 @@ class ovirt::setup { notify => Service[qpidd] } + single_exec { "rsyslog_kerbsetup" : + command => "/usr/sbin/ovirt-rsyslog-kerbsetup&...