2010-10-25 19:58:14 +02:00
|
|
|
# This file is managed by puppet
|
2010-10-25 07:13:44 +02:00
|
|
|
# all local modifications will be overwritten
|
2007-06-25 11:50:19 +02:00
|
|
|
|
2010-10-06 11:56:56 +02:00
|
|
|
### Debian current: <%= codename %>
|
|
|
|
|
|
|
|
# basic
|
2010-10-09 21:31:25 +02:00
|
|
|
deb <%= debian_url %> <%= codename %> <%= repos %>
|
2010-10-10 12:32:23 +02:00
|
|
|
<% if include_src then -%>
|
2010-10-09 21:31:25 +02:00
|
|
|
deb-src <%= debian_url %> <%= codename %> <%= repos %>
|
2010-10-10 12:32:23 +02:00
|
|
|
<% end -%>
|
2010-10-06 11:56:56 +02:00
|
|
|
|
|
|
|
# security
|
2010-10-10 12:38:18 +02:00
|
|
|
<% if (release == "unstable" || release == "experimental") -%>
|
2010-10-06 11:56:56 +02:00
|
|
|
# There is no security support for <%= release %>
|
2010-10-10 12:38:18 +02:00
|
|
|
<% else -%>
|
2010-10-09 21:31:25 +02:00
|
|
|
deb <%= security_url %> <%= codename %>/updates <%= repos %>
|
2010-10-10 12:32:23 +02:00
|
|
|
<% if include_src then -%>
|
2010-10-09 21:31:25 +02:00
|
|
|
deb-src <%= security_url %> <%= codename %>/updates <%= repos %>
|
2010-10-10 12:32:23 +02:00
|
|
|
<% end -%>
|
|
|
|
<% end -%>
|
2010-10-06 11:56:56 +02:00
|
|
|
|
|
|
|
# backports
|
2010-10-10 12:38:18 +02:00
|
|
|
<% if (release == "testing" || release == "unstable" || release == "experimental") -%>
|
2010-10-06 11:56:56 +02:00
|
|
|
# There is no backports archive for <%= release %>
|
2010-10-10 12:38:18 +02:00
|
|
|
<% else -%>
|
2010-10-09 21:31:25 +02:00
|
|
|
deb <%= backports_url %> <%= codename %>-backports <%= repos %>
|
2010-10-10 12:32:23 +02:00
|
|
|
<% if include_src then -%>
|
2010-10-09 21:31:25 +02:00
|
|
|
deb-src <%= backports_url %> <%= codename %>-backports <%= repos %>
|
2010-10-10 12:32:23 +02:00
|
|
|
<% end -%>
|
|
|
|
<% end -%>
|
2008-09-28 23:56:11 +02:00
|
|
|
|
2010-10-10 12:38:18 +02:00
|
|
|
<% if use_volatile -%>
|
2010-10-06 12:00:32 +02:00
|
|
|
# volatile
|
2010-10-10 12:38:18 +02:00
|
|
|
<% if (release == "testing" || release == "unstable" || release == "experimental") -%>
|
2010-10-06 12:00:32 +02:00
|
|
|
# There is no volatile archive for <%= release %>
|
2010-10-10 12:38:18 +02:00
|
|
|
<% else -%>
|
2011-02-07 11:17:07 +01:00
|
|
|
<% if (codename == "lenny" || codename == "etch") -%>
|
2010-10-09 21:31:25 +02:00
|
|
|
deb <%= volatile_url %> <%= codename %>/volatile <%= repos %>
|
2010-10-10 12:32:23 +02:00
|
|
|
<% if include_src then -%>
|
2010-10-09 21:31:25 +02:00
|
|
|
deb-src <%= volatile_url %> <%= codename %>/volatile <%= repos %>
|
2010-10-10 12:32:23 +02:00
|
|
|
<% end -%>
|
2011-02-07 11:17:07 +01:00
|
|
|
<% else -%>
|
|
|
|
deb <%= debian_url %> <%= codename %>-updates <%= repos %>
|
|
|
|
<% if include_src then -%>
|
|
|
|
deb-src <%= debian_url %> <%= codename %>-updates <%= repos %>
|
|
|
|
<% end -%>
|
|
|
|
<% end -%>
|
2010-10-10 12:32:23 +02:00
|
|
|
<% end -%>
|
|
|
|
<% end -%>
|
2010-10-06 12:00:32 +02:00
|
|
|
|
2010-10-10 12:32:23 +02:00
|
|
|
<% if use_next_release then -%>
|
2010-10-06 12:39:50 +02:00
|
|
|
### Debian next: <%= next_codename %>
|
|
|
|
|
|
|
|
# basic
|
2010-10-09 21:31:25 +02:00
|
|
|
deb <%= debian_url %> <%= next_codename %> <%= repos %>
|
2010-10-10 12:32:23 +02:00
|
|
|
<% if include_src then -%>
|
2010-10-09 21:31:25 +02:00
|
|
|
deb-src <%= debian_url %> <%= next_codename %> <%= repos %>
|
2010-10-10 12:32:23 +02:00
|
|
|
<% end -%>
|
2010-10-06 12:39:50 +02:00
|
|
|
|
|
|
|
# security
|
2010-10-10 12:38:18 +02:00
|
|
|
<% if (next_release == "unstable" || next_release == "experimental") -%>
|
2010-10-06 12:39:50 +02:00
|
|
|
# There is no security support for <%= next_release %>
|
2010-10-10 12:38:18 +02:00
|
|
|
<% else -%>
|
2010-10-09 21:31:25 +02:00
|
|
|
deb <%= security_url %> <%= next_codename %>/updates <%= repos %>
|
2010-10-10 12:32:23 +02:00
|
|
|
<% if include_src then -%>
|
2010-10-09 21:31:25 +02:00
|
|
|
deb-src <%= security_url %> <%= next_codename %>/updates <%= repos %>
|
2010-10-10 12:32:23 +02:00
|
|
|
<% end -%>
|
|
|
|
<% end -%>
|
2010-10-06 12:39:50 +02:00
|
|
|
|
2010-10-10 12:38:18 +02:00
|
|
|
<% if use_volatile -%>
|
2010-10-06 12:39:50 +02:00
|
|
|
# volatile
|
2010-10-10 12:38:18 +02:00
|
|
|
<% if (next_release == "testing" || next_release == "unstable" || next_release == "experimental") -%>
|
2010-10-06 12:39:50 +02:00
|
|
|
# There is no volatile archive for <%= next_release %>
|
2010-10-10 12:38:18 +02:00
|
|
|
<% else -%>
|
2011-02-07 11:17:07 +01:00
|
|
|
<% if (next_codename == "lenny" || next_codename == "etch") -%>
|
2010-10-09 21:31:25 +02:00
|
|
|
deb <%= volatile_url %> <%= next_codename %>/volatile <%= repos %>
|
2010-10-10 12:32:23 +02:00
|
|
|
<% if include_src then -%>
|
2010-10-09 21:31:25 +02:00
|
|
|
deb-src <%= volatile_url %> <%= next_codename %>/volatile <%= repos %>
|
2010-10-10 12:32:23 +02:00
|
|
|
<% end -%>
|
2011-02-07 11:17:07 +01:00
|
|
|
<% else -%>
|
|
|
|
deb <%= debian_url %> <%= next_codename %>-updates <%= repos %>
|
|
|
|
<% if include_src then -%>
|
|
|
|
deb-src <%= debian_url %> <%= next_codename %>-updates <%= repos %>
|
|
|
|
<% end -%>
|
|
|
|
<% end -%>
|
2010-10-10 12:32:23 +02:00
|
|
|
<% end -%>
|
|
|
|
<% end -%>
|
|
|
|
<% end -%>
|