aboutsummaryrefslogtreecommitdiff
path: root/lib/puppet/parser/functions/debian_release.rb
diff options
context:
space:
mode:
authorMicah Anderson <micah@riseup.net>2013-05-26 17:04:05 -0400
committerMicah Anderson <micah@riseup.net>2013-05-26 17:04:05 -0400
commit61a2f4894898baa98dbaaba7b69b7198864ca04a (patch)
treed0a5253e66eaf69bee0db5aa7d85ab305aeeb66c /lib/puppet/parser/functions/debian_release.rb
parent6bf7a6ab5d6e63f75c94f49aa0f12959e954efa8 (diff)
parentc38be6cb7c2cbd53a133291b2750d053877ebe4f (diff)
downloadpuppet-apt-61a2f4894898baa98dbaaba7b69b7198864ca04a.tar.gz
puppet-apt-61a2f4894898baa98dbaaba7b69b7198864ca04a.tar.bz2
Merge branch 'master' into leap
Diffstat (limited to 'lib/puppet/parser/functions/debian_release.rb')
-rw-r--r--lib/puppet/parser/functions/debian_release.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/puppet/parser/functions/debian_release.rb b/lib/puppet/parser/functions/debian_release.rb
index 857edf3..d7b6718 100644
--- a/lib/puppet/parser/functions/debian_release.rb
+++ b/lib/puppet/parser/functions/debian_release.rb
@@ -1,9 +1,9 @@
module Puppet::Parser::Functions
newfunction(:debian_release, :type => :rvalue) do |args|
case args[0]
- when 'lenny' then 'oldstable'
- when 'squeeze' then 'stable'
- when 'wheezy' then 'testing'
+ when 'squeeze' then 'oldstable'
+ when 'wheezy' then 'stable'
+ when 'jessie' then 'testing'
when 'sid' then 'unstable'
when 'experimental' then 'experimental'
else 'testing'