Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tjanez/ansible-using_notify_with_include_bug
Ansible: A minimal example to reproduce the "Using notify with an include statement silently fails" bug
https://github.com/tjanez/ansible-using_notify_with_include_bug
Last synced: about 1 month ago
JSON representation
Ansible: A minimal example to reproduce the "Using notify with an include statement silently fails" bug
- Host: GitHub
- URL: https://github.com/tjanez/ansible-using_notify_with_include_bug
- Owner: tjanez
- License: gpl-3.0
- Created: 2014-09-24T14:06:56.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2014-09-24T14:12:12.000Z (about 10 years ago)
- Last Synced: 2024-10-12T12:17:37.914Z (2 months ago)
- Homepage:
- Size: 125 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## A minimal example to reproduce the "Using `notify` with an `include` statement silently fails" bug
### Usage:
ansible-playbook -i , test.yml
### Expected results:
[tadej@tlinux64 Bug reproducers]$ ansible-playbook -i salomon, test.yml
PLAY [all] ********************************************************************
GATHERING FACTS ***************************************************************
ok: [salomon]TASK: [task in foo.yml] *******************************************************
changed: [salomon] => {
"changed": true,
"msg": "This is a testing task"
}NOTIFIED: [test handler] ******************************************************
ok: [salomon] => {
"msg": "SUCCESS The test handler was run!"
}PLAY RECAP ********************************************************************
salomon : ok=3 changed=1 unreachable=0 failed=0### Actual results:
[tadej@tlinux64 Bug reproducers]$ ansible-playbook -i salomon, test.yml
PLAY [all] ********************************************************************
GATHERING FACTS ***************************************************************
ok: [salomon]TASK: [task in foo.yml] *******************************************************
changed: [salomon] => {
"changed": true,
"msg": "This is a testing task"
}PLAY RECAP ********************************************************************
salomon : ok=2 changed=1 unreachable=0 failed=0