mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-10-09 09:54:02 -07:00
Check for an empty executable passed into the accelerate plugin
This was breaking at least the script module, so it would seem best to check for it and set it to the default executable value
This commit is contained in:
parent
4bf506f683
commit
20b0dc4abd
2 changed files with 5 additions and 2 deletions
|
@ -138,6 +138,9 @@ class Connection(object):
|
|||
def exec_command(self, cmd, tmp_path, sudo_user, sudoable=False, executable='/bin/sh'):
|
||||
''' run a command on the remote host '''
|
||||
|
||||
if executable == "":
|
||||
executable = constants.DEFAULT_EXECUTABLE
|
||||
|
||||
if self.runner.sudo or sudoable and sudo_user:
|
||||
cmd, prompt = utils.make_sudo_cmd(sudo_user, executable, cmd)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue