aboutsummaryrefslogtreecommitdiff
path: root/lib/puppet/parser/functions/debian_release.rb
diff options
context:
space:
mode:
authorintrigeri <intrigeri@boum.org>2013-05-03 17:09:34 +0200
committerintrigeri <intrigeri@boum.org>2013-05-03 17:09:34 +0200
commitc38be6cb7c2cbd53a133291b2750d053877ebe4f (patch)
treeb1b3016223fb3d411b178c07648147bde4dad6f8 /lib/puppet/parser/functions/debian_release.rb
parent46c58b07bfd6d6d6ed4bc4139ed4fd14bfe8ada3 (diff)
downloadpuppet-apt-c38be6cb7c2cbd53a133291b2750d053877ebe4f.tar.gz
puppet-apt-c38be6cb7c2cbd53a133291b2750d053877ebe4f.tar.bz2
Wheezy was released!
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'