diff options
Diffstat (limited to 'puppet/modules/apt/lib/facter/util')
m--------- | puppet/modules/apt | 0 | ||||
-rw-r--r-- | puppet/modules/apt/lib/facter/util/debian.rb | 18 | ||||
-rw-r--r-- | puppet/modules/apt/lib/facter/util/ubuntu.rb | 21 |
3 files changed, 39 insertions, 0 deletions
diff --git a/puppet/modules/apt b/puppet/modules/apt deleted file mode 160000 -Subproject 33c61e8df59db1abbed379a9e9790946060a8f1 diff --git a/puppet/modules/apt/lib/facter/util/debian.rb b/puppet/modules/apt/lib/facter/util/debian.rb new file mode 100644 index 00000000..290c17b5 --- /dev/null +++ b/puppet/modules/apt/lib/facter/util/debian.rb @@ -0,0 +1,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 diff --git a/puppet/modules/apt/lib/facter/util/ubuntu.rb b/puppet/modules/apt/lib/facter/util/ubuntu.rb new file mode 100644 index 00000000..52c15e80 --- /dev/null +++ b/puppet/modules/apt/lib/facter/util/ubuntu.rb @@ -0,0 +1,21 @@ +module Facter + module Util + module Ubuntu + CODENAMES = [ + "lucid", + "maverick", + "natty", + "oneiric", + "precise", + "quantal", + "raring", + "saucy", + "trusty", + "utopic", + "vivid", + "wily", + "xenial" + ] + end + end +end |