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 yum packages are installed
- yum:
- name: epel-release
- state: latest
- update_cache: yes
- when: "run_setup|bool and matrix_dynamic_dns_enabled|bool"
-
- - name: Ensure ddclient is installed
- yum:
- name: ddclient
- state: latest
- when: "run_setup|bool and matrix_dynamic_dns_enabled|bool"
-
- - name: Ensure ddclient is uninstalled
- yum:
- name:
- - ddclient
- - epel-release
- state: absent
- when: "run_setup|bool and not matrix_dynamic_dns_enabled|bool"
|