diff options
author | Michael Scherer <misc@mageia.org> | 2010-11-20 11:52:54 +0000 |
---|---|---|
committer | Michael Scherer <misc@mageia.org> | 2010-11-20 11:52:54 +0000 |
commit | cd6351ab1212d5dea85db326113c887065b1efd6 (patch) | |
tree | 65c1f714456ce8ec15ff71eca0106f903dbc2e52 /modules/bugzilla/manifests | |
parent | c173069efea53f72fc7c6a758f8eebe772464a6f (diff) | |
download | puppet-cd6351ab1212d5dea85db326113c887065b1efd6.tar puppet-cd6351ab1212d5dea85db326113c887065b1efd6.tar.gz puppet-cd6351ab1212d5dea85db326113c887065b1efd6.tar.bz2 puppet-cd6351ab1212d5dea85db326113c887065b1efd6.tar.xz puppet-cd6351ab1212d5dea85db326113c887065b1efd6.zip |
- do not let file with passwords to be world readable
( even if being readable by apache is not good either, but needed as the password is used by apache )
- use ldaps for sympa
- use the 2 new facter macro and remove the version copied everywhere
- remove hardcoded domain in bugzilla and others
Diffstat (limited to 'modules/bugzilla/manifests')
-rw-r--r-- | modules/bugzilla/manifests/init.pp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/modules/bugzilla/manifests/init.pp b/modules/bugzilla/manifests/init.pp index 4a72fb75..23a24f1e 100644 --- a/modules/bugzilla/manifests/init.pp +++ b/modules/bugzilla/manifests/init.pp @@ -10,8 +10,8 @@ class bugzilla { file { '/etc/bugzilla/localconfig': ensure => present, owner => root, - group => root, - mode => 644, + group => apache, + mode => 640, content => template("bugzilla/localconfig") } @@ -19,8 +19,8 @@ class bugzilla { file { '/var/lib/bugzilla/params': ensure => present, owner => root, - group => root, - mode => 644, + group => apache, + mode => 640, content => template("bugzilla/params") } @@ -30,7 +30,7 @@ class bugzilla { } apache::vhost_other_app { "bugs.$domain": - vhost_file => "bugzilla/vhost_bugs.mageia.org.conf", + vhost_file => "bugzilla/vhost_bugs.conf", } } |