Use full key for gpg key

We are still seeing gpg failures, suggesting this key insn't installed
correctly.  I found a suggestion that because of format changes in gpg
output, this might work better with a full key.

Change-Id: I05696e5d85e96e5f96de612a1572b132ed1e3869
This commit is contained in:
Ian Wienand 2019-05-17 14:19:57 +10:00
parent abb176dd26
commit c7190a23ff
1 changed files with 7 additions and 1 deletions

View File

@ -31,11 +31,17 @@ class diskimage_builder (
}
include ::apt
apt::key { 'openstack-ci-core-ppa-key':
id => '15B6CE7C018D05F5',
id => '2B5DE24F0EC9F98BD2F85CA315B6CE7C018D05F5',
source => '/root/openstack-ci-core-ppa-key.pubkey',
require => File['/root/openstack-ci-core-ppa-key.pubkey'],
}
exec { 'apt keys':
command => 'apt-key adv --list-public-keys --with-fingerprint --with-colons',
logoutput => true,
require => Apt::Key['openstack-ci-core-ppa-key'],
}
if $support_vhd {
apt::ppa { 'ppa:openstack-ci-core/vhd-util':
require => Apt::Key['openstack-ci-core-ppa-key'],