class Puppet::Util::Execution::ProcessOutput

This is the full output from a process. The object itself (a String) is the stdout of the process.

@api public

Attributes

exitstatus[R]

@return [Integer] The exit status of the process @api public

Public Class Methods

new(value,exitstatus) click to toggle source

@api private

# File lib/puppet/util/execution.rb, line 29
def initialize(value,exitstatus)
  super(value)
  @exitstatus = exitstatus
end