Matrix Docker Ansible eploy
Non puoi selezionare più di 25 argomenti
Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
|
- ---
-
- - 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"
|