Hi,
I'm new to puppet so please pardon my ignorance.
I'm writing a module to work with a network device that I have and trying to connect to it using the ssh transport.
My device.conf is
[device]
type <type>
url ssh://.....
network_device/device.rb has
@transport = Puppet::Util::NetworkDevice::Transport::Ssh.new
transport.connect
Now when I call this using puppet device -d, the output is stuck at
Debug: Finishing transaction 70351396003780
I traced that to the transport/ssh.rb that ships with puppet. I've gone through the existing cisco ios device management module and that seems to be calling it's own transport instead (sshios:// -> sshios.rb) and that method works for me too but how do I begin to use the built in ssh module.
--
Sharninder