0a178c3382
* Update `release` to default to `$::lsbdistcodename` * Default `include_src` to false * Validate more things! * Stop redefining variables from `apt::params`
11 lines
528 B
Text
11 lines
528 B
Text
# <%= @comment %>
|
|
<%- if @include_deb then -%>
|
|
deb <%- if @architecture or @trusted_source -%>
|
|
[<%- if @architecture %>arch=<%= @architecture %> <% end %><% if @trusted_source %>trusted=yes<% end -%>
|
|
] <%- end %><%= @location %> <%= @release %> <%= @repos %>
|
|
<%- end -%>
|
|
<%- if @include_src then -%>
|
|
deb-src <%- if @architecture or @trusted_source -%>
|
|
[<%- if @architecture %>arch=<%= @architecture %> <% end %><% if @trusted_source %>trusted=yes<% end -%>
|
|
] <%- end %><%= @location %> <%= @release %> <%= @repos %>
|
|
<%- end -%>
|