mirror of https://github.com/ansible/ansible.git
update ActionBase._low_level_execute_command to honor executable (#68315)
* update ActionBase._low_level_execute_command to honor executable * adding changelog fragment * renaming changelog fragment to .yml * noop change to bump shippable * adding raw_executable integration test * copying aliases from raw * removing blank lines * skipping aix and freebsd * noop to bump shippable * moving tests to raw/ * removing become_method: sudo ; it doesn't work on AIX * removing trailing blank line * forcing become_method: su to try to get AIX to work Co-authored-by: Rob Wagner <rob.wagner@sas.com>pull/69115/head
parent
1e08bb7a6f
commit
977b58740b
@ -0,0 +1,2 @@
|
||||
bugfixes:
|
||||
- Update ActionBase._low_level_execute_command to honor executable (https://github.com/ansible/ansible/issues/68054)
|
@ -0,0 +1,6 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
set -ux
|
||||
export ANSIBLE_BECOME_ALLOW_SAME_USER=1
|
||||
export ANSIBLE_ROLES_PATH=../
|
||||
ansible-playbook -i ../../inventory runme.yml -e "output_dir=${OUTPUT_DIR}" -v "$@"
|
@ -0,0 +1,4 @@
|
||||
- hosts: testhost
|
||||
gather_facts: no
|
||||
roles:
|
||||
- { role: raw }
|
Loading…
Reference in New Issue