module-apt/templates
Micah Anderson 07a031f205 fix for $lsbdistcodename regression introduced by ac166366d7
What happened here was the $codename = $::lsbdistcodename was removed from
init.pp and replaced with just $::lsbdistcodename whereever $codename was
used. Then in the sources.list.erb and preferences files things were changed
like this:

<pre>+### Debian current: <%= codename = scope.lookupvar('::lsbdistcodename') %>
...
-deb <%= debian_url %> <%= codename %> <%= repos %>
...
+deb <%= debian_url=scope.lookupvar('apt::debian_url') %> <%= codename %> <%= repos=scope.lookupvar('apt::repos') %>
</pre>

This meant that the codename was always set to lsbdistcodename, and you because
in newer puppet versions you cannot assign a value to a top-level facter
variable, it is not possible to change this.

Because we cannot change $lsbdistcodename, we have to fix this by allowing the
user to pass a different, non-top-level scoped variable to the class as a
parameter, which defaults to $::lsbdistcodename, so that upgrades can be
triggered.

This is documented in the README in an upgrade notice
2012-12-05 13:46:23 -05:00
..
Debian fix for $lsbdistcodename regression introduced by ac166366d7 2012-12-05 13:46:23 -05:00
Ubuntu fix for $lsbdistcodename regression introduced by ac166366d7 2012-12-05 13:46:23 -05:00
20proxy.erb parameterize the apt::proxy_client class 2012-08-22 10:55:25 -04:00
preferences_snippet.erb Make apt::preferences_snippet support Puppet < 2.7 again, when the 'package' parameter is not set. 2012-06-18 22:57:13 +02:00
preferences_snippet_release.erb Make apt::preferences_snippet support Puppet < 2.7 again, when the 'package' parameter is not set. 2012-06-18 22:57:13 +02:00