summaryrefslogtreecommitdiff
path: root/manifests/blrules.pp
blob: 843a28f562c498e53e3fa116956970b86f80035b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
class shorewall::blrules (
  $whitelists,
  $drops,
) {
  file{'/etc/shorewall/puppet/blrules':
    content => template("shorewall/blrules.erb"),
    require => Package['shorewall'],
    notify  => Service['shorewall'],
    owner   => root,
    group   => 0,
    mode    => 0644;
  }
}