Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Drop "rhui-" prefix from RHEL repositories in AMI #71130

Merged
merged 1 commit into from Aug 6, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Expand Up @@ -12,8 +12,8 @@
name: setup_epel

- name: Enable extras repository for RHEL on AWS
# RHEL 7.6 uses rhui-REGION-rhel-server-extras and RHEL 7.7+ use rhui-rhel-7-server-rhui-extras-rpms
command: yum-config-manager --enable rhui-REGION-rhel-server-extras rhui-rhel-7-server-rhui-extras-rpms
# RHEL 7.6 uses REGION-rhel-server-extras and RHEL 7.7+ use rhel-7-server-rhui-extras-rpms
command: yum-config-manager --enable REGION-rhel-server-extras rhel-7-server-rhui-extras-rpms
args:
warn: no

Expand Down
8 changes: 4 additions & 4 deletions test/integration/targets/yum/tasks/yuminstallroot.yml
Expand Up @@ -78,8 +78,8 @@
block:
# Need to enable this RHUI repo for RHEL7 testing in AWS, CentOS has Extras
# enabled by default and this is not needed there.
- name: enable rhui-rhel-7-server-rhui-extras-rpms repo for RHEL7
command: yum-config-manager --enable rhui-rhel-7-server-rhui-extras-rpms
- name: enable rhel-7-server-rhui-extras-rpms repo for RHEL7
command: yum-config-manager --enable rhel-7-server-rhui-extras-rpms
- name: update cache to pull repodata
yum:
update_cache: yes
Expand Down Expand Up @@ -118,5 +118,5 @@
state: absent
name:
- buildah
- name: disable rhui-rhel-7-server-rhui-extras-rpms repo for RHEL7
command: yum-config-manager --disable rhui-rhel-7-server-rhui-extras-rpms
- name: disable rhel-7-server-rhui-extras-rpms repo for RHEL7
command: yum-config-manager --disable rhel-7-server-rhui-extras-rpms