summaryrefslogtreecommitdiff
path: root/manifests/sympa.pp
diff options
context:
space:
mode:
Diffstat (limited to 'manifests/sympa.pp')
-rw-r--r--manifests/sympa.pp12
1 files changed, 6 insertions, 6 deletions
diff --git a/manifests/sympa.pp b/manifests/sympa.pp
index 6ddf0dc..f8cf491 100644
--- a/manifests/sympa.pp
+++ b/manifests/sympa.pp
@@ -55,14 +55,14 @@ class mail::sympa(
ensure => directory,
owner => postfix,
group => root,
- mode => 0755,
+ mode => '0755',
}
file { "/etc/sympa/sympa.conf":
ensure => present,
owner => sympa,
group => sympa,
- mode => 0640,
+ mode => '0640',
content => template("mail/sympa/sympa.conf.${::lsbdistcodename}.erb"),
require => [ File['/etc/sympa'], User['sympa'] ],
notify => Service['apache', 'sympa'],
@@ -72,7 +72,7 @@ class mail::sympa(
ensure => present,
owner => sympa,
group => sympa,
- mode => 0640,
+ mode => '0640',
source => "puppet:///modules/mail/sympa/wwsympa.conf",
notify => Service['apache', 'sympa'],
}
@@ -81,14 +81,14 @@ class mail::sympa(
ensure => directory,
owner => root,
group => root,
- mode => 0755,
+ mode => '0755',
}
file { "/etc/dbconfig-common/sympa.conf":
ensure => present,
owner => root,
group => root,
- mode => 0600,
+ mode => '0600',
content => template("mail/sympa/dbconfig-common.${::lsbdistcodename}.erb"),
require => File['/etc/dbconfig-common'],
}
@@ -97,7 +97,7 @@ class mail::sympa(
ensure => present,
owner => root,
group => root,
- mode => 0644,
+ mode => '0644',
source => "puppet:///modules/mail/sympa/logrotate",
}