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.
 
 

18 righe
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"