diff options
author | Gabriel Filion <gabster@lelutin.ca> | 2015-03-08 12:47:31 -0400 |
---|---|---|
committer | Gabriel Filion <gabster@lelutin.ca> | 2015-03-08 12:47:31 -0400 |
commit | 2021023f31043e44de5bf2733bb12a66c33a6c71 (patch) | |
tree | e9667f24c725a3d476d37ab82aa51461bd36e30f | |
parent | c4b0de71fe3201fa8c83b61e571a7aed690edb6c (diff) | |
download | puppet-postfix-2021023f31043e44de5bf2733bb12a66c33a6c71.tar.gz puppet-postfix-2021023f31043e44de5bf2733bb12a66c33a6c71.tar.bz2 |
lint smtp_auth (spacing style)
-rw-r--r-- | manifests/smtp_auth.pp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/manifests/smtp_auth.pp b/manifests/smtp_auth.pp index 6a13a0d..882b01d 100644 --- a/manifests/smtp_auth.pp +++ b/manifests/smtp_auth.pp @@ -28,10 +28,10 @@ define postfix::smtp_auth ($user, $password, $ensure=present) { file_line { $name: - ensure => $ensure, - path => '/etc/postfix/smtp_auth', - line => "${name} ${user}:${password}", - notify => Exec['generate /etc/postfix/smtp_auth.db'], - require => Package['postfix'], - } + ensure => $ensure, + path => '/etc/postfix/smtp_auth', + line => "${name} ${user}:${password}", + notify => Exec['generate /etc/postfix/smtp_auth.db'], + require => Package['postfix'], + } } |