aboutsummaryrefslogtreecommitdiff
path: root/manifests/centos.pp
diff options
context:
space:
mode:
authormh <mh@immerda.ch>2011-12-22 21:30:49 +0100
committermh <mh@immerda.ch>2011-12-22 21:30:49 +0100
commit793fbd299e0ad91238f432abc033a575e5b08525 (patch)
tree44293e8f617b5c6b85b73d3f37e11dc2c9fc21ff /manifests/centos.pp
parentb74e089b30d075e32a7aec7e530ceafefa9e573f (diff)
downloadpuppet-shorewall-793fbd299e0ad91238f432abc033a575e5b08525.tar.gz
puppet-shorewall-793fbd299e0ad91238f432abc033a575e5b08525.tar.bz2
workaround for bug in C6 version
Diffstat (limited to 'manifests/centos.pp')
-rw-r--r--manifests/centos.pp10
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