mirror of
https://github.com/ansible-collections/ansible.posix.git
synced 2026-01-12 15:45:20 +01:00
Compare commits
7 commits
830b3d49b2
...
28b11d5506
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
28b11d5506 | ||
|
|
719f7dfebf | ||
|
|
5cae7aa946 | ||
|
|
69dc514d2b | ||
|
|
1efe507ee7 | ||
|
|
f87aab8ce2 | ||
|
|
50fc1d1454 |
4 changed files with 10 additions and 4 deletions
|
|
@ -51,8 +51,8 @@ stages:
|
|||
parameters:
|
||||
testFormat: devel/linux/{0}/1
|
||||
targets:
|
||||
- name: Fedora 38
|
||||
test: fedora38
|
||||
- name: Fedora 39
|
||||
test: fedora39
|
||||
- name: Ubuntu 20.04
|
||||
test: ubuntu2004
|
||||
- name: Ubuntu 22.04
|
||||
|
|
|
|||
2
changelogs/fragments/504-firewalld_info-warning
Normal file
2
changelogs/fragments/504-firewalld_info-warning
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
minor_changes:
|
||||
- Only warn about ignored zones in firewalld_info, when there are zones ignored
|
||||
3
changelogs/fragments/510_ci_update.yml
Normal file
3
changelogs/fragments/510_ci_update.yml
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
---
|
||||
trivial:
|
||||
- "Replace Fedora 38 with 39 for container test(https://github.com/ansible-collections/ansible.posix/issues/509)."
|
||||
|
|
@ -349,8 +349,9 @@ def main():
|
|||
specified_zones = module.params['zones']
|
||||
collect_zones = list(set(specified_zones) & set(all_zones))
|
||||
ignore_zones = list(set(specified_zones) - set(collect_zones))
|
||||
warn.append(
|
||||
'Please note: zone:(%s) have been ignored in the gathering process.' % ','.join(ignore_zones))
|
||||
if ignore_zones:
|
||||
warn.append(
|
||||
'Please note: zone:(%s) have been ignored in the gathering process.' % ','.join(ignore_zones))
|
||||
else:
|
||||
collect_zones = get_all_zones(client)
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue