You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ansible/test/integration/targets/package_facts/test_warning_unusable.yml

13 lines
312 B
YAML

- hosts: all
tasks:
- name: Check for apk
ansible.builtin.command: apk info
ignore_errors: true
register: apk_exists
- name: Elicit a warning about the missing binary
ansible.builtin.package_facts:
manager: apk
when: apk_exists is failed
failed_when: false