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

24 lines
651 B
YAML
Raw Normal View History

---
2022-07-18 08:22:05 +00:00
- ansible.builtin.import_tasks: "{{ role_path }}/tasks/init.yml"
2020-10-13 23:18:38 +00:00
tags:
- always
2022-07-18 08:22:05 +00:00
- ansible.builtin.import_tasks: "{{ role_path }}/tasks/validate_config.yml"
when: "run_setup | bool and matrix_dynamic_dns_enabled | bool"
2020-10-13 23:18:38 +00:00
tags:
- setup-all
- setup-dynamic-dns
2022-07-18 08:22:05 +00:00
- ansible.builtin.import_tasks: "{{ role_path }}/tasks/install.yml"
when: "run_setup | bool and matrix_dynamic_dns_enabled | bool"
2020-10-13 23:18:38 +00:00
tags:
- setup-all
- setup-dynamic-dns
2022-07-18 08:22:05 +00:00
- ansible.builtin.import_tasks: "{{ role_path }}/tasks/uninstall.yml"
when: "run_setup | bool and not matrix_dynamic_dns_enabled | bool"
2020-10-13 23:18:38 +00:00
tags:
- setup-all
- setup-dynamic-dns