dashboard.yml 393 B

12345678910111213141516
  1. ---
  2. # tasks/CentOS/dashboard.yml: Deployment of the Uchiwa dashboard
  3. # Specific to CentOS
  4. - include_vars: "{{ ansible_distribution }}.yml"
  5. - name: Ensure Uchiwa is installed
  6. yum:
  7. name: uchiwa
  8. state: present
  9. - name: Deploy Uchiwa config
  10. template:
  11. src: uchiwa_config.json.j2
  12. dest: "{{ sensu_config_path }}/uchiwa.json"
  13. notify: restart uchiwa service