blob: 7968b6984c58932e1be105b1798857f42e0b4335 (
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']
}
}
}
|