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/lightdm.yml

17 lines
473 B
YAML
Raw Normal View History

2020-07-02 13:58:43 +02:00
---
- name: set autologin user to '{{ grafana_kiosk.user }}'
become: true
lineinfile:
path: /etc/lightdm/lightdm.conf
regexp: '^autologin-user='
insertafter: '^#autologin-user='
line: "autologin-user={{ grafana_kiosk.user }}"
- name: set autologin user timeout to 0
become: true
lineinfile:
path: /etc/lightdm/lightdm.conf
regexp: '^autologin-user-timeout='
insertafter: '^#autologin-user-timeout='
line: "autologin-user-timeout=0"