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