-
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.
Merge pull request #1164 from moreati/release-v0.3.14
Release v0.3.14
- Loading branch information
Showing
29 changed files
with
271 additions
and
167 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
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
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,14 @@ | ||
- name: integration/become/templated_by_inv.yml | ||
hosts: tt_become_by_inv | ||
gather_facts: false | ||
tasks: | ||
- meta: reset_connection | ||
- name: Templated become in inventory | ||
command: | ||
cmd: whoami | ||
changed_when: false | ||
check_mode: false | ||
register: become_templated_by_inv_whoami | ||
failed_when: | ||
- become_templated_by_inv_whoami is failed | ||
or become_templated_by_inv_whoami.stdout != 'root' |
16 changes: 16 additions & 0 deletions
16
tests/ansible/integration/become/templated_by_play_keywords.yml
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,16 @@ | ||
- name: integration/become/templated_by_play_keywords.yml | ||
hosts: tt_become_bare | ||
gather_facts: false | ||
become: true | ||
become_user: "{{ 'root' | trim }}" | ||
tasks: | ||
- meta: reset_connection | ||
- name: Templated become by play keywords | ||
command: | ||
cmd: whoami | ||
changed_when: false | ||
check_mode: false | ||
register: become_templated_by_play_keywords_whoami | ||
failed_when: | ||
- become_templated_by_play_keywords_whoami is failed | ||
or become_templated_by_play_keywords_whoami.stdout != 'root' |
16 changes: 16 additions & 0 deletions
16
tests/ansible/integration/become/templated_by_play_vars.yml
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,16 @@ | ||
- name: integration/become/templated_by_play_vars.yml | ||
hosts: tt_become_bare | ||
gather_facts: false | ||
vars: | ||
ansible_become: true | ||
ansible_become_user: "{{ 'root' | trim }}" | ||
tasks: | ||
- name: Templated become by play vars | ||
command: | ||
cmd: whoami | ||
changed_when: false | ||
check_mode: false | ||
register: become_templated_by_play_vars_whoami | ||
failed_when: | ||
- become_templated_by_play_vars_whoami is failed | ||
or become_templated_by_play_vars_whoami.stdout != 'root' |
Oops, something went wrong.