aboutsummaryrefslogtreecommitdiff
path: root/roles/host/tasks/packages.yml
diff options
context:
space:
mode:
authorspmfox <spmfox@foxwd.com>2025-04-15 15:00:52 -0400
committerspmfox <spmfox@foxwd.com>2025-04-15 15:00:52 -0400
commit33af7561882425e6e1a2d3ed56e46f2c5a10033f (patch)
treecdac4a3e31162c5f75d7517d14c246289a34edf4 /roles/host/tasks/packages.yml
parent422bc9712219fdd4d4719fc98218c76c2a7e86bc (diff)
support for remote jobs, support for more host config, quadlet logic tweaking
Diffstat (limited to 'roles/host/tasks/packages.yml')
-rw-r--r--roles/host/tasks/packages.yml9
1 files changed, 8 insertions, 1 deletions
diff --git a/roles/host/tasks/packages.yml b/roles/host/tasks/packages.yml
index df78985..c7c21cd 100644
--- a/roles/host/tasks/packages.yml
+++ b/roles/host/tasks/packages.yml
@@ -1,6 +1,13 @@
-- name: Install systemd-container and podman
+- name: Install systemd-container, podman
ansible.builtin.package:
name:
- "systemd-container"
- "podman"
state: present
+
+- name: Manage additional packages
+ ansible.builtin.package:
+ name: "{{ item.name }}"
+ state: "{{ item.state }}"
+ loop: "{{ host_packages }}"
+ when: host_packages is defined