Matrix Docker Ansible eploy
Nelze vybrat více než 25 témat
Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
|
- ---
-
- - name: Ensure ddclient is installed
- apt:
- name: ddclient
- state: present
- update_cache: true
- become: true
- when: "run_setup|bool and matrix_dynamic_dns_enabled|bool"
-
- - name: Ensure ddclient is uninstalled
- apt:
- name: ddclient
- state: absent
- update_cache: true
- become: true
- when: "run_setup|bool and not matrix_dynamic_dns_enabled|bool"
|