mirror of
https://github.com/ansible-collections/ansible.posix.git
synced 2026-01-11 23:25:28 +01:00
Skip AIX on at
This commit is contained in:
parent
81fca40521
commit
b519bde03f
3 changed files with 4 additions and 1 deletions
|
|
@ -20,10 +20,11 @@
|
|||
msg: >-
|
||||
Skipping {{ ansible_distribution }} as ansible-base does not contain
|
||||
the packaging module ({{ ansible_pkg_mgr }}) for this operating system
|
||||
when: ansible_pkg_mgr not in ['apt', 'dnf', 'yum'] or ansible_distribution in ['AIX']
|
||||
|
||||
- name: stop executing on hosts that we don't have package manager modules for
|
||||
meta: end_host
|
||||
when: ansible_pkg_mgr not in ['apt', 'dnf', 'yum']
|
||||
when: ansible_pkg_mgr not in ['apt', 'dnf', 'yum'] or ansible_distribution in ['AIX']
|
||||
|
||||
- set_fact: output_dir_test={{output_dir}}/at
|
||||
|
||||
|
|
|
|||
|
|
@ -2,6 +2,7 @@
|
|||
msg: >-
|
||||
Skipping {{ ansible_distribution }} as ansible-base does not contain
|
||||
the packaging module ({{ ansible_pkg_mgr }}) for this operating system
|
||||
when: ansible_pkg_mgr not in ['apt', 'dnf', 'yum']
|
||||
|
||||
- name: stop executing on hosts that we don't have package manager modules for
|
||||
meta: end_host
|
||||
|
|
|
|||
|
|
@ -2,6 +2,7 @@
|
|||
msg: >-
|
||||
Skipping {{ ansible_distribution }} as ansible-base does not contain
|
||||
the packaging module ({{ ansible_pkg_mgr }}) for this operating system
|
||||
when: ansible_pkg_mgr not in ['apt', 'dnf', 'yum']
|
||||
|
||||
- name: stop executing on hosts that we don't have package manager modules for
|
||||
meta: end_host
|
||||
|
|
|
|||
Loading…
Reference in a new issue