Added containerization

This commit is contained in:
Scott Crossen
2020-10-16 21:21:58 -07:00
parent 53bc7a77e1
commit 51cca4c312
12 changed files with 211 additions and 40 deletions

View File

@ -8,20 +8,26 @@
- setup-all
- setup-dynamic-dns
- import_tasks: "{{ role_path }}/tasks/install.yml"
when: "run_setup|bool and matrix_dynamic_dns_enabled|bool"
- import_tasks: "{{ role_path }}/tasks/install_dhcp.yml"
when: "run_setup|bool and matrix_dynamic_dns_enabled|bool and matrix_dynamic_dns_mode == 'dhcp'"
tags:
- setup-all
- setup-dynamic-dns
- import_tasks: "{{ role_path }}/tasks/platform/main.yml"
when: "run_setup|bool"
- import_tasks: "{{ role_path }}/tasks/uninstall_dhcp.yml"
when: "run_setup|bool and not matrix_dynamic_dns_enabled|bool and matrix_dynamic_dns_mode == 'dhcp'"
tags:
- setup-all
- setup-dynamic-dns
- import_tasks: "{{ role_path }}/tasks/uninstall.yml"
when: "run_setup|bool and not matrix_dynamic_dns_enabled|bool"
- import_tasks: "{{ role_path }}/tasks/install_daemon.yml"
when: "run_setup|bool and matrix_dynamic_dns_enabled|bool and matrix_dynamic_dns_mode == 'daemon'"
tags:
- setup-all
- setup-dynamic-dns
- import_tasks: "{{ role_path }}/tasks/uninstall_daemon.yml"
when: "run_setup|bool and not matrix_dynamic_dns_enabled|bool and matrix_dynamic_dns_mode == 'daemon'"
tags:
- setup-all
- setup-dynamic-dns