feat: add podman to system packages
This commit is contained in:
parent
da9f5c19f3
commit
5c389255f3
1 changed files with 8 additions and 0 deletions
|
@ -5,17 +5,25 @@
|
||||||
update_cache: true
|
update_cache: true
|
||||||
upgrade: "yes"
|
upgrade: "yes"
|
||||||
- name: Install terminal & shell
|
- name: Install terminal & shell
|
||||||
|
become: true
|
||||||
apt:
|
apt:
|
||||||
pkg:
|
pkg:
|
||||||
- zsh
|
- zsh
|
||||||
- tmux
|
- tmux
|
||||||
- name: Install CLI tooling
|
- name: Install CLI tooling
|
||||||
|
become: true
|
||||||
apt:
|
apt:
|
||||||
pkg:
|
pkg:
|
||||||
- shellcheck
|
- shellcheck
|
||||||
- gh
|
- gh
|
||||||
- name: Install DB-related tooling
|
- name: Install DB-related tooling
|
||||||
|
become: true
|
||||||
apt:
|
apt:
|
||||||
pkg:
|
pkg:
|
||||||
- postgresql
|
- postgresql
|
||||||
- postgresql-contrib
|
- postgresql-contrib
|
||||||
|
- name: Install Podman
|
||||||
|
become: true
|
||||||
|
apt:
|
||||||
|
pkg:
|
||||||
|
- podman
|
||||||
|
|
Loading…
Reference in a new issue