mirror of
https://github.com/roles-ansible/role-grafana-kiosk.git
synced 2024-08-16 10:09:49 +02:00
commit
835d5cc8d1
5 changed files with 7 additions and 3 deletions
1
.github/workflows/ansible-debian-buster.yml
vendored
1
.github/workflows/ansible-debian-buster.yml
vendored
|
@ -14,3 +14,4 @@ jobs:
|
|||
uses: roles-ansible/check-ansible-debian-buster-action@master
|
||||
with:
|
||||
targets: "./"
|
||||
vars: "grafana_kiosk:\n manage_systemd: false"
|
||||
|
|
3
LICENSE
3
LICENSE
|
@ -1,6 +1,7 @@
|
|||
MIT License
|
||||
|
||||
Copyright (c) 2020 L3D
|
||||
Copyright (c) 2020 L3D <l3d@c3woc.de>
|
||||
Copyright (c) 2020 L3D and and contributors
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
|
|
|
@ -22,7 +22,7 @@ grafana_kiosk:
|
|||
playlist: false
|
||||
URL: https://play.grafana.org
|
||||
ignore_certificate_errors: false
|
||||
enable_systemd: true
|
||||
manage_systemd: true
|
||||
display: DISPLAY=:0
|
||||
lightdm_autologin: false
|
||||
|
||||
|
|
|
@ -5,4 +5,5 @@
|
|||
state: restarted
|
||||
name: grafana-kiosk.service
|
||||
daemon_reload: yes
|
||||
enabled: "{{ grafana_kiosk.enable_systemd | bool }}"
|
||||
enabled: true
|
||||
when: grafana_kiosk.manage_systemd | bool
|
||||
|
|
|
@ -22,6 +22,7 @@
|
|||
mode: 0664
|
||||
owner: root
|
||||
group: root
|
||||
when: grafana_kiosk.manage_systemd | bool
|
||||
notify: systemctl restart grafana-kiosk.service
|
||||
|
||||
- name: deploy env vars
|
||||
|
|
Loading…
Reference in a new issue