aboutsummaryrefslogtreecommitdiffstats
path: root/modules/bugzilla
diff options
context:
space:
mode:
authorDexter Morgan <dmorgan@mageia.org>2010-11-26 15:36:45 +0000
committerDexter Morgan <dmorgan@mageia.org>2010-11-26 15:36:45 +0000
commitcd2322fded52ca44fb6372e0379a776f4a320dcb (patch)
tree66b48b7ae404111aa438bd72876d60ce8139ed52 /modules/bugzilla
parentcf8e573e492aa168720b8f615be2b8d01e3635bc (diff)
downloadpuppet-cd2322fded52ca44fb6372e0379a776f4a320dcb.tar
puppet-cd2322fded52ca44fb6372e0379a776f4a320dcb.tar.gz
puppet-cd2322fded52ca44fb6372e0379a776f4a320dcb.tar.bz2
puppet-cd2322fded52ca44fb6372e0379a776f4a320dcb.tar.xz
puppet-cd2322fded52ca44fb6372e0379a776f4a320dcb.zip
Fix perms
Diffstat (limited to 'modules/bugzilla')
-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"
- }
}