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ů.
 
 

16 řádky
342 B

  1. ---
  2. - name: Ensure ddclient is installed
  3. pacman:
  4. name: ddclient
  5. state: latest
  6. when: "run_setup|bool and matrix_dynamic_dns_enabled|bool"
  7. - name: Ensure ddclient is uninstalled
  8. pacman:
  9. name: ddclient
  10. state: absent
  11. update_cache: true
  12. become: true
  13. when: "run_setup|bool and not matrix_dynamic_dns_enabled|bool"