Skip AIX on at

This commit is contained in:
Matt Martz 2020-03-19 12:24:03 -05:00
parent 81fca40521
commit b519bde03f
3 changed files with 4 additions and 1 deletions

View file

@ -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

View file

@ -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

View file

@ -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