removed Podman post-installation handlers as containers will no longer be managed via Ansible

This commit is contained in:
2025-12-07 21:35:53 -05:00
parent cb69a9b430
commit 40bbe62203

View File

@@ -1,13 +0,0 @@
# SPDX-License-Identifier: MIT-0
---
# handlers file for bootstrap
- name: Pull podman images
listen: podman
block:
- name: Pull container images via podman
containers.podman.podman_image:
name: "{{ item.value['name'] }}"
tag: "{{ item.value['tag'] | default('latest') }}"
state: present
notify: "{{ item.key }}"
loop: "{{ lookup('ansible.builtin.dict', software.containers) }}"