diff options
author | Micah Anderson <micah@riseup.net> | 2012-12-05 13:46:23 -0500 |
---|---|---|
committer | Micah Anderson <micah@riseup.net> | 2012-12-05 13:46:23 -0500 |
commit | 07a031f2050deecfefa205e1e0c63586692a06ff (patch) | |
tree | 280c615d47a615063c0ea613dd042358e56b7314 /manifests/proxy_client.pp | |
parent | 460c1d54d1d04c1dd648d60a0b10f473d801f9b8 (diff) |
fix for $lsbdistcodename regression introduced by ac166366d7baa45b74e09974289d9fb2dad38e67
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
Diffstat (limited to 'manifests/proxy_client.pp')
0 files changed, 0 insertions, 0 deletions