Files
ansible-role-repo-raven/molecule/default/verify.yml

20 lines
400 B
YAML
Raw Normal View History

2021-06-23 12:12:07 +12:00
---
# This is an example playbook to execute Ansible tests.
- name: Verify
hosts: all
gather_facts: false
tasks:
2021-06-23 13:52:08 +12:00
- name: install httpd-itk
dnf:
name: httpd-itk
update_cache: true
state: installed
- name: Gather the package facts
package_facts:
manager: auto
- name: Is httpd-itk installed?
2021-06-23 12:12:07 +12:00
assert:
2021-06-23 13:52:08 +12:00
that: "'httpd-itk' in ansible_facts.packages"