diff options
author | Travis Fields <travis@puppetlabs.com> | 2014-10-24 16:35:34 -0700 |
---|---|---|
committer | Travis Fields <travis@puppetlabs.com> | 2014-10-24 16:35:34 -0700 |
commit | 624ccbd22c845a042e8128d44c5299c0732e81de (patch) | |
tree | 59bb1476454569be8d5249eac7623c585651f024 /lib/puppet/parser/functions | |
parent | cb6c7d8e49cdd392dfa55c27cf78795125163c70 (diff) | |
download | puppet-stdlib-624ccbd22c845a042e8128d44c5299c0732e81de.tar.gz puppet-stdlib-624ccbd22c845a042e8128d44c5299c0732e81de.tar.bz2 |
add require 'tempfile' to resolve a previously autorequired resource
Diffstat (limited to 'lib/puppet/parser/functions')
-rw-r--r-- | lib/puppet/parser/functions/validate_augeas.rb | 2 | ||||
-rw-r--r-- | lib/puppet/parser/functions/validate_cmd.rb | 1 |
2 files changed, 3 insertions, 0 deletions
diff --git a/lib/puppet/parser/functions/validate_augeas.rb b/lib/puppet/parser/functions/validate_augeas.rb index 154d660..4ea4fe0 100644 --- a/lib/puppet/parser/functions/validate_augeas.rb +++ b/lib/puppet/parser/functions/validate_augeas.rb @@ -1,3 +1,5 @@ +require 'tempfile' + module Puppet::Parser::Functions newfunction(:validate_augeas, :doc => <<-'ENDHEREDOC') do |args| Perform validation of a string using an Augeas lens diff --git a/lib/puppet/parser/functions/validate_cmd.rb b/lib/puppet/parser/functions/validate_cmd.rb index 2ebe91c..652aa55 100644 --- a/lib/puppet/parser/functions/validate_cmd.rb +++ b/lib/puppet/parser/functions/validate_cmd.rb @@ -1,4 +1,5 @@ require 'puppet/util/execution' +require 'tempfile' module Puppet::Parser::Functions newfunction(:validate_cmd, :doc => <<-'ENDHEREDOC') do |args| |