summaryrefslogtreecommitdiff
path: root/manifests/centos.pp
diff options
context:
space:
mode:
Diffstat (limited to 'manifests/centos.pp')
-rw-r--r--manifests/centos.pp8
1 files changed, 7 insertions, 1 deletions
diff --git a/manifests/centos.pp b/manifests/centos.pp
index 1f8b37d..09f34e7 100644
--- a/manifests/centos.pp
+++ b/manifests/centos.pp
@@ -1,6 +1,6 @@
# things needed on centos
class shorewall::centos inherits shorewall::base {
- if versioncmp($::operatingsystemmajrelease,'5') > 0 {
+ if $::operatingsystemmajrelease == '6' {
augeas{'enable_shorewall':
context => '/files/etc/sysconfig/shorewall',
changes => 'set startup 1',
@@ -9,5 +9,11 @@ class shorewall::centos inherits shorewall::base {
require => Package['shorewall'],
notify => Exec['shorewall_check'],
}
+ if $shorewall::with_shorewall6 {
+ package{'perl-Socket6':
+ ensure => 'installed',
+ before => Package['shorewall6'],
+ }
+ }
}
}