summaryrefslogtreecommitdiff
path: root/manifests/centos.pp
diff options
context:
space:
mode:
authorvarac <varacanero@zeromail.org>2016-06-13 20:37:21 +0200
committervarac <varacanero@zeromail.org>2016-06-13 20:37:21 +0200
commit06e89ed3486916ae12186e46b8ec59c8c7c79142 (patch)
treeb82b60b4390763c7d805a37e40b67319641671c3 /manifests/centos.pp
parent34fbca68d478c2edd5f13e74245cf675b5b53303 (diff)
parentf560a426885f0982cae39495321222158a69e895 (diff)
Merge remote-tracking branch 'shared/master' into leap_master
Diffstat (limited to 'manifests/centos.pp')
-rw-r--r--manifests/centos.pp4
1 files changed, 2 insertions, 2 deletions
diff --git a/manifests/centos.pp b/manifests/centos.pp
index f671bc9..1f8b37d 100644
--- a/manifests/centos.pp
+++ b/manifests/centos.pp
@@ -1,13 +1,13 @@
# things needed on centos
class shorewall::centos inherits shorewall::base {
- if $::lsbmajdistrelease > 5 {
+ if versioncmp($::operatingsystemmajrelease,'5') > 0 {
augeas{'enable_shorewall':
context => '/files/etc/sysconfig/shorewall',
changes => 'set startup 1',
lens => 'Shellvars.lns',
incl => '/etc/sysconfig/shorewall',
require => Package['shorewall'],
- notify => Service['shorewall'],
+ notify => Exec['shorewall_check'],
}
}
}