module-puppetlabs-apt/templates/source.list.erb

12 lines
536 B
Text
Raw Normal View History

2014-06-10 08:42:06 +02:00
# <%= @comment %>
<%- if @_include['deb'] then -%>
deb <%- if @architecture or @allow_unsigned -%>
[<%- if @architecture %>arch=<%= @architecture %> <% end %><% if @allow_unsigned %>trusted=yes<% end -%>
] <%- end %><%= @location %> <%= @release %> <%= @repos %>
<%- end -%>
<%- if @_include['src'] then -%>
deb-src <%- if @architecture or @allow_unsigned -%>
[<%- if @architecture %>arch=<%= @architecture %> <% end %><% if @allow_unsigned %>trusted=yes<% end -%>
] <%- end %><%= @location %> <%= @release %> <%= @repos %>
2010-04-27 22:38:28 +02:00
<%- end -%>