Exception: Veewee::Provider::Core::Helper::SshResult

Inherits:
RuntimeError
  • Object
show all
Defined in:
lib/veewee/provider/core/helper/ssh.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(stdout, stderr, status) ⇒ SshResult

Returns a new instance of SshResult.



15
16
17
18
19
# File 'lib/veewee/provider/core/helper/ssh.rb', line 15

def initialize(stdout,stderr,status)
  @stdout=stdout
  @stderr=stderr
  @status=status
end

Instance Attribute Details

#statusObject

Returns the value of attribute status.



13
14
15
# File 'lib/veewee/provider/core/helper/ssh.rb', line 13

def status
  @status
end

#stderrObject

Returns the value of attribute stderr.



12
13
14
# File 'lib/veewee/provider/core/helper/ssh.rb', line 12

def stderr
  @stderr
end

#stdoutObject

Returns the value of attribute stdout.



11
12
13
# File 'lib/veewee/provider/core/helper/ssh.rb', line 11

def stdout
  @stdout
end