feat: add podman to system packages

This commit is contained in:
Marc 2024-09-29 13:14:44 -04:00
parent da9f5c19f3
commit 5c389255f3
Signed by: marc
GPG key ID: 048E042F22B5DC79

View file

@ -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