matrix-docker-ansible-deploy/roles/matrix-dynamic-dns/tasks/install_dhcp.yml
2020-10-16 21:26:58 -07:00

18 lines
484 B
YAML

---
- name: Ensure ddclient domain config exists
template:
src: "{{ role_path }}/templates/ddclient.conf.j2"
dest: "/etc/ddclient.conf"
mode: 0600
- name: Ensure ddclient client config exists
copy:
content: "run_dhclient=\"true\"\nrun_ipup=\"false\"\nrun_daemon=\"false\""
dest: "/etc/default/ddclient"
mode: 0600
owner: "{{ matrix_user_username }}"
group: "{{ matrix_user_groupname }}"
- import_tasks: "{{ role_path }}/tasks/platform/main.yml"