diff options
Diffstat (limited to 'manifests/centos.pp')
| -rw-r--r-- | manifests/centos.pp | 12 | 
1 files changed, 12 insertions, 0 deletions
| diff --git a/manifests/centos.pp b/manifests/centos.pp new file mode 100644 index 0000000..7968b69 --- /dev/null +++ b/manifests/centos.pp @@ -0,0 +1,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'] +    } +  } +} | 
