1
0
Fork 0

setup ansible boilerplate

This commit is contained in:
Massaki Archambault 2023-11-01 19:44:02 -04:00
parent 8133c6fdb9
commit e41fdf5434
4 changed files with 12 additions and 0 deletions

2
hosts Normal file
View File

@ -0,0 +1,2 @@
[raspberrypi-kiosk]
raspberry ansible_become=true ansible_become_method=sudo ansible_become_user=root

View File

10
site.yaml Normal file
View File

@ -0,0 +1,10 @@
- hosts: all
tasks:
- name: Perform system update
apt:
update_cache: true
upgrade: true
- hosts: all
roles:
- raspberrypi-kiosk