Class: Puppet::NetDev::CE::Session
- Inherits:
-
Object
- Object
- Puppet::NetDev::CE::Session
- Defined in:
- lib/puppet/provider/ce/session/session.rb
Instance Method Summary collapse
- #connect ⇒ Object
-
#initialize(host, username, password) ⇒ Session
constructor
A new instance of Session.
Constructor Details
#initialize(host, username, password) ⇒ Session
Returns a new instance of Session.
24 25 26 27 28 29 |
# File 'lib/puppet/provider/ce/session/session.rb', line 24 def initialize(host, username, password) @host = host @username = username @password = password @session = nil end |
Instance Method Details
#connect ⇒ Object
31 32 33 34 35 36 |
# File 'lib/puppet/provider/ce/session/session.rb', line 31 def connect login = { target: @host, username: @username, password: @password } @session = Netconf::SSH.new(login) @session.open @session end |