diff options
author | intrigeri <intrigeri@boum.org> | 2010-10-06 12:39:50 +0200 |
---|---|---|
committer | intrigeri <intrigeri@boum.org> | 2010-10-06 12:39:50 +0200 |
commit | 53ca6e2235accc2903d42d8aaffa1b3dd7c1130f (patch) | |
tree | 04657c3753c5df5f4d9e61c6b6407f9d857a9f17 /templates | |
parent | 1183a04b4867dbd7480cd4898553c8f7f1c7688d (diff) | |
download | puppet-apt-53ca6e2235accc2903d42d8aaffa1b3dd7c1130f.tar.gz puppet-apt-53ca6e2235accc2903d42d8aaffa1b3dd7c1130f.tar.bz2 |
Add opt-in support for next Debian release sources.
Diffstat (limited to 'templates')
-rw-r--r-- | templates/sources.list.erb | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/templates/sources.list.erb b/templates/sources.list.erb index 35fac32..43f4a56 100644 --- a/templates/sources.list.erb +++ b/templates/sources.list.erb @@ -40,3 +40,44 @@ deb-src http://volatile.debian.org/debian-volatile/ <%= codename %>/volatile <%= <% end %> <% end %> +<% if use_next_release then %> +### Debian next: <%= next_codename %> + +# basic +deb <%= http://ftp.debian.org/debian/ %> <%= next_codename %> <%= repos %> +<% if include_src then %> +deb-src <%= http://ftp.debian.org/debian/ %> <%= next_codename %> <%= repos %> +<% end %> + +# security +<% if (next_release == "unstable" || next_release == "experimental") %> +# There is no security support for <%= next_release %> +<% else %> +deb http://security.debian.org/ <%= next_codename %>/updates <%= repos %> +<% if include_src then %> +deb-src http://security.debian.org/ <%= next_codename %>/updates <%= repos %> +<% end %> +<% end %> + +# backports +<% if (next_release == "testing" || next_release == "unstable" || next_release == "experimental") %> +# There is no backports archive for <%= next_release %> +<% else %> +deb http://backports.debian.org/debian-backports/ <%= next_codename %>-backports <%= repos %> +<% if include_src then %> +deb-src http://backports.debian.org/debian-backports/ <%= next_codename %>-backports <%= repos %> +<% end %> +<% end %> + +<% if use_volatile %> +# volatile +<% if (next_release == "testing" || next_release == "unstable" || next_release == "experimental") %> +# There is no volatile archive for <%= next_release %> +<% else %> +deb http://volatile.debian.org/debian-volatile/ <%= next_codename %>/volatile <%= repos %> +<% if include_src then %> +deb-src http://volatile.debian.org/debian-volatile/ <%= next_codename %>/volatile <%= repos %> +<% end %> +<% end %> +<% end %> +<% end %> |