diff options
author | Gabriel Filion <gabster@lelutin.ca> | 2017-06-18 23:13:57 -0400 |
---|---|---|
committer | Gabriel Filion <gabster@lelutin.ca> | 2017-06-18 23:13:57 -0400 |
commit | 8b45a8a34e6c074cddd7a23fb8777fd01f4ce7f0 (patch) | |
tree | 2a954c8d7006593514e2a7b822b378200bf6bae1 | |
parent | 6e54c32751efe11764b138a099616a71c627baa9 (diff) |
stretch was released
buster+1's codename is known, and wheezy has been in LTS for some time
already.
-rw-r--r-- | lib/facter/util/debian.rb | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/facter/util/debian.rb b/lib/facter/util/debian.rb index 290c17b..5291660 100644 --- a/lib/facter/util/debian.rb +++ b/lib/facter/util/debian.rb @@ -1,7 +1,7 @@ module Facter module Util module Debian - STABLE = 8 + STABLE = 9 CODENAMES = { "5" => "lenny", "6" => "squeeze", @@ -9,9 +9,11 @@ module Facter "8" => "jessie", "9" => "stretch", "10" => "buster", + "11" => "bullseye", } LTS = [ "squeeze", + "wheezy", ] end end |