mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-07 05:42:50 +00:00
make executable setting connection dependant
winrm shoudl not use executable, rest should? fixes #14233
This commit is contained in:
@@ -60,6 +60,7 @@ class ConnectionBase(with_metaclass(ABCMeta, object)):
|
||||
# as discovered by the specified file extension. An empty string as the
|
||||
# language means any language.
|
||||
module_implementation_preferences = ('',)
|
||||
allow_executable = True
|
||||
|
||||
def __init__(self, play_context, new_stdin, *args, **kwargs):
|
||||
# All these hasattrs allow subclasses to override these parameters
|
||||
|
||||
@@ -63,6 +63,7 @@ class Connection(ConnectionBase):
|
||||
|
||||
module_implementation_preferences = ('.ps1', '')
|
||||
become_methods = []
|
||||
allow_executable = False
|
||||
|
||||
def __init__(self, *args, **kwargs):
|
||||
|
||||
|
||||
Reference in New Issue
Block a user