-
Notifications
You must be signed in to change notification settings - Fork 25
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 #31 from RedHatSatellite/rel212
release 2.1.2
- Loading branch information
Showing
73 changed files
with
4,633 additions
and
4,502 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -32,6 +32,7 @@ authors: | |
- "Josh Swanson <[email protected]>" | ||
- "Kirill Shirinkin <[email protected]>" | ||
- "Lester Claudio <[email protected]>" | ||
- "Lukáš Zapletal <[email protected]>" | ||
- "Manisha Singhal <[email protected]>" | ||
- "Manuel Bonk <[email protected]>" | ||
- "Marcelo Moreira de Mello <[email protected]>" | ||
|
@@ -66,7 +67,7 @@ authors: | |
- "metalcated <[email protected]>" | ||
- "russianguppie <[email protected]>" | ||
- "willtome <[email protected]>" | ||
version: "2.1.1" | ||
version: "2.1.2" | ||
license: | ||
- "GPL-3.0-or-later" | ||
tags: | ||
|
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,4 @@ | ||
[local] | ||
testhost ansible_connection=local ansible_python_interpreter="{{ ansible_playbook_python }}" | ||
testhostA ansible_connection=local ansible_python_interpreter="{{ ansible_playbook_python }}" | ||
testhostB ansible_connection=local ansible_python_interpreter="{{ ansible_playbook_python }}" |
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,71 @@ | ||
--- | ||
- hosts: testhost | ||
gather_facts: no | ||
vars: | ||
foo: foo bar | ||
tasks: | ||
- name: Changed task | ||
command: echo foo | ||
changed_when: true | ||
notify: test handlers | ||
|
||
- name: Ok task | ||
command: echo foo | ||
changed_when: false | ||
|
||
- name: Failed task | ||
fail: | ||
msg: no reason | ||
ignore_errors: yes | ||
|
||
- name: Skipped task | ||
command: echo foo | ||
when: false | ||
|
||
- name: Task with var in name ({{ foo }}) | ||
command: echo foo | ||
|
||
- name: Loop task | ||
command: echo foo | ||
loop: | ||
- 1 | ||
- 2 | ||
- 3 | ||
loop_control: | ||
label: foo-{{ item }} | ||
|
||
handlers: | ||
- name: Test handler 1 | ||
command: echo foo | ||
listen: test handlers | ||
|
||
- name: Test handler 2 | ||
command: echo foo | ||
changed_when: false | ||
listen: test handlers | ||
|
||
- name: Test handler 3 | ||
command: echo foo | ||
listen: test handlers | ||
|
||
- hosts: | ||
- testhostA | ||
- testhostB | ||
gather_facts: no | ||
tasks: | ||
- name: Changed task | ||
command: echo foo | ||
changed_when: true | ||
|
||
- name: Ok task | ||
command: echo foo | ||
changed_when: false | ||
|
||
- name: Failed task | ||
fail: | ||
msg: no reason | ||
ignore_errors: yes | ||
|
||
- name: Skipped task | ||
command: echo foo | ||
when: false |
Oops, something went wrong.