diff options
author | intrigeri <intrigeri@boum.org> | 2011-02-07 11:28:29 +0100 |
---|---|---|
committer | intrigeri <intrigeri@boum.org> | 2011-02-07 11:28:29 +0100 |
commit | f11e821f0ad7e52be19163b62f18930c90fffed5 (patch) | |
tree | 0730ab6876f1de7bf80f0f47ad959b82056afe12 /lib | |
parent | e32f4275a6ec3c4cb531f1ec1816479d6d2dd36c (diff) | |
download | puppet-apt-f11e821f0ad7e52be19163b62f18930c90fffed5.tar.gz puppet-apt-f11e821f0ad7e52be19163b62f18930c90fffed5.tar.bz2 |
debian_nextcodename: take into account Squeeze was released.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/puppet/parser/functions/debian_nextcodename.rb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/puppet/parser/functions/debian_nextcodename.rb b/lib/puppet/parser/functions/debian_nextcodename.rb index 6bc4b6b..f57dd2a 100644 --- a/lib/puppet/parser/functions/debian_nextcodename.rb +++ b/lib/puppet/parser/functions/debian_nextcodename.rb @@ -3,7 +3,8 @@ module Puppet::Parser::Functions case args[0] when "etch" then "lenny" when "lenny" then "squeeze" - when "squeeze" then "sid" + when "squeeze" then "wheezy" + when "wheezy" then "sid" when "sid" then "experimental" else "sid" end |