mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Merge pull request #14272 from bcoca/executable_connection_dependant
make executable setting connection dependent
This commit is contained in:
commit
200f958873
3 changed files with 3 additions and 1 deletions
|
@ -505,7 +505,7 @@ class ActionBase(with_metaclass(ABCMeta, object)):
|
|||
replacement strategy (python3 could use surrogateescape)
|
||||
'''
|
||||
|
||||
if executable is not None:
|
||||
if executable is not None and self._connection.allow_executable:
|
||||
cmd = executable + ' -c ' + pipes.quote(cmd)
|
||||
|
||||
display.debug("_low_level_execute_command(): starting")
|
||||
|
|
|
@ -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):
|
||||
|
||||
|
|
Loading…
Reference in a new issue