diff options
author | mh <mh@immerda.ch> | 2017-05-01 17:33:25 +0200 |
---|---|---|
committer | mh <mh@immerda.ch> | 2017-05-01 17:33:25 +0200 |
commit | 80aa7d6546d122ccba0b2acc8befa3f20bd08ffd (patch) | |
tree | 4d7853abdadaf87be453202d5240bf46431cd87d | |
parent | 265cf2afa424b5bf9c48b6e8512308d8911a1eca (diff) |
add missing package for EL6
-rw-r--r-- | manifests/centos.pp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/manifests/centos.pp b/manifests/centos.pp index ff8c6ad..09f34e7 100644 --- a/manifests/centos.pp +++ b/manifests/centos.pp @@ -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'], + } + } } } |