mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2024-11-09 22:41:03 +01:00
added draft
This commit is contained in:
parent
6184d4845d
commit
02e1cab5cf
@ -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
5
playbook.yml
Normal file
@ -0,0 +1,5 @@
|
||||
- name: general host setup
|
||||
hosts: all
|
||||
become: true
|
||||
roles:
|
||||
- native-pacman-update
|
4
roles/native-pacman-update/tasks/main.yml
Normal file
4
roles/native-pacman-update/tasks/main.yml
Normal file
@ -0,0 +1,4 @@
|
||||
- name: update pacman
|
||||
pacman:
|
||||
update_cache: yes
|
||||
upgrade: yes
|
Loading…
Reference in New Issue
Block a user