]> gitweb.fluxo.info Git - puppet-postfix.git/commitdiff
lint smtp_auth (spacing style)
authorGabriel Filion <gabster@lelutin.ca>
Sun, 8 Mar 2015 16:47:31 +0000 (12:47 -0400)
committerGabriel Filion <gabster@lelutin.ca>
Sun, 8 Mar 2015 16:47:31 +0000 (12:47 -0400)
manifests/smtp_auth.pp

index 6a13a0df16c869f2b8609273b195139728fcc2f9..882b01d4025f48f9d48b2102da7b6a16c37b9df0 100644 (file)
 
 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'],
+  }
 }