aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--modules/bugzilla/manifests/init.pp9
1 files changed, 4 insertions, 5 deletions
diff --git a/modules/bugzilla/manifests/init.pp b/modules/bugzilla/manifests/init.pp
index 06b1eacd..8c4553ce 100644
--- a/modules/bugzilla/manifests/init.pp
+++ b/modules/bugzilla/manifests/init.pp
@@ -33,18 +33,17 @@ class bugzilla {
apache::vhost_other_app { "bugs.$domain":
vhost_file => "bugzilla/vhost_bugs.conf",
}
+ subversion::snapshot { $bugzilla_location:
+ source => "svn://svn.mageia.org/svn/web/templates/bugzilla/trunk"
+ }
file { "custom":
path => "/usr/share/bugzilla/template/en/custom",
ensure => directory,
owner => root,
group => apache,
- mode => 700,
+ mode => 640,
recurse => true,
require => Subversion::Snapshot[$bugzilla_location]
}
-
- subversion::snapshot { $bugzilla_location:
- source => "svn://svn.mageia.org/svn/web/templates/bugzilla/trunk"
- }
}