lint smtp_auth (spacing style)

This commit is contained in:
Gabriel Filion 2015-03-08 12:47:31 -04:00
parent c4b0de71fe
commit 2021023f31

View file

@ -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'],
}
}