env/roles/system-packages/tasks/main.yml

22 lines
346 B
YAML
Raw Normal View History

2024-09-29 03:31:23 +00:00
---
- name: Ensure system up-to-date
become: true
apt:
update_cache: true
upgrade: "yes"
- name: Install terminal & shell
apt:
pkg:
- zsh
- tmux
- name: Install CLI tooling
apt:
pkg:
- shellcheck
- gh
- name: Install DB-related tooling
apt:
pkg:
- postgresql
- postgresql-contrib