fail2ban: lint fixes
[mirror/dsa-puppet.git] / modules / fail2ban / manifests / exim.pp
index f1b34dd..4279091 100644 (file)
@@ -1,10 +1,20 @@
+# exim-specific fail2ban setup
+#
 class fail2ban::exim inherits fail2ban {
        file { '/etc/fail2ban/filter.d/dsa-exim.conf':
                source => 'puppet:///modules/fail2ban/filter/dsa-exim.conf',
-               notify  => Service['fail2ban'],
+               notify => Service['fail2ban'],
        }
        file { '/etc/fail2ban/jail.d/dsa-exim.conf':
                source => 'puppet:///modules/fail2ban/jail/dsa-exim.conf',
-               notify  => Service['fail2ban'],
+               notify => Service['fail2ban'],
+       }
+       file { '/etc/fail2ban/filter.d/dsa-exim-strict.conf':
+               source => 'puppet:///modules/fail2ban/filter/dsa-exim-strict.conf',
+               notify => Service['fail2ban'],
+       }
+       file { '/etc/fail2ban/jail.d/dsa-exim-strict.conf':
+               source => 'puppet:///modules/fail2ban/jail/dsa-exim-strict.conf',
+               notify => Service['fail2ban'],
        }
 }