Sha256: f85b050a110f9048cbd387bfbee29c5f99143e2173bb3b40ec803aa65ff97ebd
Contents?: true
Size: 1.06 KB
Versions: 25
Compression:
Stored size: 1.06 KB
Contents
# A command that can be executed on the system class Puppet::Provider::Command attr_reader :executable attr_reader :name # @param [String] name A way of referencing the name # @param [String] executable The path to the executable file # @param resolver An object for resolving the executable to an absolute path (usually Puppet::Util) # @param executor An object for performing the actual execution of the command (usually Puppet::Util::Execution) # @param [Hash] options Extra options to be used when executing (see Puppet::Util::Execution#execute) def initialize(name, executable, resolver, executor, options = {}) @name = name @executable = executable @resolver = resolver @executor = executor @options = options end # @param [Array<String>] Any command line arguments to pass to the executable # @returns The output from the command def execute(*args) resolved_executable = @resolver.which(@executable) or raise Puppet::Error, "Command #{@name} is missing" @executor.execute([resolved_executable] + args, @options) end end
Version data entries
25 entries across 25 versions & 2 rubygems