Files
deploy_home/ansible/roles/podman/handlers/main.yml
Bastian de Byl 61692b36a2 refactor: reorganize fluent-bit and geoip out of containers
- Move fluent-bit to common role (systemd service, not a container)
- Move geoip to podman/tasks/data/ (data prep, not a container)
- Remove debyltech tag from geoip (not a debyltech service)
- Fix check_mode for fetch subuid task to enable dry-run mode

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-28 12:34:43 -05:00

45 lines
887 B
YAML

---
- name: restorecon podman
become: true
ansible.builtin.command: |
restorecon -Frv {{ podman_home }}/.local/share/volumes
tags:
- podman
- selinux
# nginx handler removed - nginx infrastructure decommissioned
- name: restart firewalld
become: true
ansible.builtin.service:
name: firewalld
state: restarted
tags:
- firewall
- name: restart caddy
become: true
become_user: "{{ podman_user }}"
ansible.builtin.command: |
podman restart caddy
tags:
- caddy
- name: reload caddy
become: true
become_user: "{{ podman_user }}"
ansible.builtin.command: |
podman exec caddy caddy reload --config /etc/caddy/Caddyfile
tags:
- caddy
- caddy-config
- name: reload zomboid systemd
become: true
become_user: "{{ podman_user }}"
ansible.builtin.systemd:
daemon_reload: true
scope: user
tags:
- zomboid