added draft

This commit is contained in:
Kevin Veen-Birkenbach 2021-11-12 16:23:58 +01:00
parent 6184d4845d
commit 02e1cab5cf
3 changed files with 16 additions and 2 deletions

View File

@ -1,2 +1,7 @@
# client-playbook
Playbook to setup clients
# Client Playbook
Playbook to setup Manjaro GNOME clients.
# Todo
- Add Template folder
# See
- https://www.middlewareinventory.com/blog/run-ansible-playbook-locally/
- https://stackoverflow.com/questions/30533372/run-an-ansible-task-only-when-the-hostname-contains-a-string

5
playbook.yml Normal file
View File

@ -0,0 +1,5 @@
- name: general host setup
hosts: all
become: true
roles:
- native-pacman-update

View File

@ -0,0 +1,4 @@
- name: update pacman
pacman:
update_cache: yes
upgrade: yes