From f3f317236ef8f38a37561b0258761f1194605583 Mon Sep 17 00:00:00 2001 From: Michael Scherer Date: Mon, 20 Feb 2012 18:34:29 +0000 Subject: clean and make puppet-lint happy for postgrey module --- modules/postgrey/manifests/init.pp | 20 ++++++++++---------- 1 file 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'); } } -- cgit v1.2.1