main.yaml 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  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 is succeeded
  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: rhel_repos.yml
  36. when:
  37. - ansible_distribution == 'RedHat'
  38. - openshift_deployment_type == 'openshift-enterprise'
  39. - rhsub_user is defined
  40. - rhsub_pass is defined
  41. - include_tasks: centos_repos.yml
  42. when:
  43. - ansible_os_family == "RedHat"
  44. - ansible_distribution != "Fedora"
  45. - openshift_deployment_type == 'origin'
  46. - openshift_enable_origin_repo | default(true) | bool
  47. - name: Ensure clean repo cache in the event repos have been changed manually
  48. debug:
  49. msg: "First run of openshift_repos"
  50. changed_when: true
  51. notify: refresh cache
  52. - name: Record that openshift_repos already ran
  53. set_fact:
  54. r_openshift_repos_has_run: True
  55. # Force running ALL handlers now, because we expect repo cache to be cleared
  56. # if changes have been made.
  57. - meta: flush_handlers