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

18 řádky
373 B

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