ansible-role-nginx/molecule/uninstall_plus/verify.yml

12 lines
253 B
YAML
Raw Normal View History

---
- name: Verify
hosts: all
tasks:
- name: Check if NGINX is installed
package:
name: nginx-plus
state: absent
check_mode: true
register: install
failed_when: (install is changed) or (install is failed)