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

14 lines
401 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]
when 'etch' then 'oldstable'
when 'lenny' then 'stable'
when 'squeeze' then 'testing'
2010-10-10 12:05:26 +02:00
when 'wheezy' 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