f8aa2ef872
Both have been unsupported for ages.
9 lines
223 B
Ruby
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
|