From ff40235cfb8f8e3f25423350547908d4abb0db88 Mon Sep 17 00:00:00 2001 From: Lars Kellogg-Stedman Date: Wed, 26 Mar 2014 09:15:11 -0400 Subject: [PATCH] fix errors noted by travis-ci I like explicitly quoted strings, but apparently Travis doesn't. --- manifests/linux/redhat.pp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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, } -- 2.45.2