From d11ab318aa9e946f9b8c47d05a71a4421a5662a7 Mon Sep 17 00:00:00 2001 From: Michael Scherer Date: Wed, 17 Aug 2011 22:52:32 +0000 Subject: fix require, so the initial bootstrap do not fail --- modules/bugzilla/manifests/init.pp | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'modules') 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": -- cgit v1.2.1