aboutsummaryrefslogtreecommitdiff
path: root/manifests/centos.pp
blob: 815e756926dd468406b40ca9ae9caa6d71c02231 (plain)
1
2
3
4
5
6
7
8
9
10
class shorewall::centos inherits shorewall::base {
  if $lsbmajdistrelease == '6' {
    # workaround for
    # http://comments.gmane.org/gmane.comp.security.shorewall/26991
    file{'/etc/shorewall/params':
      ensure => link,
      target => '/etc/shorewall/puppet/params',
    }
  }
}