Inital commit
Good start Added roles for setting up a user with zsh config and ssh keys Also installation and configuriation of some packages
This commit is contained in:
17
roles/update/main.yml
Normal file
17
roles/update/main.yml
Normal file
@@ -0,0 +1,17 @@
|
||||
- name: Update and upgrade pacman packages
|
||||
pacman:
|
||||
update_cache: yes
|
||||
upgrade: yes
|
||||
tags: pacman
|
||||
- name: Update and upgrade apk packages
|
||||
become: true
|
||||
apk:
|
||||
update_cache: yes
|
||||
upgrade: yes
|
||||
tags: apk
|
||||
- name: Update and upgrade apt packages
|
||||
become: true
|
||||
apt:
|
||||
update_cache: yes
|
||||
upgrade: yes
|
||||
tags: apt
|
Reference in New Issue
Block a user