Sha256: 9e3aa42ab79d2a4e790e26b190b01abd29afe9de6181e5c95255cf2e1d928a08

Contents?: true

Size: 1.58 KB

Versions: 22

Compression:

Stored size: 1.58 KB

Contents

require 'puppet/util/execution'

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")
    begin
      tmpfile.write(content)
      if Puppet::Util::Execution.respond_to?('execute')
        Puppet::Util::Execution.execute("#{checkscript} #{tmpfile.path}")
      else
        Puppet::Util.execute("#{checkscript} #{tmpfile.path}")
      end
    rescue Puppet::ExecutionFailure => detail
      msg += "\n#{detail}"
      raise Puppet::ParseError, msg
    ensure
      tmpfile.unlink
    end
  end
end

Version data entries

22 entries across 22 versions & 2 rubygems

Version Path
freighthop-0.6.1 modules/stdlib/lib/puppet/parser/functions/validate_cmd.rb
freighthop-0.6.0 modules/stdlib/lib/puppet/parser/functions/validate_cmd.rb
freighthop-0.5.2 modules/stdlib/lib/puppet/parser/functions/validate_cmd.rb
freighthop-0.5.1 modules/stdlib/lib/puppet/parser/functions/validate_cmd.rb
freighthop-0.5.0 modules/stdlib/lib/puppet/parser/functions/validate_cmd.rb
freighthop-0.4.1 modules/stdlib/lib/puppet/parser/functions/validate_cmd.rb
freighthop-0.4.0 modules/stdlib/lib/puppet/parser/functions/validate_cmd.rb
freighthop-0.3.3 modules/stdlib/lib/puppet/parser/functions/validate_cmd.rb
freighthop-0.3.2 modules/stdlib/lib/puppet/parser/functions/validate_cmd.rb
freighthop-0.3.1 modules/stdlib/lib/puppet/parser/functions/validate_cmd.rb
freighthop-0.3.0 modules/stdlib/lib/puppet/parser/functions/validate_cmd.rb
freighthop-0.2.1 modules/stdlib/lib/puppet/parser/functions/validate_cmd.rb
freighthop-0.2.0 modules/stdlib/lib/puppet/parser/functions/validate_cmd.rb
freighthop-0.1.0 modules/stdlib/lib/puppet/parser/functions/validate_cmd.rb
freighthop-0.0.6 modules/stdlib/lib/puppet/parser/functions/validate_cmd.rb
freighthop-0.0.5 modules/stdlib/lib/puppet/parser/functions/validate_cmd.rb
freighthop-0.0.4 modules/stdlib/lib/puppet/parser/functions/validate_cmd.rb
freighthop-0.0.3 modules/stdlib/lib/puppet/parser/functions/validate_cmd.rb
freighthop-0.0.2 modules/stdlib/lib/puppet/parser/functions/validate_cmd.rb
freighthop-0.0.1 modules/stdlib/lib/puppet/parser/functions/validate_cmd.rb