1
0
Fork 0
mirror of https://github.com/roles-ansible/role-grafana-kiosk.git synced 2024-08-16 10:09:49 +02:00
role-grafana-kiosk/tasks/main.yml

18 lines
432 B
YAML
Raw Normal View History

2020-06-30 14:01:09 +02:00
---
- name: combine grafana_kiosk configuration
set_fact:
grafana_kiosk: "{{ _grafana_kiosk|combine(grafana_kiosk, recursive=True) }}"
- include_tasks: versioncheck.yml
2020-07-02 13:58:43 +02:00
when: submodules_versioncheck | bool
2020-06-30 14:01:09 +02:00
2020-06-30 17:07:25 +02:00
- include_tasks: packages.yml
when: grafana_kiosk.install_requirements | bool
2020-06-30 14:01:09 +02:00
2020-06-30 17:07:25 +02:00
- include_tasks: install.yml
2020-06-30 17:30:36 +02:00
- include_tasks: config.yml
2020-07-02 13:58:43 +02:00
- include_tasks: lightdm.yml
when: grafana_kiosk.lightdm_autologin | bool