add_custom_repositories.yml 745 B

1234567891011121314151617181920
  1. ---
  2. - name: Copy custom repository secrets
  3. copy:
  4. src: "{{ files_dir }}/{{ item.1.sslclientcert }}"
  5. dest: /var/lib/yum/custom_secret_{{ item.0 }}_cert
  6. when: item.1.sslclientcert | default(false)
  7. with_indexed_items: "{{ provision_custom_repositories }}"
  8. - name: Copy custom repository secrets
  9. copy:
  10. src: "{{ files_dir }}/{{ item.1.sslclientkey }}"
  11. dest: /var/lib/yum/custom_secret_{{ item.0 }}_key
  12. when: item.1.sslclientkey | default(false)
  13. with_indexed_items: "{{ provision_custom_repositories }}"
  14. - name: Create any custom repos that are defined
  15. template:
  16. src: yum_repo.j2
  17. dest: /etc/yum.repos.d/provision_custom_repositories.repo
  18. when: provision_custom_repositories | length > 0
  19. notify: refresh cache