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

9 lines
223 B
Ruby

module Puppet::Parser::Functions
newfunction(:debian_release_version, :type => :rvalue) do |args|
case args[0]
when 'squeeze' then '6.0'
when 'wheezy' then '7.0'
else ''
end
end
end