summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTravis Fields <travis@puppetlabs.com>2014-10-08 10:14:10 -0700
committerTravis Fields <travis@puppetlabs.com>2014-10-08 10:14:10 -0700
commit8ad7f68ecaf444b39c4ca89e2e62790bc00ad89a (patch)
treeed0717e7d9f123c5b525485cac053cf219598e1c
parenta44cf3e4621016896fe2a49b3b45ff1f5ac43cf2 (diff)
ENTERPRISE-281 fixes issue with has_interfaces and case mismatch causing us not to return some interfaces
-rw-r--r--lib/puppet/parser/functions/has_interface_with.rb4
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/puppet/parser/functions/has_interface_with.rb b/lib/puppet/parser/functions/has_interface_with.rb
index 927b0df..d5dbe47 100644
--- a/lib/puppet/parser/functions/has_interface_with.rb
+++ b/lib/puppet/parser/functions/has_interface_with.rb
@@ -34,13 +34,15 @@ has_interface_with("lo") => true
end
kind, value = args
-
+ kind.downcase!
+
if lookupvar(kind) == value
return true
end
result = false
interfaces.each do |iface|
+ iface.downcase!
if value == lookupvar("#{kind}_#{iface}")
result = true
break