matrix-docker-ansible-deploy/roles/matrix-dynamic-dns/tasks/platform/debian.yml

18 lines
373 B
YAML
Raw Normal View History

2020-10-13 23:18:38 +00:00
---
- name: Ensure ddclient is installed
apt:
name: ddclient
state: present
update_cache: true
become: true
when: "run_setup|bool and matrix_dynamic_dns_enabled|bool"
- name: Ensure ddclient is uninstalled
apt:
name: ddclient
state: absent
update_cache: true
become: true
when: "run_setup|bool and not matrix_dynamic_dns_enabled|bool"