summaryrefslogtreecommitdiff
path: root/lib/puppet/parser/functions/nextrelease.rb
blob: 4449121f5b566dcf3057531f0fd619e3aab5ec35 (plain)
1
2
3
4
5
6
7
8
9
10
module Puppet::Parser::Functions
  newfunction(:debian_nextrelease, :type => :rvalue) do |args|
    case #{args[0]} {
      oldstable: { 'stable' }
      stable:    { 'testing' }
      testing:   { 'unstable' }
      unstable:  { 'experimental' }
    }
  end
end