Class: Puppet::Util::Execution::ProcessOutput
- Defined in:
- lib/puppet/util/execution.rb
Overview
This is the full output from a process. The object itself (a String) is the stdout of the process.
Constant Summary
Constants inherited from String
String::ASCII_ENCODING, String::ZAML_ESCAPES
Instance Attribute Summary collapse
-
#exitstatus ⇒ Integer
readonly
The exit status of the process.
Instance Method Summary collapse
-
#initialize(value, exitstatus) ⇒ ProcessOutput
constructor
private
A new instance of ProcessOutput.
Methods inherited from String
Methods included from MonkeyPatches::Lines
Constructor Details
#initialize(value, exitstatus) ⇒ ProcessOutput
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Returns a new instance of ProcessOutput.
29 30 31 32 |
# File 'lib/puppet/util/execution.rb', line 29 def initialize(value,exitstatus) super(value) @exitstatus = exitstatus end |
Instance Attribute Details
#exitstatus ⇒ Integer (readonly)
Returns The exit status of the process.
26 27 28 |
# File 'lib/puppet/util/execution.rb', line 26 def exitstatus @exitstatus end |