summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorHailee Kenney <hailee@puppetlabs.com>2016-12-09 13:17:48 +0000
committerHailee Kenney <hailee@puppetlabs.com>2016-12-09 13:48:01 +0000
commit3312cc1f44d1acf25ce45701a74cecd647c50858 (patch)
tree3f026b1eb3bb7747d2742f78d6399f917f944d7e /lib
parent903d94e10527df8a288138d223e07f816422fa2c (diff)
(MODULES-3829) Make ensure_packages work with < 2.0
Prior to this commit, if a hash was passed in as an argument to the ensure_packages function a method of hash duplication would be used that is not supported with versions of ruby older than 2.0. In order to ensure the method is compatible with older ruby versions, switch to a different method of duplication. Additionally add tests to prevent further regressions.
Diffstat (limited to 'lib')
-rw-r--r--lib/puppet/parser/functions/ensure_packages.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/puppet/parser/functions/ensure_packages.rb b/lib/puppet/parser/functions/ensure_packages.rb
index 532b702..439af1e 100644
--- a/lib/puppet/parser/functions/ensure_packages.rb
+++ b/lib/puppet/parser/functions/ensure_packages.rb
@@ -25,7 +25,7 @@ third argument to the ensure_resource() function.
end
Puppet::Parser::Functions.function(:ensure_resources)
- function_ensure_resources(['package', Hash(arguments[0]), defaults ])
+ function_ensure_resources(['package', arguments[0].dup, defaults ])
else
packages = Array(arguments[0])