19 lines
424 B
YAML
19 lines
424 B
YAML
---
|
|
- block:
|
|
- import_tasks: install.yml
|
|
when: not ddclient_containerized
|
|
- import_tasks: configure.yml
|
|
when: not ddclient_containerized
|
|
become: true
|
|
|
|
- block:
|
|
- import_tasks: docker.yml
|
|
when:
|
|
- ddclient_containerized
|
|
- ddclient_container_engine == "docker"
|
|
- import_tasks: podman.yml
|
|
when:
|
|
- ddclient_containerized
|
|
- ddclient_container_engine == "podman"
|
|
become: true
|