diff options
Diffstat (limited to 'manifests/centos.pp')
| -rw-r--r-- | manifests/centos.pp | 10 | 
1 files changed, 10 insertions, 0 deletions
| diff --git a/manifests/centos.pp b/manifests/centos.pp new file mode 100644 index 0000000..815e756 --- /dev/null +++ b/manifests/centos.pp @@ -0,0 +1,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', +    } +  } +}
\ No newline at end of file | 
