Ansible/roles/sensu.sensu/tasks/Debian/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

22 lines
467 B
YAML

---
# tasks/Debian/dashboard.yml: Deployment of the Uchiwa dashboard
# Specific to Debian
- name: Include ansible_distribution vars
include_vars:
file: "{{ ansible_distribution }}.yml"
tags: dashboard
- name: Install uchiwa
tags: dashboard
apt:
name: uchiwa
state: present
- name: Deploy Uchiwa config
tags: dashboard
template:
src: uchiwa_config.json.j2
dest: "{{ sensu_config_path }}/uchiwa.json"
notify: restart uchiwa service