main.yaml 2.2 KB

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