diff options
author | Jeff McCune <jeff@puppetlabs.com> | 2013-01-18 09:06:23 -0800 |
---|---|---|
committer | Jeff McCune <jeff@puppetlabs.com> | 2013-01-18 09:06:23 -0800 |
commit | f6a63eeafa89d01a700a7eb6ba1217034535b50b (patch) | |
tree | 92dab9c19b6cc8aa9ae7d0f01b022bcc98300337 /lib/puppet/parser/functions/validate_cmd.rb | |
parent | 562d3254318349cc6dd1f4482527b3dcc6d36867 (diff) | |
parent | 6902cc582eef6eb59cd5252208eca5ac608995bd (diff) | |
download | puppet-stdlib-f6a63eeafa89d01a700a7eb6ba1217034535b50b.tar.gz puppet-stdlib-f6a63eeafa89d01a700a7eb6ba1217034535b50b.tar.bz2 |
Merge branch 'raphink-validate_cmd'
* raphink-validate_cmd:
Add validate_cmd function
This merge commit closes #113
Diffstat (limited to 'lib/puppet/parser/functions/validate_cmd.rb')
-rw-r--r-- | lib/puppet/parser/functions/validate_cmd.rb | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/lib/puppet/parser/functions/validate_cmd.rb b/lib/puppet/parser/functions/validate_cmd.rb new file mode 100644 index 0000000..e7793c3 --- /dev/null +++ b/lib/puppet/parser/functions/validate_cmd.rb @@ -0,0 +1,41 @@ +module Puppet::Parser::Functions + newfunction(:validate_cmd, :doc => <<-'ENDHEREDOC') do |args| + Perform validation of a string with an external command. + The first argument of this function should be a string to + test, and the second argument should be a path to a test command + taking a file as last argument. If the command, launched against + a tempfile containing the passed string, returns a non-null value, + compilation will abort with a parse error. + + If a third argument is specified, this will be the error message raised and + seen by the user. + + A helpful error message can be returned like this: + + Example: + + validate_cmd($sudoerscontent, '/usr/sbin/visudo -c -f', 'Visudo failed to validate sudoers content') + + ENDHEREDOC + if (args.length < 2) or (args.length > 3) then + raise Puppet::ParseError, ("validate_cmd(): wrong number of arguments (#{args.length}; must be 2 or 3)") + end + + msg = args[2] || "validate_cmd(): failed to validate content with command #{args[1].inspect}" + + content = args[0] + checkscript = args[1] + + # Test content in a temporary file + tmpfile = Tempfile.new("validate_cmd") + tmpfile.write(content) + tmpfile.close + output = `#{checkscript} #{tmpfile.path} 2>&1 1>/dev/null` + r = $? + File.delete(tmpfile.path) + if output + msg += "\nOutput is:\n#{output}" + end + raise Puppet::ParseError, (msg) unless r == 0 + end +end |