Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[MODULES-9695] - Add support for signed-by in source entries #991

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 14 additions & 2 deletions manifests/source.pp
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,10 @@
# defined type, or a hash of `parameter => value` pairs to be passed to `apt::key`'s `id`, `server`, `content`, `source`, and/or
# `options` parameters.
#
# @param keyring
# Absolute path to a file containing the PGP keyring used to sign this repository. Value is used to set signed-by on the source entry.
# See https://wiki.debian.org/DebianRepository/UseThirdParty for details.
#
# @param pin
# Creates a declaration of the apt::pin defined type. Valid options: a number or string to be passed to the `id` parameter of the
# `apt::pin` defined type, or a hash of `parameter => value` pairs to be passed to `apt::pin`'s corresponding parameters.
Expand All @@ -62,6 +66,7 @@
String $repos = 'main',
Optional[Variant[Hash]] $include = {},
Optional[Variant[String, Hash]] $key = undef,
Optional[Stdlib::AbsolutePath] $keyring = undef,
Optional[Variant[Hash, Numeric, String]] $pin = undef,
Optional[String] $architecture = undef,
Boolean $allow_unsigned = false,
Expand Down Expand Up @@ -103,6 +108,10 @@

$includes = merge($::apt::include_defaults, $include)

if $key and $keyring {
fail("parameters key and keyring are mutualy exclusive")
}

if $key {
if $key =~ Hash {
unless $key['id'] {
Expand All @@ -119,8 +128,11 @@
$sourcelist = epp('apt/source.list.epp', {
'comment' => $comment,
'includes' => $includes,
'opt_architecture' => $architecture,
'allow_unsigned' => $allow_unsigned,
'options' => delete_undef_values({
'arch' => $architecture,
'trusted' => $allow_unsigned ? {true => "yes", false => undef},
'signed-by' => $keyring,
}),
'location' => $_location,
'release' => $_release,
'repos' => $repos,
Expand Down
32 changes: 32 additions & 0 deletions spec/defines/source_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -154,6 +154,38 @@
}
end

context 'with keyring set' do
let :params do
{
location: 'hello.there',
keyring: '/usr/share/keyrings/foo-archive-keyring.gpg',
}
end

it {
is_expected.to contain_apt__setting('list-my_source')
.with(ensure: 'present')
.with_content(%r{# my_source\ndeb \[signed-by=/usr/share/keyrings/foo-archive-keyring.gpg\] hello.there jessie main\n})
}
end

context 'with keyring, architecture and allow_unsigned set' do
let :params do
{
location: 'hello.there',
architecture: 'amd64',
allow_unsigned: true,
keyring: '/usr/share/keyrings/foo-archive-keyring.gpg',
}
end

it {
is_expected.to contain_apt__setting('list-my_source')
.with(ensure: 'present')
.with_content(%r{# my_source\ndeb \[arch=amd64 trusted=yes signed-by=/usr/share/keyrings/foo-archive-keyring.gpg\] hello.there jessie main\n})
}
end

context 'with a https location, install apt-transport-https' do
let :params do
{
Expand Down
8 changes: 3 additions & 5 deletions templates/source.list.epp
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
<%- | String $comment, Hash $includes, $opt_architecture, Boolean $allow_unsigned, $location, $release, String $repos | -%>
<%- | String $comment, Hash $includes, Hash $options, $location, $release, String $repos | -%>
# <%= $comment %>
<%- if $includes['deb'] { -%>
deb <%- if ($opt_architecture or $allow_unsigned) {-%>
[<%- if ($opt_architecture) {%>arch=<%= $opt_architecture %><% } %><%if ($opt_architecture and $allow_unsigned) {%> <% }%><% if ($allow_unsigned) {%>trusted=yes<% } %>] <%- } %> <%= $location %> <%= $release %> <%= $repos %>
deb <% if !$options.empty() { -%>[<%= $options.map |$key, $value| { "${key}=${value}" }.join(" ") %>] <% } -%> <%= $location %> <%= $release %> <%= $repos %>
<%- } -%>
<%- if $includes['src'] { -%>
deb-src <%- if $opt_architecture or $allow_unsigned { -%>
[<%- if ($opt_architecture) {%>arch=<%= $opt_architecture %><% } %><%if ($opt_architecture and $allow_unsigned) {%> <% }%><% if ($allow_unsigned) {%>trusted=yes<% } %>] <%- } %> <%= $location %> <%= $release %> <%= $repos %>
deb-src <% if !$options.empty() { -%>[<%= $options.map |$key, $value| { "${key}=${value}" }.join(" ") %>] <% } -%> <%= $location %> <%= $release %> <%= $repos %>
<%- } -%>