main.yaml 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. ---
  2. - name: openshift_repos detect ostree
  3. stat:
  4. path: /run/ostree-booted
  5. register: ostree_booted
  6. - when: not ostree_booted.stat.exists
  7. block:
  8. # TODO: This needs to be removed and placed into a role
  9. - name: Ensure libselinux-python is installed
  10. package: name=libselinux-python state=present
  11. register: result
  12. until: result | success
  13. - name: Remove openshift_additional.repo file
  14. file:
  15. dest: /etc/yum.repos.d/openshift_additional.repo
  16. state: absent
  17. - name: Create any additional repos that are defined
  18. yum_repository:
  19. description: "{{ item.description | default(item.name | default(item.id)) }}"
  20. name: "{{ item.name | default(item.id) }}"
  21. baseurl: "{{ item.baseurl }}"
  22. gpgkey: "{{ item.gpgkey | default(omit)}}"
  23. gpgcheck: "{{ item.gpgcheck | default(1) }}"
  24. sslverify: "{{ item.sslverify | default(1) }}"
  25. sslclientkey: "{{ item.sslclientkey | default(omit) }}"
  26. sslclientcert: "{{ item.sslclientcert | default(omit) }}"
  27. file: "{{ item.name }}"
  28. enabled: "{{ item.enabled | default('no')}}"
  29. with_items: "{{ openshift_additional_repos }}"
  30. when: openshift_additional_repos | length > 0
  31. notify: refresh cache
  32. # Singleton block
  33. - when: r_openshift_repos_has_run is not defined
  34. block:
  35. - include_tasks: centos_repos.yml
  36. when:
  37. - ansible_os_family == "RedHat"
  38. - ansible_distribution != "Fedora"
  39. - openshift_deployment_type == 'origin'
  40. - openshift_enable_origin_repo | default(true) | bool
  41. - name: Ensure clean repo cache in the event repos have been changed manually
  42. debug:
  43. msg: "First run of openshift_repos"
  44. changed_when: true
  45. notify: refresh cache
  46. - name: Record that openshift_repos already ran
  47. set_fact:
  48. r_openshift_repos_has_run: True
  49. # Force running ALL handlers now, because we expect repo cache to be cleared
  50. # if changes have been made.
  51. - meta: flush_handlers