I wish to use a handler called Networking to call multiple, other handlers. I am currently doing it this way, but I am wondering if there was a more graceful way?
`
- name: Networking
command: echo
changed_when: true
notify: - 6 network restart
- 7 network restart
- 7 NetworkManager restart
`
ie (the following wont work, but conveys my thought):
`
- name: Networking
changed_when: true
notify: - 6 network restart
- 7 network restart
- 7 NetworkManager restart
`