module-apt/lib/puppet/parser/functions/debian_release.rb

13 lines
360 B
Ruby
Raw Normal View History

2010-10-06 11:16:44 +02:00
module Puppet::Parser::Functions
newfunction(:debian_release, :type => :rvalue) do |args|
2010-10-10 12:05:26 +02:00
case args[0]
2013-05-03 17:09:34 +02:00
when 'squeeze' then 'oldstable'
when 'wheezy' then 'stable'
when 'jessie' then 'testing'
when 'sid' then 'unstable'
when 'experimental' then 'experimental'
2010-10-10 12:05:26 +02:00
else 'testing'
end
2010-10-06 11:16:44 +02:00
end
end