/home/zuul/src/opendev.org/opendev/system-config/playbooks/service-lists3.yaml
Execution
Date 08 Apr 2026 21:37:16 +0000
Duration 00:03:38.72
Controller bridge99.opendev.org
User root
Versions
Ansible 2.15.13
ara 1.7.5 / 1.7.5
Python 3.10.12
Summary
1 Hosts
161 Tasks
159 Results
1 Plays
21 Files
0 Records

File: /home/zuul/src/opendev.org/opendev/system-config/playbooks/roles/iptables/handlers/main.yaml

- name: Reload iptables (Debian)
  command: '{{ reload_command }}'
  when:
    - not ansible_facts.is_chroot
    - ansible_facts.os_family == 'Debian'
  listen: "Reload iptables"

- name: Reload iptables (RedHat)
  command: 'systemctl reload iptables'
  when:
    - not ansible_facts.is_chroot
    - ansible_facts.os_family == 'RedHat'
  listen: "Reload iptables"

- name: Reload ip6tables (Red Hat)
  command: 'systemctl reload ip6tables'
  when:
    - not ansible_facts.is_chroot
    - ansible_facts.os_family == 'RedHat'
  listen: "Reload iptables"