summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorintrigeri <intrigeri@boum.org>2011-02-07 11:28:29 +0100
committerintrigeri <intrigeri@boum.org>2011-02-07 11:28:29 +0100
commitf11e821f0ad7e52be19163b62f18930c90fffed5 (patch)
tree0730ab6876f1de7bf80f0f47ad959b82056afe12 /lib
parente32f4275a6ec3c4cb531f1ec1816479d6d2dd36c (diff)
debian_nextcodename: take into account Squeeze was released.
Diffstat (limited to 'lib')
-rw-r--r--lib/puppet/parser/functions/debian_nextcodename.rb3
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