jessie has been released!
This commit is contained in:
parent
5a9e3a456e
commit
74db9ebf28
3 changed files with 9 additions and 4 deletions
|
@ -3,7 +3,8 @@ module Puppet::Parser::Functions
|
|||
case args[0]
|
||||
when "squeeze" then "wheezy"
|
||||
when "wheezy" then "jessie"
|
||||
when "jessie" then "sid"
|
||||
when "jessie" then "stretch"
|
||||
when "stretch" then "sid"
|
||||
when "sid" then "experimental"
|
||||
else "sid"
|
||||
end
|
||||
|
|
|
@ -1,9 +1,10 @@
|
|||
module Puppet::Parser::Functions
|
||||
newfunction(:debian_release, :type => :rvalue) do |args|
|
||||
case args[0]
|
||||
when 'squeeze' then 'oldstable'
|
||||
when 'wheezy' then 'stable'
|
||||
when 'jessie' then 'testing'
|
||||
when 'squeeze' then 'oldoldstable'
|
||||
when 'wheezy' then 'oldstable'
|
||||
when 'jessie' then 'stable'
|
||||
when 'stretch' then 'testing'
|
||||
when 'sid' then 'unstable'
|
||||
when 'experimental' then 'experimental'
|
||||
else 'testing'
|
||||
|
|
|
@ -3,6 +3,9 @@ module Puppet::Parser::Functions
|
|||
case args[0]
|
||||
when 'squeeze' then '6.0'
|
||||
when 'wheezy' then '7.0'
|
||||
when 'jessie' then '8.0'
|
||||
when 'stretch' then '9.0'
|
||||
when 'buster' then '10.0'
|
||||
else ''
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue