From: Lars Kellogg-Stedman Date: Wed, 26 Mar 2014 13:15:11 +0000 (-0400) Subject: fix errors noted by travis-ci X-Git-Tag: 1.1.0~7^2 X-Git-Url: https://review.fuel-infra.org/gitweb?a=commitdiff_plain;h=ff40235cfb8f8e3f25423350547908d4abb0db88;p=puppet-modules%2Fpuppetlabs-firewall.git fix errors noted by travis-ci I like explicitly quoted strings, but apparently Travis doesn't. --- diff --git a/manifests/linux/redhat.pp b/manifests/linux/redhat.pp index 8724b52..a4c00b6 100644 --- a/manifests/linux/redhat.pp +++ b/manifests/linux/redhat.pp @@ -17,16 +17,16 @@ class firewall::linux::redhat ( $enable = true ) { - # RHEL 7 and later and Fedora 15 and later require the iptables-services - # package, which provides the /usr/libexec/iptables/iptables.init used by + # RHEL 7 and later and Fedora 15 and later require the iptables-services + # package, which provides the /usr/libexec/iptables/iptables.init used by # lib/puppet/util/firewall.rb. - if $::operatingsystem == "RedHat" and $::operatingsystemrelease >= 7 { + if $::operatingsystem == RedHat and $::operatingsystemrelease >= 7 { package { 'iptables-services': ensure => present, } } - if $::operatingsystem == "Fedora" and $::operatingsystemrelease >= 15 { + if $::operatingsystem == Fedora and $::operatingsystemrelease >= 15 { package { 'iptables-services': ensure => present, }