aboutsummaryrefslogtreecommitdiffstats
path: root/modules/postgrey
diff options
context:
space:
mode:
authorMichael Scherer <misc@mageia.org>2012-02-20 18:34:29 +0000
committerMichael Scherer <misc@mageia.org>2012-02-20 18:34:29 +0000
commitf3f317236ef8f38a37561b0258761f1194605583 (patch)
tree87018b3452043f2547958cfa77195d347e4e8e57 /modules/postgrey
parentd65c0f3c236adc93451637b939889af36aa6f702 (diff)
downloadpuppet-f3f317236ef8f38a37561b0258761f1194605583.tar
puppet-f3f317236ef8f38a37561b0258761f1194605583.tar.gz
puppet-f3f317236ef8f38a37561b0258761f1194605583.tar.bz2
puppet-f3f317236ef8f38a37561b0258761f1194605583.tar.xz
puppet-f3f317236ef8f38a37561b0258761f1194605583.zip
clean and make puppet-lint happy for postgrey module
Diffstat (limited to 'modules/postgrey')
-rw-r--r--modules/postgrey/manifests/init.pp20
1 files changed, 10 insertions, 10 deletions
diff --git a/modules/postgrey/manifests/init.pp b/modules/postgrey/manifests/init.pp
index ebcd9791..8a2c9c18 100644
--- a/modules/postgrey/manifests/init.pp
+++ b/modules/postgrey/manifests/init.pp
@@ -1,19 +1,19 @@
class postgrey {
- package { postgrey: }
-
- service { postgrey:
- subscribe => Package[postgrey],
+ package { 'postgrey': }
+
+ service { 'postgrey':
+ subscribe => Package['postgrey'],
}
File {
- notify => Service[postgrey],
- require => Package[postgrey],
+ notify => Service['postgrey'],
+ require => Package['postgrey'],
}
file {
- "/etc/sysconfig/postgrey":
- content => template("postgrey/postgrey.sysconfig");
- "/etc/postfix/postgrey_whitelist_clients.local":
- content => template("postgrey/whitelist_clients.local");
+ '/etc/sysconfig/postgrey':
+ content => template('postgrey/postgrey.sysconfig');
+ '/etc/postfix/postgrey_whitelist_clients.local':
+ content => template('postgrey/whitelist_clients.local');
}
}