corrected become_methods class variable in winrm

This should now correctly react when using become with winrm
fixes #13331
This commit is contained in:
Brian Coca 2015-11-30 08:32:53 -08:00
parent 80db6bacc4
commit 005b17afec

View file

@ -62,6 +62,7 @@ class Connection(ConnectionBase):
'''WinRM connections over HTTP/HTTPS.'''
module_implementation_preferences = ('.ps1', '')
become_methods = []
def __init__(self, *args, **kwargs):
@ -72,7 +73,6 @@ class Connection(ConnectionBase):
self._shell_type = 'powershell'
# TODO: Add runas support
self.become_methods_supported=[]
super(Connection, self).__init__(*args, **kwargs)