aboutsummaryrefslogtreecommitdiff
path: root/lib/puppet/parser/functions/debian_release_version.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/puppet/parser/functions/debian_release_version.rb')
-rw-r--r--lib/puppet/parser/functions/debian_release_version.rb12
1 files changed, 0 insertions, 12 deletions
diff --git a/lib/puppet/parser/functions/debian_release_version.rb b/lib/puppet/parser/functions/debian_release_version.rb
deleted file mode 100644
index 32cafcb..0000000
--- a/lib/puppet/parser/functions/debian_release_version.rb
+++ /dev/null
@@ -1,12 +0,0 @@
-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'
- when 'jessie' then '8.0'
- when 'stretch' then '9.0'
- when 'buster' then '10.0'
- else ''
- end
- end
-end