diff options
author | intrigeri <intrigeri@boum.org> | 2011-02-06 08:56:54 +0100 |
---|---|---|
committer | intrigeri <intrigeri@boum.org> | 2011-02-06 08:56:54 +0100 |
commit | f362f059956d745037425eb5f8c27ce48c14632e (patch) | |
tree | 860e10ba5fb85194a4b30a847848a12ca14899d7 /lib | |
parent | d76f922dfb1120c013da1b2c1904aac2d580e342 (diff) | |
download | puppet-apt-f362f059956d745037425eb5f8c27ce48c14632e.tar.gz puppet-apt-f362f059956d745037425eb5f8c27ce48c14632e.tar.bz2 |
Update debian_release function since Squeeze has been released.
Diffstat (limited to 'lib')
-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' |