aboutsummaryrefslogtreecommitdiffstats
path: root/modules/bugzilla
diff options
context:
space:
mode:
authorDexter Morgan <dmorgan@mageia.org>2010-11-26 15:20:50 +0000
committerDexter Morgan <dmorgan@mageia.org>2010-11-26 15:20:50 +0000
commit261cdf968ac051b052e0a137dde729ee7f4303ce (patch)
tree0afe1003a4a1644d5208980cc6ffef2dc226e289 /modules/bugzilla
parent79215380a18a25f1a764e78b58a0be6fbdf8a90a (diff)
downloadpuppet-261cdf968ac051b052e0a137dde729ee7f4303ce.tar
puppet-261cdf968ac051b052e0a137dde729ee7f4303ce.tar.gz
puppet-261cdf968ac051b052e0a137dde729ee7f4303ce.tar.bz2
puppet-261cdf968ac051b052e0a137dde729ee7f4303ce.tar.xz
puppet-261cdf968ac051b052e0a137dde729ee7f4303ce.zip
requires the svn snapshot
Diffstat (limited to 'modules/bugzilla')
-rw-r--r--modules/bugzilla/manifests/init.pp13
1 files changed, 10 insertions, 3 deletions
diff --git a/modules/bugzilla/manifests/init.pp b/modules/bugzilla/manifests/init.pp
index e767b386..62c49c1a 100644
--- a/modules/bugzilla/manifests/init.pp
+++ b/modules/bugzilla/manifests/init.pp
@@ -33,10 +33,17 @@ class bugzilla {
apache::vhost_other_app { "bugs.$domain":
vhost_file => "bugzilla/vhost_bugs.conf",
}
-}
+
+ file { "custom":
+ path => "/usr/share/bugzilla/template/en/custom",
+ ensure => directory,
+ owner => root,
+ group => apache,
+ mode => 700,
+ recurse => true
+ }
subversion::snapshot { $bugzilla_location:
source => "svn://svn.mageia.org/svn/web/templates/bugzilla/trunk"
}
-
-
+}