mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-08 06:12:51 +00:00
Re-add support for setting shell from play context (#52139)
* Re-add support for setting shell from play context * Add integration tests * Add more tests for shell override * fix sanity issue
This commit is contained in:
committed by
Matt Martz
parent
b34d141eed
commit
847d089d6b
40
test/integration/targets/shell/tasks/main.yml
Normal file
40
test/integration/targets/shell/tasks/main.yml
Normal file
@@ -0,0 +1,40 @@
|
||||
---
|
||||
- name: get shell when shell_type is not defined
|
||||
test_shell:
|
||||
register: shell_type_default
|
||||
failed_when: shell_type_default.shell != 'sh'
|
||||
vars:
|
||||
ansible_connection: test_connection_default
|
||||
|
||||
- name: get shell when shell_type is not defined but is overridden
|
||||
test_shell:
|
||||
register: shell_type_default_override
|
||||
failed_when: shell_type_default_override.shell != item
|
||||
vars:
|
||||
ansible_connection: test_connection_default
|
||||
ansible_shell_type: '{{ item }}'
|
||||
with_items:
|
||||
- csh
|
||||
- fish
|
||||
- powershell
|
||||
- sh
|
||||
|
||||
- name: get shell when shell_type is defined
|
||||
test_shell:
|
||||
register: shell_type_defined
|
||||
failed_when: shell_type_defined.shell != 'powershell'
|
||||
vars:
|
||||
ansible_connection: test_connection_override
|
||||
|
||||
- name: get shell when shell_type is defined but is overridden
|
||||
test_shell:
|
||||
register: shell_type_defined_override
|
||||
failed_when: shell_type_defined_override.shell != item
|
||||
vars:
|
||||
ansible_connection: test_connection_default
|
||||
ansible_shell_type: '{{ item }}'
|
||||
with_items:
|
||||
- csh
|
||||
- fish
|
||||
- powershell
|
||||
- sh
|
||||
Reference in New Issue
Block a user