aboutsummaryrefslogtreecommitdiff
path: root/lib/puppet/parser/functions/debian_release.rb
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2013-05-20 18:08:15 -0300
committerSilvio Rhatto <rhatto@riseup.net>2013-05-20 18:08:15 -0300
commit7c548c9878a5e0cecca771a6b7a739af98c21f4e (patch)
tree03608d69b10bd1d8c35b648edc6da0b546726768 /lib/puppet/parser/functions/debian_release.rb
parentee15eb570d941ac4113bfad37a539a7e3636f8d2 (diff)
parentc38be6cb7c2cbd53a133291b2750d053877ebe4f (diff)
downloadpuppet-apt-7c548c9878a5e0cecca771a6b7a739af98c21f4e.tar.gz
puppet-apt-7c548c9878a5e0cecca771a6b7a739af98c21f4e.tar.bz2
Merge branch 'master' of ssh://labs.riseup.net/shared-apt
Conflicts: manifests/init.pp
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'