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.rb3
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/puppet/parser/functions/debian_release_version.rb b/lib/puppet/parser/functions/debian_release_version.rb
index 0a57fd3..32cafcb 100644
--- a/lib/puppet/parser/functions/debian_release_version.rb
+++ b/lib/puppet/parser/functions/debian_release_version.rb
@@ -3,6 +3,9 @@ module Puppet::Parser::Functions
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