corrected become_methods class variable in winrm
This should now correctly react when using become with winrm fixes #13331
This commit is contained in:
parent
80db6bacc4
commit
005b17afec
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
|
||||
|
|
Loading…
Reference in a new issue