Skip to content

Commit

Permalink
(MODULES-10971) - Ensure apt::keyserver is considered when creating…
Browse files Browse the repository at this point in the history
… a default apt:source

As it stands the source_key_defaults point towards the default `keyserver` value set within the params. This change makes it so that it will instead use the `keyserver` value set in the init, which will in turn default to the params value in none has been given.
  • Loading branch information
david22swan committed Mar 24, 2021
1 parent 18fe46c commit 4530429
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion manifests/params.pp
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@
}

$source_key_defaults = {
'server' => $keyserver,
'server' => $::apt::keyserver,
'options' => undef,
'content' => undef,
'source' => undef,
Expand Down

0 comments on commit 4530429

Please sign in to comment.