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

Calls superclass method
   # File lib/puppet/util/execution.rb
29 def initialize(value,exitstatus)
30   super(value)
31   @exitstatus = exitstatus
32 end