diff options
Diffstat (limited to 'manifests')
-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'], + } } |