diff options
Diffstat (limited to 'lib/puppet/parser/functions/debian_release.rb')
-rw-r--r-- | lib/puppet/parser/functions/debian_release.rb | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/lib/puppet/parser/functions/debian_release.rb b/lib/puppet/parser/functions/debian_release.rb deleted file mode 100644 index d7b6718..0000000 --- a/lib/puppet/parser/functions/debian_release.rb +++ /dev/null @@ -1,12 +0,0 @@ -module Puppet::Parser::Functions - newfunction(:debian_release, :type => :rvalue) do |args| - case args[0] - when 'squeeze' then 'oldstable' - when 'wheezy' then 'stable' - when 'jessie' then 'testing' - when 'sid' then 'unstable' - when 'experimental' then 'experimental' - else 'testing' - end - end -end |