From 5c389255f3bd62218cdee3ba54f4616b1dcaafb6 Mon Sep 17 00:00:00 2001 From: Marc Cataford Date: Sun, 29 Sep 2024 13:14:44 -0400 Subject: [PATCH] feat: add podman to system packages --- roles/system-packages/tasks/main.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/roles/system-packages/tasks/main.yml b/roles/system-packages/tasks/main.yml index 9022c47..3e0d554 100644 --- a/roles/system-packages/tasks/main.yml +++ b/roles/system-packages/tasks/main.yml @@ -5,17 +5,25 @@ update_cache: true upgrade: "yes" - name: Install terminal & shell + become: true apt: pkg: - zsh - tmux - name: Install CLI tooling + become: true apt: pkg: - shellcheck - gh - name: Install DB-related tooling + become: true apt: pkg: - postgresql - postgresql-contrib +- name: Install Podman + become: true + apt: + pkg: + - podman