rhel_repos.yml 1.2 KB

123456789101112131415161718192021222324252627282930313233
  1. ---
  2. - name: Ensure RHEL rhui repositories are disabled
  3. command: bash -c "yum -q --noplugins repolist | grep -v 'repo id' | grep 'rhui'"
  4. register: repo_rhui
  5. changed_when: "repo_rhui.rc != 1"
  6. failed_when: repo_rhui.rc == 11
  7. - name: Disable RHEL rhui repositories
  8. command: yum-config-manager \
  9. --disable 'rhui-REGION-client-config-server-7' \
  10. --disable 'rhui-REGION-rhel-server-rh-common' \
  11. --disable 'rhui-REGION-rhel-server-releases'
  12. when: repo_rhui.changed
  13. - name: Ensure RHEL repositories are enabled
  14. command: bash -c "yum -q --noplugins repolist | grep -v 'repo id' | grep 'Red Hat' | wc -l"
  15. register: repo_rhel
  16. changed_when: "'4' not in repo_rhel.stdout"
  17. failed_when: repo_rhel.rc == 11
  18. - name: Disable all repositories
  19. command: bash -c "subscription-manager repos --disable='*'"
  20. when: repo_rhel.changed
  21. - name: Enable RHEL repositories
  22. command: subscription-manager repos \
  23. --enable="rhel-7-server-rpms" \
  24. --enable="rhel-7-server-extras-rpms" \
  25. --enable="rhel-7-server-ose-{{ ( openshift_version ).split('.')[0:2] | join('.') }}-rpms" \
  26. --enable="rhel-7-fast-datapath-rpms"
  27. register: subscribe_repos
  28. until: subscribe_repos is succeeded
  29. when: repo_rhel.changed