Class: PuppetX::Relay::Agent::Backend::SSH
- Defined in:
- lib/puppet_x/relay/agent/backend/ssh.rb
Instance Attribute Summary
Attributes inherited from Base
Instance Method Summary collapse
-
#initialize(relay_api, ssh_command: nil) ⇒ SSH
constructor
A new instance of SSH.
Methods inherited from Process
Methods inherited from Base
Constructor Details
#initialize(relay_api, ssh_command: nil) ⇒ SSH
Returns a new instance of SSH.
12 13 14 15 |
# File 'lib/puppet_x/relay/agent/backend/ssh.rb', line 12 def initialize(relay_api, ssh_command: nil) super(relay_api) @ssh_command = ssh_command || ['ssh'] end |