diff options
author | root <root@puppet.nadir.org> | 2011-02-16 13:23:54 +0000 |
---|---|---|
committer | root <root@puppet.nadir.org> | 2011-02-16 13:23:54 +0000 |
commit | 13033f7d814fe6c006d47108b5df5e0505975010 (patch) | |
tree | 733eafc4279e0c621b620a335f550d616402419e /lib/puppet/parser/functions/debian_release.rb | |
parent | 44c6d6aa8f394b0acf72a26ebb185595fe451159 (diff) | |
parent | 840ea9ed9d3e0a26e5a70db2143ebb3f0fea13b4 (diff) | |
download | puppet-apt-13033f7d814fe6c006d47108b5df5e0505975010.tar.gz puppet-apt-13033f7d814fe6c006d47108b5df5e0505975010.tar.bz2 |
Merge branch 'master' of git://labs.riseup.net/shared-apt
Diffstat (limited to 'lib/puppet/parser/functions/debian_release.rb')
-rw-r--r-- | lib/puppet/parser/functions/debian_release.rb | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/puppet/parser/functions/debian_release.rb b/lib/puppet/parser/functions/debian_release.rb index 64feb66..857edf3 100644 --- a/lib/puppet/parser/functions/debian_release.rb +++ b/lib/puppet/parser/functions/debian_release.rb @@ -1,9 +1,8 @@ module Puppet::Parser::Functions newfunction(:debian_release, :type => :rvalue) do |args| case args[0] - when 'etch' then 'oldstable' - when 'lenny' then 'stable' - when 'squeeze' then 'testing' + when 'lenny' then 'oldstable' + when 'squeeze' then 'stable' when 'wheezy' then 'testing' when 'sid' then 'unstable' when 'experimental' then 'experimental' |