mirror of
https://github.com/roles-ansible/role-grafana-kiosk.git
synced 2024-08-16 10:09:49 +02:00
change default vars to fix github actions
This commit is contained in:
parent
5475d7d178
commit
2968dcf483
3 changed files with 8 additions and 6 deletions
|
@ -1,4 +1,6 @@
|
||||||
# ansible role grafana-kiosk
|
[![Ansible Lint check](https://github.com/DO1JLR/role-grafana-kiosk/workflows/Ansible%20Lint%20check/badge.svg)](https://github.com/DO1JLR/role-grafana-kiosk/actions?query=workflow%3A%22Ansible+Lint+check%22) [![Ansible check debian:buster](https://github.com/DO1JLR/role-grafana-kiosk/workflows/Ansible%20check%20debian:buster/badge.svg)](https://github.com/DO1JLR/role-grafana-kiosk/actions?query=workflow%3A%22Ansible+check+debian%3Abuster%22)
|
||||||
|
ansible role grafana-kiosk
|
||||||
|
=============================
|
||||||
Ansible role to deploy the grafana-kiosk from [github.com/grafana/grafana-kiosk](https://github.com/grafana/grafana-kiosk.git).
|
Ansible role to deploy the grafana-kiosk from [github.com/grafana/grafana-kiosk](https://github.com/grafana/grafana-kiosk.git).
|
||||||
|
|
||||||
Status
|
Status
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
---
|
---
|
||||||
# default variables
|
# default variables
|
||||||
grafana_kiosk:
|
grafana_kiosk:
|
||||||
user: pi
|
user: "{{ ansible_user }}"
|
||||||
git_release: 'v1.0.2'
|
git_release: 'v1.0.2'
|
||||||
git_url: 'https://github.com/grafana/grafana-kiosk'
|
git_url: 'https://github.com/grafana/grafana-kiosk'
|
||||||
install_requirements: true
|
install_requirements: true
|
||||||
|
@ -14,7 +14,7 @@ grafana_kiosk:
|
||||||
kiosk_mode: full
|
kiosk_mode: full
|
||||||
autofit: true
|
autofit: true
|
||||||
lxde: true
|
lxde: true
|
||||||
lxde_home: /home/pi
|
lxde_home: "/home/{{ ansible_user }}"
|
||||||
target:
|
target:
|
||||||
login_method: anon
|
login_method: anon
|
||||||
username: user
|
username: user
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
---
|
---
|
||||||
_grafana_kiosk:
|
_grafana_kiosk:
|
||||||
user: pi
|
user: "{{ ansible_user }}"
|
||||||
git_release: 'v1.0.2'
|
git_release: 'v1.0.2'
|
||||||
git_url: 'https://github.com/grafana/grafana-kiosk'
|
git_url: 'https://github.com/grafana/grafana-kiosk'
|
||||||
install_requirements: true
|
install_requirements: true
|
||||||
|
@ -13,7 +13,7 @@ _grafana_kiosk:
|
||||||
kiosk_mode: full
|
kiosk_mode: full
|
||||||
autofit: true
|
autofit: true
|
||||||
lxde: true
|
lxde: true
|
||||||
lxde_home: /home/pi
|
lxde_home: "/home/{{ ansible_user }}"
|
||||||
target:
|
target:
|
||||||
login_method: anon
|
login_method: anon
|
||||||
username: user
|
username: user
|
||||||
|
@ -32,5 +32,5 @@ _dl_matrix:
|
||||||
'armv6l': "grafana-kiosk.linux.armv6"
|
'armv6l': "grafana-kiosk.linux.armv6"
|
||||||
'armv5l': "grafana-kiosk.linux.armv5"
|
'armv5l': "grafana-kiosk.linux.armv5"
|
||||||
|
|
||||||
playbook_version_number: 15 # should be an integer
|
playbook_version_number: 17 # should be an integer
|
||||||
playbook_version_path: 'role-grafana-kiosk_roles-ansible_github.com.version' # unique string
|
playbook_version_path: 'role-grafana-kiosk_roles-ansible_github.com.version' # unique string
|
||||||
|
|
Loading…
Reference in a new issue