Use sh
for ansible-test raw remote shell.
This commit is contained in:
parent
b1344a1847
commit
ded2d0b90e
2 changed files with 3 additions and 1 deletions
2
changelogs/fragments/ansible-test-remote-shell-raw.yml
Normal file
2
changelogs/fragments/ansible-test-remote-shell-raw.yml
Normal file
|
@ -0,0 +1,2 @@
|
|||
bugfixes:
|
||||
- ansible-test - The ``--raw`` option for ``ansible-test shell --remote`` now uses ``sh`` for the shell instead of ``bash``, which may not be present.
|
|
@ -448,7 +448,7 @@ def delegate_remote(args, exclude, require, integration_targets):
|
|||
manage = ManagePosixCI(core_ci)
|
||||
manage.setup(python_version)
|
||||
|
||||
cmd = create_shell_command(['bash'])
|
||||
cmd = create_shell_command(['sh'])
|
||||
else:
|
||||
manage = ManagePosixCI(core_ci)
|
||||
pwd = manage.setup(python_version)
|
||||
|
|
Loading…
Reference in a new issue