disable gpgcheck for rdo repo

Change-Id: If92280bb5df6292d16f764fdc8cd8bb8c88dff53
This commit is contained in:
xiaodongwang 2014-09-17 14:41:01 -07:00
parent f335ef85b7
commit 1b09286a9b
2 changed files with 3 additions and 2 deletions

View File

@ -92,7 +92,7 @@ default['openstack']['zypp']['uri'] = 'http://download.opensuse.org/repositories
default['openstack']['yum']['rdo_enabled'] = true
default['openstack']['yum']['uri'] = 'http://repos.fedorapeople.org/repos/openstack/openstack-icehouse/epel-6'
default['openstack']['yum']['repo-key'] = 'https://raw.githubusercontent.com/redhat-openstack/rdo-release/master/RPM-GPG-KEY-RDO-Icehouse'
# default['openstack']['yum']['repo-key'] = 'https://raw.githubusercontent.com/redhat-openstack/rdo-release/master/RPM-GPG-KEY-RDO-Icehouse'
# ======================== OpenStack Endpoints ================================
#

View File

@ -51,9 +51,10 @@ when 'rhel'
yum_repository "RDO-#{node['openstack']['release']}" do
description "OpenStack RDO repo for #{node['openstack']['release']}"
gpgkey node['openstack']['yum']['repo-key']
# gpgkey node['openstack']['yum']['repo-key']
baseurl node['openstack']['yum']['uri']
enabled true
gpgcheck false
action repo_action
end