Matrix Docker Ansible eploy
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

16 rivejä
340 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"