Add support for signed-by in source entries
[puppet-modules/puppetlabs-apt.git] / templates / source.list.epp
1 <%- | String $comment, Hash $includes, Hash $options, $location, $release, String $repos | -%>
2 # <%= $comment %>
3 <%- if $includes['deb'] { -%>
4 deb <% if !$options.empty() { -%>[<%=  $options.map |$key, $value| { "${key}=${value}" }.join(" ") %>] <% } -%> <%= $location %> <%= $release %> <%= $repos %>
5 <%- } -%>
6 <%- if $includes['src'] { -%>
7 deb-src <% if !$options.empty() { -%>[<%=  $options.map |$key, $value| { "${key}=${value}" }.join(" ") %>] <% } -%> <%= $location %> <%= $release %> <%= $repos %>
8 <%- } -%>