Ansible/roles/sensu.sensu/tasks/dashboard.yml
James Tombleson b7facd7394 Role Adjustments
Added Sensu
Moved default role downloads to ./roles
Added unattended-upgrades
2019-04-29 07:08:11 -07:00

13 lines
449 B
YAML

---
# tasks/dashboard.yml: Deployment of the Uchiwa dashboard
- name: Include ansible_distribution vars
include_tasks: "{{ role_path }}/tasks/{{ ansible_distribution }}/dashboard.yml"
tags: dashboard
- name: Ensure Uchiwa/Sensu Enterprise Dashboard server service is running
tags: dashboard
service:
name: "{{ uchiwa_service_name if not se_enterprise else sensu_enterprise_dashboard_service_name }}"
state: started
enabled: yes