aboutsummaryrefslogtreecommitdiff
path: root/lib/puppet/parser/functions/debian_nextcodename.rb
diff options
context:
space:
mode:
authorMicah Anderson <micah@riseup.net>2015-05-06 10:41:47 -0400
committerMicah Anderson <micah@riseup.net>2015-05-06 10:41:47 -0400
commit74db9ebf282b7ef4488ae8e6b82652d1a2e7eac1 (patch)
tree74ee599e579ec638276c04e6bf5751f2c3388abe /lib/puppet/parser/functions/debian_nextcodename.rb
parent5a9e3a456e8c9023222abb3ab08ae80323a1470a (diff)
downloadpuppet-apt-74db9ebf282b7ef4488ae8e6b82652d1a2e7eac1.tar.gz
puppet-apt-74db9ebf282b7ef4488ae8e6b82652d1a2e7eac1.tar.bz2
jessie has been released!
Diffstat (limited to 'lib/puppet/parser/functions/debian_nextcodename.rb')
-rw-r--r--lib/puppet/parser/functions/debian_nextcodename.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/puppet/parser/functions/debian_nextcodename.rb b/lib/puppet/parser/functions/debian_nextcodename.rb
index f3190ef..ee59612 100644
--- a/lib/puppet/parser/functions/debian_nextcodename.rb
+++ b/lib/puppet/parser/functions/debian_nextcodename.rb
@@ -3,7 +3,8 @@ module Puppet::Parser::Functions
case args[0]
when "squeeze" then "wheezy"
when "wheezy" then "jessie"
- when "jessie" then "sid"
+ when "jessie" then "stretch"
+ when "stretch" then "sid"
when "sid" then "experimental"
else "sid"
end