Skip to content

Commit 793c683

Browse files
committed
fix source parameter for signing key
This has been the case for a very long time: puppetlabs/puppetlabs-apt@0f3bdcd
1 parent b452549 commit 793c683

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

manifests/repo/apt.pp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@
9999
repos => 'main',
100100
key => {
101101
id => $repo_key_name,
102-
key_source => $repo_key_source,
102+
source => $repo_key_source,
103103
},
104104
pin => $priority,
105105
architecture => $arch,

spec/classes/repo_apt_spec.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@
6161
release: facts[:lsbdistcodename].to_s,
6262
key: {
6363
'id' => 'EED3351AFD72E5437C050F0388F6CDEE78FA6D97',
64-
'key_source' => 'https://download.gluster.org/pub/gluster/glusterfs/4.1/rsa.pub'
64+
'source' => 'https://download.gluster.org/pub/gluster/glusterfs/4.1/rsa.pub'
6565
},
6666
location: "https://download.gluster.org/pub/gluster/glusterfs/4.1/LATEST/Debian/#{facts[:lsbdistcodename]}/amd64/apt/"
6767
)
@@ -81,7 +81,7 @@
8181
release: facts[:lsbdistcodename].to_s,
8282
key: {
8383
'id' => '8B7C364430B66F0B084C0B0C55339A4C6A7BD8D4',
84-
'key_source' => 'https://download.gluster.org/pub/gluster/glusterfs/3.12/rsa.pub'
84+
'source' => 'https://download.gluster.org/pub/gluster/glusterfs/3.12/rsa.pub'
8585
},
8686
location: "https://download.gluster.org/pub/gluster/glusterfs/01.old-releases/3.12/LATEST/Debian/#{facts[:lsbdistcodename]}/amd64/apt/"
8787
)

0 commit comments

Comments
 (0)