diff options
Diffstat (limited to 'modules/sympa/manifests/init.pp')
-rw-r--r-- | modules/sympa/manifests/init.pp | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/modules/sympa/manifests/init.pp b/modules/sympa/manifests/init.pp index d97560fa..3a68ddcd 100644 --- a/modules/sympa/manifests/init.pp +++ b/modules/sympa/manifests/init.pp @@ -11,9 +11,11 @@ class sympa { file { '/etc/sympa/sympa.conf': ensure => present, - owner => root, - group => root, - mode => 644, + # should be cleaner to have it root owned, but puppet do not support acl + # and in any case, config will be reset if it change + owner => sympa, + group => apache, + mode => 640, content => template("sympa/sympa.conf") } |