Wheezy was released!
This commit is contained in:
parent
46c58b07bf
commit
c38be6cb7c
3 changed files with 6 additions and 4 deletions
|
@ -4,7 +4,8 @@ module Puppet::Parser::Functions
|
|||
when "etch" then "lenny"
|
||||
when "lenny" then "squeeze"
|
||||
when "squeeze" then "wheezy"
|
||||
when "wheezy" then "sid"
|
||||
when "wheezy" then "jessie"
|
||||
when "jessie" then "sid"
|
||||
when "sid" then "experimental"
|
||||
else "sid"
|
||||
end
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
module Puppet::Parser::Functions
|
||||
newfunction(:debian_release, :type => :rvalue) do |args|
|
||||
case args[0]
|
||||
when 'lenny' then 'oldstable'
|
||||
when 'squeeze' then 'stable'
|
||||
when 'wheezy' then 'testing'
|
||||
when 'squeeze' then 'oldstable'
|
||||
when 'wheezy' then 'stable'
|
||||
when 'jessie' then 'testing'
|
||||
when 'sid' then 'unstable'
|
||||
when 'experimental' then 'experimental'
|
||||
else 'testing'
|
||||
|
|
|
@ -4,6 +4,7 @@ module Puppet::Parser::Functions
|
|||
when 'etch' then '4.0'
|
||||
when 'lenny' then '5.0'
|
||||
when 'squeeze' then '6.0'
|
||||
when 'wheezy' then '7.0'
|
||||
else ''
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue