Connection plugins no longer auto-connect (v2)

Also fixed a bug in ssh.py where an attribute was being inappropriately
initialized in the _connect() method instead of __init__()
This commit is contained in:
James Cammarata 2015-05-12 11:10:22 -05:00
parent 09605706d9
commit 3697d6582f
2 changed files with 1 additions and 3 deletions

View file

@ -54,8 +54,6 @@ class ConnectionBase:
if not hasattr(self, '_connected'):
self._connected = False
self._connect()
def _become_method_supported(self, become_method):
''' Checks if the current class supports this privilege escalation method '''