22 lines
346 B
YAML
22 lines
346 B
YAML
|
---
|
||
|
- 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
|