Changeset - 10d5a1e15c30
[Not reviewed]
0 5 0
Branko Majic (branko) - 6 years ago 2018-06-28 21:39:02
branko@majic.rs
MAR-129: Minor fixes after initial testsite run:

- Fix conditional for running handlers in the bootstrap role.
- Add dummy handlers that will suppress Ansible warnings about empty
handler includes.
5 files changed with 17 insertions and 1 deletions:
0 comments (0 inline, 0 general)
roles/bootstrap/handlers/main.yml
Show inline comments
 
---
 

	
 
- name: Dummy handler to suppress Ansible warnings
 
  debug:
 
    msg: "This is just a dummy task to suppress the Ansible warning about an empty include."
roles/bootstrap/tasks/main.yml
Show inline comments
 
@@ -38,6 +38,6 @@
 

	
 
- name: Explicitly run all handlers
 
  include: ../handlers/main.yml
 
  when: "handlers | default(False) | bool() : :  True"
 
  when: "handlers | default(False) | bool() == True"
 
  tags:
 
    - handlers
roles/database/handlers/main.yml
Show inline comments
 
---
 

	
 
- name: Dummy handler to suppress Ansible warnings
 
  debug:
 
    msg: "This is just a dummy task to suppress the Ansible warning about an empty include."
roles/php_website/handlers/main.yml
Show inline comments
 
---
 

	
 
- name: Dummy handler to suppress Ansible warnings
 
  debug:
 
    msg: "This is just a dummy task to suppress the Ansible warning about an empty include."
roles/preseed/handlers/main.yml
Show inline comments
 
---
 

	
 
- name: Dummy handler to suppress Ansible warnings
 
  debug:
 
    msg: "This is just a dummy task to suppress the Ansible warning about an empty include."
0 comments (0 inline, 0 general)