2018-05-31 18:24:15 +03:00
|
|
|
---
|
|
|
|
# This playbook deploys a kiosk-computer
|
|
|
|
|
|
|
|
- name: apply configuration to the machines
|
2018-06-09 19:48:41 +03:00
|
|
|
hosts: all
|
2018-05-31 18:24:15 +03:00
|
|
|
remote_user: ansible
|
|
|
|
become: yes
|
|
|
|
vars:
|
|
|
|
auto_user: debi
|
2018-06-07 23:51:55 +03:00
|
|
|
wifi_ssid: "YOUR SSID HERE"
|
|
|
|
wifi_passwd: "YOUR WIFI-PW HERE"
|
2018-06-09 19:48:41 +03:00
|
|
|
extra_pkgs:
|
2019-03-30 18:41:04 +03:00
|
|
|
- webext-privacy-badger
|
|
|
|
- webext-ublock-origin
|
2019-05-21 19:14:21 +03:00
|
|
|
extra_pkgs_bpo: [] # [ libreoffice ]
|
2018-06-07 23:51:55 +03:00
|
|
|
|
2018-05-31 18:24:15 +03:00
|
|
|
roles:
|
|
|
|
- up2date-debian
|
2019-10-26 09:15:16 +02:00
|
|
|
## Choose either gnome or KDE:
|
2018-05-31 18:24:15 +03:00
|
|
|
- gnome
|
2019-10-26 09:15:16 +02:00
|
|
|
#- kde
|
2018-05-31 18:24:15 +03:00
|
|
|
- kiosk
|