aboutsummaryrefslogtreecommitdiff
path: root/manifests/centos.pp
blob: f0825dd2c044b848a9e8e9337799aab9485c53d9 (plain)
1
2
3
4
5
6
7
8
9
10
11
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',
      before => Service['shorewall']
    }
  }
}