Skip to content
This repository has been archived by the owner on Feb 29, 2024. It is now read-only.

Commit

Permalink
fix issue where containers can not update successfully
Browse files Browse the repository at this point in the history
This patch enables the centos base repo such that
new dependencies can be installed.

Closes-Bug: #1747986
Change-Id: Ie4778908a6510d07206e93994675f4c886313d6e
  • Loading branch information
weshayutin committed Feb 7, 2018
1 parent 0e80af1 commit df63be2
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -88,7 +88,7 @@ openstack overcloud container image prepare \

## * rename the base-os yum repos to disable them. This will speed up the update
## ::
CENTOS_REPOS=$(find /etc/yum.repos.d -type f -name "CentOS-*.repo" -o -name "quickstart-centos-*.repo")
CENTOS_REPOS=$(find /etc/yum.repos.d -type f -name "CentOS-*.repo" -o -name "quickstart-centos-*.repo" ! -name quickstart-centos-base.repo )
for f in $CENTOS_REPOS ; do
sudo mv "$f" "$f"_disabled
done
Expand Down

0 comments on commit df63be2

Please sign in to comment.