aboutsummaryrefslogtreecommitdiff
path: root/lib/facter/util/debian.rb
blob: 290c17b54858649e5a71cee7f4d34bfd43801ca4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
module Facter
  module Util
    module Debian
      STABLE = 8
      CODENAMES = {
        "5" => "lenny",
        "6" => "squeeze",
        "7" => "wheezy",
        "8" => "jessie",
        "9" => "stretch",
        "10" => "buster",
      }
      LTS = [
        "squeeze",
      ]
    end
  end
end