Fix yum repo-key attribute

The upstream RDO repo no longer keeps the repo key in the master branch and only
keeps them in each release branch. So use the release attribute and set the
repo-key properly.

Change-Id: I83b508aab4e45554dda459662d1733d54810a3dd
Signed-off-by: Lance Albertson <lance@osuosl.org>
This commit is contained in:
Lance Albertson 2016-05-22 20:27:40 -07:00
parent 7a51c3b952
commit 1e86209d4e
1 changed files with 1 additions and 1 deletions

View File

@ -132,7 +132,7 @@ default['openstack']['apt']['components'] = ['main']
default['openstack']['yum']['rdo_enabled'] = true
default['openstack']['yum']['uri'] = "http://mirror.centos.org/centos/$releasever/cloud/$basearch/openstack-#{node['openstack']['release']}"
default['openstack']['yum']['repo-key'] = 'https://raw.githubusercontent.com/redhat-openstack/rdo-release/master/RPM-GPG-KEY-CentOS-SIG-Cloud'
default['openstack']['yum']['repo-key'] = "https://github.com/redhat-openstack/rdo-release/raw/#{node['openstack']['release']}/RPM-GPG-KEY-CentOS-SIG-Cloud"
# Enforcing GnuPG signature check for RDO repo. Set this to false if you want to disable the check.
default['openstack']['yum']['gpgcheck'] = true
default['openstack']['endpoints']['family'] = 'inet'