blob: 3379f98bd0a463f33bfe4585099d3f22fdaacb11 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
- 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
|