aboutsummaryrefslogtreecommitdiffstats
path: root/modules/bugzilla/manifests/init.pp
diff options
context:
space:
mode:
Diffstat (limited to 'modules/bugzilla/manifests/init.pp')
-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"
}
-
-
+}