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

18 lines
526 B
YAML
Raw Normal View History

2020-10-13 23:18:38 +00:00
---
- name: Fail if required settings not defined
fail:
msg: >-
You need to define a required configuration setting (`{{ item }}`).
when: "vars[item] == ''"
with_items:
- "matrix_domain"
- "matrix_dynamic_dns_provider"
- "matrix_dynamic_dns_mode"
- name: Fail if dynamic dns mode is incorrect
fail:
msg: >-
2020-10-17 04:21:58 +00:00
matrix_dynamic_dns_mode needs to be set to 'daemon' or 'dhcp'
2020-10-13 23:18:38 +00:00
when: "matrix_dynamic_dns_enabled and matrix_dynamic_dns_mode != 'daemon' and matrix_dynamic_dns_mode != 'dhcp'"