| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- ---
- # tasks/main.yml: "Master" playbook for the cmacrae.sensu role
- - include_vars: "{{ ansible_distribution }}.yml"
- - include: "{{ ansible_distribution }}/main.yml"
- tags: setup
- - include: redis.yml
- tags: redis
- when: redis_server
- and sensu_deploy_redis
- static: false
- - include: ssl.yml
- tags: ssl
- - include: rabbit.yml
- tags: rabbitmq
- when: rabbitmq_server
- and sensu_deploy_rabbitmq
- static: false
- - include: common.yml
- tags: common
- - include: server.yml
- tags: server
- when: sensu_master
- static: false
- - include: dashboard.yml
- tags: dashboard
- when: sensu_include_dashboard
- static: false
- - include: client.yml
- tags: client
- - include: plugins.yml
- tags: plugins
- when: sensu_include_plugins
- static: false
|