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