ansible-labs/040.Handlers/solution/tasks/uninstall_nginx.yml

7 lines
120 B
YAML
Raw Normal View History

2018-08-01 12:12:26 +02:00
- name: Ensure nginx is uninstalled
become: true
apk:
name: nginx
state: absent
# vim: set ft=yaml sw=2 et: