diff options
author | Gabriel Filion <gabster@lelutin.ca> | 2014-12-05 21:29:09 -0500 |
---|---|---|
committer | Gabriel Filion <gabster@lelutin.ca> | 2014-12-05 21:29:09 -0500 |
commit | 671610fab54d6cc65f59143fe1cd6c992d3e48d8 (patch) | |
tree | b4537d79bd73a1c082a5d890c6e1d31a9c5ff817 /templates | |
parent | 5a8d214529429b5dd898e0df29d69e0acf5271df (diff) | |
download | puppet-apt-671610fab54d6cc65f59143fe1cd6c992d3e48d8.tar.gz puppet-apt-671610fab54d6cc65f59143fe1cd6c992d3e48d8.tar.bz2 |
flip around security support for debian
with the release of squeeze-lts, the current way we deal with security
sources is problemaic. by flipping things around we hope to make the
files contents more stable.
Diffstat (limited to 'templates')
-rw-r--r-- | templates/Debian/sources.list.erb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/templates/Debian/sources.list.erb b/templates/Debian/sources.list.erb index 65b5945..00f3618 100644 --- a/templates/Debian/sources.list.erb +++ b/templates/Debian/sources.list.erb @@ -10,13 +10,13 @@ deb-src <%= debian_url %> <%= codename %> <%= lrepos %> <% end -%> # security -<% if ((release=scope.lookupvar('apt::release')) == "unstable" || release == "experimental") -%> -# There is no security support for <%= release %> -<% else -%> +<% if ((release=scope.lookupvar('apt::release')) == "stable" || release == "oldstable") -%> deb <%= security_url=scope.lookupvar('apt::security_url') %> <%= codename %>/updates <%= lrepos %> <% if include_src -%> deb-src <%= security_url %> <%= codename %>/updates <%= lrepos %> <% end -%> +<% else -%> +# There is no security support for <%= release %> <% end -%> # backports |