Class: Puppet::NetDev::CE::Session

Inherits:
Object
  • Object
show all
Defined in:
lib/puppet/provider/ce/session/session.rb

Instance Method Summary collapse

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

#connectObject



31
32
33
34
35
36
# File 'lib/puppet/provider/ce/session/session.rb', line 31

def connect
   = { target: @host, username: @username, password: @password }
  @session = Netconf::SSH.new()
  @session.open
  @session
end