mirror of
https://github.com/mdlayher/homelab.git
synced 2024-12-15 17:50:54 +00:00
23 lines
307 B
YAML
23 lines
307 B
YAML
---
|
|
- name: update package lists
|
|
tags:
|
|
- base
|
|
apt:
|
|
update_cache: yes
|
|
|
|
- name: install common packages
|
|
tags:
|
|
- base
|
|
apt: pkg={{ item }} state=installed
|
|
with_items:
|
|
- byobu
|
|
- git
|
|
- htop
|
|
- jq
|
|
- tmux
|
|
|
|
- name: upgrade all packages
|
|
tags:
|
|
- base
|
|
apt:
|
|
upgrade: dist
|