main.yml 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. ---
  2. # Convert old params to new params
  3. - set_fact:
  4. repo_files:
  5. - id: "{{ repo_tag }}"
  6. repos:
  7. - id: "{{ repo_tag }}"
  8. name: "{{ repo_name }}"
  9. baseurl: "{{ repo_baseurl }}"
  10. enabled: "{{ repo_enabled }}"
  11. gpgcheck: "{{ repo_gpg_check | default(repo_gpgcheck) }}"
  12. sslverify: "{{ repo_sslverify | default(None) }}"
  13. sslclientcert: "{{ repo_sslclientcert | default(None) }}"
  14. sslclientkey: "{{ repo_sslclientkey | default(None) }}"
  15. gpgkey: "{{ repo_gpgkey | default(None) }}"
  16. when: repo_files is not defined
  17. - name: Verify repo_files is a list
  18. assert:
  19. that:
  20. - repo_files is iterable and repo_files is not string and repo_files is not mapping
  21. - name: Verify repo_files items have an id and a repos list
  22. assert:
  23. that:
  24. - item is mapping
  25. - "'id' in item"
  26. - "'repos' in item"
  27. - item.repos is iterable and item.repos is not string and item.repos is not mapping
  28. with_items: repo_files
  29. - name: Verify that repo_files.repos have the required keys
  30. assert:
  31. that:
  32. - item.1 is mapping
  33. - "'id' in item.1"
  34. - "'name' in item.1"
  35. - "'baseurl' in item.1"
  36. with_subelements:
  37. - repo_files
  38. - repos
  39. - name: Installing yum-repo template
  40. template:
  41. src: yumrepo.j2
  42. dest: /etc/yum.repos.d/{{ item.id }}.repo
  43. with_items: repo_files
  44. when: not is_atomic