module-apt/lib/puppet/parser/functions/debian_nextcodename.rb
intrigeri f8aa2ef872 Drop Debian Etch and Lenny compatibility.
Both have been unsupported for ages.
2013-12-08 21:58:20 +00:00

11 lines
292 B
Ruby

module Puppet::Parser::Functions
newfunction(:debian_nextcodename, :type => :rvalue) do |args|
case args[0]
when "squeeze" then "wheezy"
when "wheezy" then "jessie"
when "jessie" then "sid"
when "sid" then "experimental"
else "sid"
end
end
end