summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGabriel Filion <gabster@lelutin.ca>2015-03-08 12:47:31 -0400
committerGabriel Filion <gabster@lelutin.ca>2015-03-08 12:47:31 -0400
commit2021023f31043e44de5bf2733bb12a66c33a6c71 (patch)
treee9667f24c725a3d476d37ab82aa51461bd36e30f
parentc4b0de71fe3201fa8c83b61e571a7aed690edb6c (diff)
lint smtp_auth (spacing style)
-rw-r--r--manifests/smtp_auth.pp12
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'],
+ }
}