From dc0bd1a88613b1659b780cc412527ee88f84c2e8 Mon Sep 17 00:00:00 2001 From: Attila Fazekas Date: Fri, 27 Sep 2013 07:45:56 +0200 Subject: [PATCH] Use the rdo havana repo with the RHEL family In devstack viewpoint there is not too much differences at the moment. But using the grizzly named repo close to havana release, was strange to me. Switching to the repo link which does not have a version like '-3'. Change-Id: Ib421d50d19baeeeff264aa0cb9c105fffcf572f8 --- stack.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/stack.sh b/stack.sh index 46c3f443c5..4bd186fdc5 100755 --- a/stack.sh +++ b/stack.sh @@ -150,8 +150,8 @@ fi if [[ is_fedora && $DISTRO =~ (rhel6) ]]; then # Installing Open vSwitch on RHEL6 requires enabling the RDO repo. - RHEL6_RDO_REPO_RPM=${RHEL6_RDO_REPO_RPM:-"http://rdo.fedorapeople.org/openstack/openstack-grizzly/rdo-release-grizzly-3.noarch.rpm"} - RHEL6_RDO_REPO_ID=${RHEL6_RDO_REPO_ID:-"openstack-grizzly"} + RHEL6_RDO_REPO_RPM=${RHEL6_RDO_REPO_RPM:-"http://rdo.fedorapeople.org/openstack-havana/rdo-release-havana.rpm"} + RHEL6_RDO_REPO_ID=${RHEL6_RDO_REPO_ID:-"openstack-havana"} if ! yum repolist enabled $RHEL6_RDO_REPO_ID | grep -q $RHEL6_RDO_REPO_ID; then echo "RDO repo not detected; installing" yum_install $RHEL6_RDO_REPO_RPM || \