-
Notifications
You must be signed in to change notification settings - Fork 199
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ansible_mitogen: Fix --ask-become-pass, add test coverage
Previously f150387 fixed the priority of ansible_become_pass over ansible_become_password, but broke --ask-become-pass. Fixes #952.
- Loading branch information
Showing
9 changed files
with
61 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
- name: regression/become_test.yml | ||
hosts: test-targets:&linux_containers | ||
become: true | ||
become_user: mitogen__pw_required | ||
strategy: mitogen_linear | ||
tasks: | ||
- command: whoami | ||
changed_when: false | ||
check_mode: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
- name: regression/issue_952__ask_become_pass.yml | ||
hosts: test-targets[0]:&linux_containers | ||
gather_facts: false | ||
tags: | ||
- issue_952 | ||
tasks: | ||
- name: Test --ask-become-pass | ||
delegate_to: localhost | ||
expect: | ||
command: > | ||
ansible-playbook | ||
{% for inv in ansible_inventory_sources %} | ||
-i "{{ inv }}" | ||
{% endfor %} | ||
--ask-become-pass | ||
regression/become_test.yml | ||
chdir: ../ | ||
responses: | ||
'BECOME password:': pw_required_password | ||
changed_when: false | ||
check_mode: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters