2023-12-03 14:39:24 +00:00
|
|
|
---
|
|
|
|
# task/main file for docker_systemd_service
|
2023-12-04 22:10:02 +00:00
|
|
|
- name: "Import install.yml"
|
|
|
|
ansible.builtin.include_tasks: install.yml
|
|
|
|
when: docker_systemd_service_state != "absent"
|
2023-12-03 21:56:21 +00:00
|
|
|
|
2023-12-04 22:10:02 +00:00
|
|
|
- name: "Import uninstall.yml"
|
|
|
|
ansible.builtin.include_tasks: uninstall.yml
|
|
|
|
when: docker_systemd_service_state == "absent"
|