Matrix Docker Ansible eploy
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 

18 wiersze
375 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"