From 33af7561882425e6e1a2d3ed56e46f2c5a10033f Mon Sep 17 00:00:00 2001 From: spmfox Date: Tue, 15 Apr 2025 15:00:52 -0400 Subject: support for remote jobs, support for more host config, quadlet logic tweaking --- roles/host/tasks/packages.yml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'roles/host/tasks/packages.yml') 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 -- cgit