From: Lars Kellogg-Stedman Date: Tue, 25 Mar 2014 21:58:16 +0000 (-0400) Subject: correct spelling of "&&" to "and" X-Git-Tag: 1.1.0~7^2~1 X-Git-Url: https://review.fuel-infra.org/gitweb?a=commitdiff_plain;h=f10dc4c5d2b077ed6222edba7cb7098803a7537e;p=puppet-modules%2Fpuppetlabs-firewall.git correct spelling of "&&" to "and" --- diff --git a/manifests/linux/redhat.pp b/manifests/linux/redhat.pp index b95a05f..8724b52 100644 --- a/manifests/linux/redhat.pp +++ b/manifests/linux/redhat.pp @@ -20,13 +20,13 @@ class firewall::linux::redhat ( # 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" && $::operatingsystemrelease >= 7 { + if $::operatingsystem == "RedHat" and $::operatingsystemrelease >= 7 { package { 'iptables-services': ensure => present, } } - if $::operatingsystem == "Fedora" && $::operatingsystemrelease >= 15 { + if $::operatingsystem == "Fedora" and $::operatingsystemrelease >= 15 { package { 'iptables-services': ensure => present, }