diff options
author | Michael Scherer <misc@mageia.org> | 2011-08-17 22:52:32 +0000 |
---|---|---|
committer | Michael Scherer <misc@mageia.org> | 2011-08-17 22:52:32 +0000 |
commit | d11ab318aa9e946f9b8c47d05a71a4421a5662a7 (patch) | |
tree | de44ad2c928143999de6862db51c938a26a3d83c /modules/bugzilla | |
parent | 72df72da15c6a4a13fbd352bc1328660f998ec36 (diff) | |
download | puppet-d11ab318aa9e946f9b8c47d05a71a4421a5662a7.tar puppet-d11ab318aa9e946f9b8c47d05a71a4421a5662a7.tar.gz puppet-d11ab318aa9e946f9b8c47d05a71a4421a5662a7.tar.bz2 puppet-d11ab318aa9e946f9b8c47d05a71a4421a5662a7.tar.xz puppet-d11ab318aa9e946f9b8c47d05a71a4421a5662a7.zip |
fix require, so the initial bootstrap do not fail
Diffstat (limited to 'modules/bugzilla')
-rw-r--r-- | modules/bugzilla/manifests/init.pp | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/modules/bugzilla/manifests/init.pp b/modules/bugzilla/manifests/init.pp index 49d3ea4f..a0148af8 100644 --- a/modules/bugzilla/manifests/init.pp +++ b/modules/bugzilla/manifests/init.pp @@ -27,7 +27,8 @@ class bugzilla { owner => root, group => apache, mode => 640, - content => template("bugzilla/localconfig") + content => template("bugzilla/localconfig"), + require => Package[bugzilla], } @@ -37,6 +38,7 @@ class bugzilla { group => apache, mode => 640, content => template("bugzilla/params") + require => Package[bugzilla], } apache::webapp_other{"bugzilla": @@ -56,7 +58,8 @@ class bugzilla { } subversion::snapshot { $bugzilla_location: - source => "svn://svn.mageia.org/svn/web/templates/bugzilla/trunk" + source => "svn://svn.mageia.org/svn/web/templates/bugzilla/trunk", + require => Package[bugzilla], } file { "custom": |