aboutsummaryrefslogtreecommitdiff
path: root/lib/facter/util/ubuntu.rb
blob: 52c15e80bcf0450167d3deef262112ea7e2e5a57 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
module Facter
  module Util
    module Ubuntu
      CODENAMES = [
        "lucid",
        "maverick",
        "natty",
        "oneiric",
        "precise",
        "quantal",
        "raring",
        "saucy",
        "trusty",
        "utopic",
        "vivid",
        "wily",
        "xenial"
      ]
    end
  end
end