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

34 lines
896 B
YAML
Raw Normal View History

2020-10-13 23:18:38 +00:00
---
2020-10-17 04:21:58 +00:00
- import_tasks: "{{ role_path }}/tasks/platform/main.yml"
2020-10-13 23:18:38 +00:00
- name: Check existence of ddclient.service
stat:
path: "{{ systemd_path }}/ddclient.service"
register: matrix_dynamic_dns_ddclient_service_stat
- name: Ensure ddclient.service is stopped
service:
name: dynamic-dns
state: stopped
daemon_reload: yes
when: "matrix_dynamic_dns_ddclient_service_stat.stat.exists"
- name: Ensure ddclient.service doesn't exist
file:
path: "{{ systemd_path }}/ddclient.service"
state: absent
when: "matrix_dynamic_dns_ddclient_service_stat.stat.exists"
- name: Ensure ddclient configuration files don't exist
file:
path:
- "etc/ddclient.conf"
- "etc/default/ddclient"
state: absent
2020-10-17 04:21:58 +00:00
- name: Ensure systemd reloaded after ddclient.service removal
service:
daemon_reload: yes
when: "matrix_dynamic_dns_ddclient_service_stat.stat.exists"