3
0
mirror of https://github.com/spantaleev/matrix-docker-ansible-deploy.git synced 2026-01-17 21:35:19 +00:00

Added role for dynamic dns

This commit is contained in:
Scott Crossen
2020-10-13 16:18:38 -07:00
parent 5abd511368
commit 1f988969a5
15 changed files with 222 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
---
- 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"