module Facter::Core::Execution
Public Class Methods
# File lib/facter/custom_facts/core/execution.rb, line 11 def self.impl @@impl end
Public Instance Methods
@param platform [:posix/:windows/nil] The platform logic to use
@api private
# File lib/facter/custom_facts/core/execution.rb, line 48 def absolute_path?(path, platform = nil) case platform when :posix Facter::Core::Execution::Posix.new.absolute_path?(path) when :windows Facter::Core::Execution::Windows.new.absolute_path?(path) else @@impl.absolute_path?(path) end end
Try to execute a command and return the output. @param command [String] Command to run
@return [String/nil] Output of the program, or nil if the command does
not exist or could not be executed.
@deprecated Use #{execute} instead @api public
# File lib/facter/custom_facts/core/execution.rb, line 93 def exec(command) @@impl.execute(command, on_fail: nil) end
Execute a command and return the output of that program. @param command [String] Command to run
@param options [Hash] Hash with options for the aggregate fact
@option options [Object] :on_fail How to behave when the command could
not be run. Specifying :raise will raise an error, anything else will return that object on failure. Default is :raise.
@raise [Facter::Core::Execution::ExecutionFailure] If the command does
not exist or could not be executed.
@return [String] the output of the program, or the value of :on_fail if
command execution failed and :on_fail was specified.
@api public
# File lib/facter/custom_facts/core/execution.rb, line 113 def execute(command, options = {}) @@impl.execute(command, options) end
Given a command line, this returns the command line with the
executable written as an absolute path. If the executable contains spaces, it has to be put in double quotes to be properly recognized.
@param command [String] the command line
@return [String/nil] The command line with the executable's path
expanded, or nil if the executable cannot be found.
@api private
# File lib/facter/custom_facts/core/execution.rb, line 68 def expand_command(command) @@impl.expand_command(command) end
Returns the locations to be searched when looking for a binary. This
is currently determined by the +PATH+ environment variable plus `/sbin` and `/usr/sbin` when run on unix
@return [Array<String>] The paths to be searched for binaries
@api private
# File lib/facter/custom_facts/core/execution.rb, line 24 def search_paths @@impl.search_paths end
Determines the full path to a binary. If the supplied filename does not
already describe an absolute path then different locations (determined by {search_paths}) will be searched for a match.
@param bin [String] The executable to locate
@return [String/nil] The full path to the executable or nil if not
found
@api public
# File lib/facter/custom_facts/core/execution.rb, line 37 def which(bin) @@impl.which(bin) end
Overrides environment variables within a block of code. The
specified values will be set for the duration of the block, after which the original values (if any) will be restored.
@param values [Hash<String=>String>] A hash of the environment
variables to override
@return [String] The block's return string
@api private
# File lib/facter/custom_facts/core/execution.rb, line 81 def with_env(values, &block) @@impl.with_env(values, &block) end