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:
|
|
|
|
- unattended-upgrades
|
2019-03-30 18:41:04 +03:00
|
|
|
- webext-privacy-badger
|
|
|
|
- webext-ublock-origin
|
2018-06-09 19:48:41 +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
|
|
|
|
- gnome
|
|
|
|
- kiosk
|