fail2ban: actually ship the dsa-exim-strict set up
[mirror/dsa-puppet.git] / modules / fail2ban / manifests / exim.pp
1 class fail2ban::exim inherits fail2ban {
2         file { '/etc/fail2ban/filter.d/dsa-exim.conf':
3                 source => 'puppet:///modules/fail2ban/filter/dsa-exim.conf',
4                 notify  => Service['fail2ban'],
5         }
6         file { '/etc/fail2ban/jail.d/dsa-exim.conf':
7                 source => 'puppet:///modules/fail2ban/jail/dsa-exim.conf',
8                 notify  => Service['fail2ban'],
9         }
10         file { '/etc/fail2ban/filter.d/dsa-exim-strict.conf':
11                 source => 'puppet:///modules/fail2ban/filter/dsa-exim-strict.conf',
12                 notify  => Service['fail2ban'],
13         }
14         file { '/etc/fail2ban/jail.d/dsa-exim-strict.conf':
15                 source => 'puppet:///modules/fail2ban/jail/dsa-exim-strict.conf',
16                 notify  => Service['fail2ban'],
17         }
18 }