1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2026-03-21 20:59:10 +00:00
This commit is contained in:
Felix Fontein 2026-03-20 04:10:26 -04:00 committed by GitHub
commit c123bee8b4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 12 additions and 1 deletions

View file

@ -11,5 +11,4 @@ skip/osx # no iptables/netfilter (Linux specific)
skip/macos # no iptables/netfilter (Linux specific) skip/macos # no iptables/netfilter (Linux specific)
skip/aix # no iptables/netfilter (Linux specific) skip/aix # no iptables/netfilter (Linux specific)
skip/ubuntu22.04 # TODO there's a problem here!
skip/rhel10.0 # TODO there's a problem here! skip/rhel10.0 # TODO there's a problem here!

View file

@ -70,6 +70,10 @@
ansible_timeout: "{{ max_delay | default(300) }}" ansible_timeout: "{{ max_delay | default(300) }}"
rescue: rescue:
- name: Show result
debug:
var: iptables_state
- name: "explain expected failure" - name: "explain expected failure"
assert: assert:
that: that:
@ -140,6 +144,10 @@
poll: 0 poll: 0
rescue: rescue:
- name: Show result
debug:
var: iptables_state
- name: "explain expected failure" - name: "explain expected failure"
assert: assert:
that: that:
@ -174,6 +182,10 @@
ansible_timeout: "{{ max_delay | default(300) }}" ansible_timeout: "{{ max_delay | default(300) }}"
rescue: rescue:
- name: Show result
debug:
var: iptables_state
- name: "explain expected failure" - name: "explain expected failure"
assert: assert:
that: that: