facterdb 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (414) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +3 -0
  3. data/Gemfile +9 -0
  4. data/LICENSE +201 -0
  5. data/README.md +84 -0
  6. data/Rakefile +5 -0
  7. data/facterdb.gemspec +24 -0
  8. data/facts/1.6/archlinux-i386.facts +56 -0
  9. data/facts/1.6/archlinux-x86_64.facts +56 -0
  10. data/facts/1.6/centos-5-i386.facts +68 -0
  11. data/facts/1.6/centos-5-x86_64.facts +68 -0
  12. data/facts/1.6/centos-6-i386.facts +61 -0
  13. data/facts/1.6/centos-6-x86_64.facts +61 -0
  14. data/facts/1.6/centos-7-i386.facts +52 -0
  15. data/facts/1.6/centos-7-x86_64.facts +52 -0
  16. data/facts/1.6/debian-6-i386.facts +66 -0
  17. data/facts/1.6/debian-6-x86_64.facts +66 -0
  18. data/facts/1.6/debian-7-i386.facts +67 -0
  19. data/facts/1.6/debian-7-x86_64.facts +67 -0
  20. data/facts/1.6/debian-8-i386.facts +67 -0
  21. data/facts/1.6/debian-8-x86_64.facts +67 -0
  22. data/facts/1.6/fedora-19-i386.facts +44 -0
  23. data/facts/1.6/fedora-19-x86_64.facts +44 -0
  24. data/facts/1.6/freebsd-10-i386.facts +57 -0
  25. data/facts/1.6/freebsd-10-x86_64.facts +57 -0
  26. data/facts/1.6/freebsd-9-i386.facts +57 -0
  27. data/facts/1.6/freebsd-9-x86_64.facts +57 -0
  28. data/facts/1.6/gentoo-i386.facts +46 -0
  29. data/facts/1.6/gentoo-x86_64.facts +46 -0
  30. data/facts/1.6/opensuse-12-i386.facts +55 -0
  31. data/facts/1.6/opensuse-12-x86_64.facts +55 -0
  32. data/facts/1.6/opensuse-13-i386.facts +55 -0
  33. data/facts/1.6/opensuse-13-x86_64.facts +55 -0
  34. data/facts/1.6/oraclelinux-5-i386.facts +68 -0
  35. data/facts/1.6/oraclelinux-5-x86_64.facts +68 -0
  36. data/facts/1.6/oraclelinux-6-i386.facts +61 -0
  37. data/facts/1.6/oraclelinux-6-x86_64.facts +61 -0
  38. data/facts/1.6/oraclelinux-7-i386.facts +52 -0
  39. data/facts/1.6/oraclelinux-7-x86_64.facts +52 -0
  40. data/facts/1.6/redhat-5-i386.facts +68 -0
  41. data/facts/1.6/redhat-5-x86_64.facts +68 -0
  42. data/facts/1.6/redhat-6-i386.facts +61 -0
  43. data/facts/1.6/redhat-6-x86_64.facts +61 -0
  44. data/facts/1.6/redhat-7-i386.facts +52 -0
  45. data/facts/1.6/redhat-7-x86_64.facts +52 -0
  46. data/facts/1.6/scientific-5-i386.facts +68 -0
  47. data/facts/1.6/scientific-5-x86_64.facts +68 -0
  48. data/facts/1.6/scientific-6-i386.facts +61 -0
  49. data/facts/1.6/scientific-6-x86_64.facts +61 -0
  50. data/facts/1.6/scientific-7-i386.facts +52 -0
  51. data/facts/1.6/scientific-7-x86_64.facts +52 -0
  52. data/facts/1.6/sles-11-i386.facts +61 -0
  53. data/facts/1.6/sles-11-x86_64.facts +61 -0
  54. data/facts/1.6/solaris-11-x86_64.facts +60 -0
  55. data/facts/1.6/ubuntu-10.04-i386.facts +66 -0
  56. data/facts/1.6/ubuntu-10.04-x86_64.facts +66 -0
  57. data/facts/1.6/ubuntu-12.04-i386.facts +67 -0
  58. data/facts/1.6/ubuntu-12.04-x86_64.facts +67 -0
  59. data/facts/1.6/ubuntu-14.04-i386.facts +67 -0
  60. data/facts/1.6/ubuntu-14.04-x86_64.facts +67 -0
  61. data/facts/1.6/ubuntu-14.10-i386.facts +67 -0
  62. data/facts/1.6/ubuntu-14.10-x86_64.facts +67 -0
  63. data/facts/1.6/ubuntu-15.04-i386.facts +67 -0
  64. data/facts/1.6/ubuntu-15.04-x86_64.facts +67 -0
  65. data/facts/1.7/archlinux-i386.facts +82 -0
  66. data/facts/1.7/archlinux-x86_64.facts +82 -0
  67. data/facts/1.7/centos-5-i386.facts +82 -0
  68. data/facts/1.7/centos-5-x86_64.facts +82 -0
  69. data/facts/1.7/centos-6-i386.facts +77 -0
  70. data/facts/1.7/centos-6-x86_64.facts +77 -0
  71. data/facts/1.7/centos-7-i386.facts +75 -0
  72. data/facts/1.7/centos-7-x86_64.facts +75 -0
  73. data/facts/1.7/debian-6-i386.facts +88 -0
  74. data/facts/1.7/debian-6-x86_64.facts +88 -0
  75. data/facts/1.7/debian-7-i386.facts +84 -0
  76. data/facts/1.7/debian-7-x86_64.facts +84 -0
  77. data/facts/1.7/debian-8-i386.facts +87 -0
  78. data/facts/1.7/debian-8-x86_64.facts +87 -0
  79. data/facts/1.7/fedora-19-i386.facts +67 -0
  80. data/facts/1.7/fedora-19-x86_64.facts +67 -0
  81. data/facts/1.7/freebsd-10-i386.facts +76 -0
  82. data/facts/1.7/freebsd-10-x86_64.facts +76 -0
  83. data/facts/1.7/freebsd-9-i386.facts +76 -0
  84. data/facts/1.7/freebsd-9-x86_64.facts +76 -0
  85. data/facts/1.7/gentoo-i386.facts +70 -0
  86. data/facts/1.7/gentoo-x86_64.facts +70 -0
  87. data/facts/1.7/opensuse-12-i386.facts +70 -0
  88. data/facts/1.7/opensuse-12-x86_64.facts +70 -0
  89. data/facts/1.7/opensuse-13-i386.facts +67 -0
  90. data/facts/1.7/opensuse-13-x86_64.facts +67 -0
  91. data/facts/1.7/oraclelinux-5-i386.facts +82 -0
  92. data/facts/1.7/oraclelinux-5-x86_64.facts +82 -0
  93. data/facts/1.7/oraclelinux-6-i386.facts +77 -0
  94. data/facts/1.7/oraclelinux-6-x86_64.facts +77 -0
  95. data/facts/1.7/oraclelinux-7-i386.facts +75 -0
  96. data/facts/1.7/oraclelinux-7-x86_64.facts +75 -0
  97. data/facts/1.7/redhat-5-i386.facts +82 -0
  98. data/facts/1.7/redhat-5-x86_64.facts +82 -0
  99. data/facts/1.7/redhat-6-i386.facts +77 -0
  100. data/facts/1.7/redhat-6-x86_64.facts +77 -0
  101. data/facts/1.7/redhat-7-i386.facts +75 -0
  102. data/facts/1.7/redhat-7-x86_64.facts +75 -0
  103. data/facts/1.7/scientific-5-i386.facts +82 -0
  104. data/facts/1.7/scientific-5-x86_64.facts +82 -0
  105. data/facts/1.7/scientific-6-i386.facts +77 -0
  106. data/facts/1.7/scientific-6-x86_64.facts +77 -0
  107. data/facts/1.7/scientific-7-i386.facts +75 -0
  108. data/facts/1.7/scientific-7-x86_64.facts +75 -0
  109. data/facts/1.7/sles-11-i386.facts +82 -0
  110. data/facts/1.7/sles-11-x86_64.facts +82 -0
  111. data/facts/1.7/solaris-11-x86_64.facts +80 -0
  112. data/facts/1.7/ubuntu-10.04-i386.facts +87 -0
  113. data/facts/1.7/ubuntu-10.04-x86_64.facts +87 -0
  114. data/facts/1.7/ubuntu-12.04-i386.facts +89 -0
  115. data/facts/1.7/ubuntu-12.04-x86_64.facts +89 -0
  116. data/facts/1.7/ubuntu-14.04-i386.facts +83 -0
  117. data/facts/1.7/ubuntu-14.04-x86_64.facts +83 -0
  118. data/facts/1.7/ubuntu-14.10-i386.facts +83 -0
  119. data/facts/1.7/ubuntu-14.10-x86_64.facts +83 -0
  120. data/facts/1.7/ubuntu-15.04-i386.facts +83 -0
  121. data/facts/1.7/ubuntu-15.04-x86_64.facts +83 -0
  122. data/facts/2.0/archlinux-i386.facts +83 -0
  123. data/facts/2.0/archlinux-x86_64.facts +83 -0
  124. data/facts/2.0/centos-5-i386.facts +81 -0
  125. data/facts/2.0/centos-5-x86_64.facts +81 -0
  126. data/facts/2.0/centos-6-i386.facts +76 -0
  127. data/facts/2.0/centos-6-x86_64.facts +76 -0
  128. data/facts/2.0/centos-7-i386.facts +74 -0
  129. data/facts/2.0/centos-7-x86_64.facts +74 -0
  130. data/facts/2.0/debian-6-i386.facts +87 -0
  131. data/facts/2.0/debian-6-x86_64.facts +87 -0
  132. data/facts/2.0/debian-7-i386.facts +83 -0
  133. data/facts/2.0/debian-7-x86_64.facts +83 -0
  134. data/facts/2.0/debian-8-i386.facts +88 -0
  135. data/facts/2.0/debian-8-x86_64.facts +88 -0
  136. data/facts/2.0/fedora-19-i386.facts +66 -0
  137. data/facts/2.0/fedora-19-x86_64.facts +66 -0
  138. data/facts/2.0/freebsd-10-i386.facts +75 -0
  139. data/facts/2.0/freebsd-10-x86_64.facts +75 -0
  140. data/facts/2.0/freebsd-9-i386.facts +75 -0
  141. data/facts/2.0/freebsd-9-x86_64.facts +75 -0
  142. data/facts/2.0/gentoo-i386.facts +71 -0
  143. data/facts/2.0/gentoo-x86_64.facts +71 -0
  144. data/facts/2.0/opensuse-12-i386.facts +69 -0
  145. data/facts/2.0/opensuse-12-x86_64.facts +69 -0
  146. data/facts/2.0/opensuse-13-i386.facts +66 -0
  147. data/facts/2.0/opensuse-13-x86_64.facts +66 -0
  148. data/facts/2.0/oraclelinux-5-i386.facts +81 -0
  149. data/facts/2.0/oraclelinux-5-x86_64.facts +81 -0
  150. data/facts/2.0/oraclelinux-6-i386.facts +76 -0
  151. data/facts/2.0/oraclelinux-6-x86_64.facts +76 -0
  152. data/facts/2.0/oraclelinux-7-i386.facts +74 -0
  153. data/facts/2.0/oraclelinux-7-x86_64.facts +74 -0
  154. data/facts/2.0/redhat-5-i386.facts +81 -0
  155. data/facts/2.0/redhat-5-x86_64.facts +81 -0
  156. data/facts/2.0/redhat-6-i386.facts +76 -0
  157. data/facts/2.0/redhat-6-x86_64.facts +76 -0
  158. data/facts/2.0/redhat-7-i386.facts +74 -0
  159. data/facts/2.0/redhat-7-x86_64.facts +74 -0
  160. data/facts/2.0/scientific-5-i386.facts +81 -0
  161. data/facts/2.0/scientific-5-x86_64.facts +81 -0
  162. data/facts/2.0/scientific-6-i386.facts +76 -0
  163. data/facts/2.0/scientific-6-x86_64.facts +76 -0
  164. data/facts/2.0/scientific-7-i386.facts +74 -0
  165. data/facts/2.0/scientific-7-x86_64.facts +74 -0
  166. data/facts/2.0/sles-11-i386.facts +81 -0
  167. data/facts/2.0/sles-11-x86_64.facts +81 -0
  168. data/facts/2.0/solaris-11-x86_64.facts +82 -0
  169. data/facts/2.0/ubuntu-10.04-i386.facts +86 -0
  170. data/facts/2.0/ubuntu-10.04-x86_64.facts +86 -0
  171. data/facts/2.0/ubuntu-12.04-i386.facts +88 -0
  172. data/facts/2.0/ubuntu-12.04-x86_64.facts +88 -0
  173. data/facts/2.0/ubuntu-14.04-i386.facts +84 -0
  174. data/facts/2.0/ubuntu-14.04-x86_64.facts +84 -0
  175. data/facts/2.0/ubuntu-14.10-i386.facts +84 -0
  176. data/facts/2.0/ubuntu-14.10-x86_64.facts +84 -0
  177. data/facts/2.0/ubuntu-15.04-i386.facts +82 -0
  178. data/facts/2.0/ubuntu-15.04-x86_64.facts +82 -0
  179. data/facts/2.1/archlinux-i386.facts +99 -0
  180. data/facts/2.1/archlinux-x86_64.facts +99 -0
  181. data/facts/2.1/centos-5-i386.facts +92 -0
  182. data/facts/2.1/centos-5-x86_64.facts +92 -0
  183. data/facts/2.1/centos-6-i386.facts +88 -0
  184. data/facts/2.1/centos-6-x86_64.facts +88 -0
  185. data/facts/2.1/centos-7-i386.facts +92 -0
  186. data/facts/2.1/centos-7-x86_64.facts +92 -0
  187. data/facts/2.1/debian-6-i386.facts +102 -0
  188. data/facts/2.1/debian-6-x86_64.facts +102 -0
  189. data/facts/2.1/debian-7-i386.facts +98 -0
  190. data/facts/2.1/debian-7-x86_64.facts +98 -0
  191. data/facts/2.1/debian-8-i386.facts +105 -0
  192. data/facts/2.1/debian-8-x86_64.facts +105 -0
  193. data/facts/2.1/fedora-19-i386.facts +84 -0
  194. data/facts/2.1/fedora-19-x86_64.facts +84 -0
  195. data/facts/2.1/freebsd-10-i386.facts +75 -0
  196. data/facts/2.1/freebsd-10-x86_64.facts +75 -0
  197. data/facts/2.1/freebsd-9-i386.facts +75 -0
  198. data/facts/2.1/freebsd-9-x86_64.facts +75 -0
  199. data/facts/2.1/gentoo-i386.facts +96 -0
  200. data/facts/2.1/gentoo-x86_64.facts +96 -0
  201. data/facts/2.1/opensuse-12-i386.facts +81 -0
  202. data/facts/2.1/opensuse-12-x86_64.facts +81 -0
  203. data/facts/2.1/opensuse-13-i386.facts +85 -0
  204. data/facts/2.1/opensuse-13-x86_64.facts +85 -0
  205. data/facts/2.1/oraclelinux-5-i386.facts +92 -0
  206. data/facts/2.1/oraclelinux-5-x86_64.facts +92 -0
  207. data/facts/2.1/oraclelinux-6-i386.facts +88 -0
  208. data/facts/2.1/oraclelinux-6-x86_64.facts +88 -0
  209. data/facts/2.1/oraclelinux-7-i386.facts +92 -0
  210. data/facts/2.1/oraclelinux-7-x86_64.facts +92 -0
  211. data/facts/2.1/redhat-5-i386.facts +92 -0
  212. data/facts/2.1/redhat-5-x86_64.facts +92 -0
  213. data/facts/2.1/redhat-6-i386.facts +88 -0
  214. data/facts/2.1/redhat-6-x86_64.facts +88 -0
  215. data/facts/2.1/redhat-7-i386.facts +92 -0
  216. data/facts/2.1/redhat-7-x86_64.facts +92 -0
  217. data/facts/2.1/scientific-5-i386.facts +92 -0
  218. data/facts/2.1/scientific-5-x86_64.facts +92 -0
  219. data/facts/2.1/scientific-6-i386.facts +88 -0
  220. data/facts/2.1/scientific-6-x86_64.facts +88 -0
  221. data/facts/2.1/scientific-7-i386.facts +92 -0
  222. data/facts/2.1/scientific-7-x86_64.facts +92 -0
  223. data/facts/2.1/sles-11-i386.facts +94 -0
  224. data/facts/2.1/sles-11-x86_64.facts +94 -0
  225. data/facts/2.1/solaris-11-x86_64.facts +82 -0
  226. data/facts/2.1/ubuntu-10.04-i386.facts +101 -0
  227. data/facts/2.1/ubuntu-10.04-x86_64.facts +101 -0
  228. data/facts/2.1/ubuntu-12.04-i386.facts +103 -0
  229. data/facts/2.1/ubuntu-12.04-x86_64.facts +103 -0
  230. data/facts/2.1/ubuntu-14.04-i386.facts +99 -0
  231. data/facts/2.1/ubuntu-14.04-x86_64.facts +99 -0
  232. data/facts/2.1/ubuntu-14.10-i386.facts +100 -0
  233. data/facts/2.1/ubuntu-14.10-x86_64.facts +100 -0
  234. data/facts/2.1/ubuntu-15.04-i386.facts +90 -0
  235. data/facts/2.1/ubuntu-15.04-x86_64.facts +90 -0
  236. data/facts/2.2/archlinux-i386.facts +126 -0
  237. data/facts/2.2/archlinux-x86_64.facts +126 -0
  238. data/facts/2.2/centos-5-i386.facts +125 -0
  239. data/facts/2.2/centos-5-x86_64.facts +125 -0
  240. data/facts/2.2/centos-6-i386.facts +111 -0
  241. data/facts/2.2/centos-6-x86_64.facts +111 -0
  242. data/facts/2.2/centos-7-i386.facts +115 -0
  243. data/facts/2.2/centos-7-x86_64.facts +115 -0
  244. data/facts/2.2/debian-6-i386.facts +134 -0
  245. data/facts/2.2/debian-6-x86_64.facts +134 -0
  246. data/facts/2.2/debian-7-i386.facts +130 -0
  247. data/facts/2.2/debian-7-x86_64.facts +130 -0
  248. data/facts/2.2/debian-8-i386.facts +137 -0
  249. data/facts/2.2/debian-8-x86_64.facts +137 -0
  250. data/facts/2.2/fedora-19-i386.facts +106 -0
  251. data/facts/2.2/fedora-19-x86_64.facts +106 -0
  252. data/facts/2.2/freebsd-10-i386.facts +96 -0
  253. data/facts/2.2/freebsd-10-x86_64.facts +96 -0
  254. data/facts/2.2/freebsd-9-i386.facts +96 -0
  255. data/facts/2.2/freebsd-9-x86_64.facts +96 -0
  256. data/facts/2.2/gentoo-i386.facts +121 -0
  257. data/facts/2.2/gentoo-x86_64.facts +121 -0
  258. data/facts/2.2/opensuse-12-i386.facts +105 -0
  259. data/facts/2.2/opensuse-12-x86_64.facts +105 -0
  260. data/facts/2.2/opensuse-13-i386.facts +109 -0
  261. data/facts/2.2/opensuse-13-x86_64.facts +109 -0
  262. data/facts/2.2/oraclelinux-5-i386.facts +125 -0
  263. data/facts/2.2/oraclelinux-5-x86_64.facts +125 -0
  264. data/facts/2.2/oraclelinux-6-i386.facts +111 -0
  265. data/facts/2.2/oraclelinux-6-x86_64.facts +111 -0
  266. data/facts/2.2/oraclelinux-7-i386.facts +115 -0
  267. data/facts/2.2/oraclelinux-7-x86_64.facts +115 -0
  268. data/facts/2.2/redhat-5-i386.facts +125 -0
  269. data/facts/2.2/redhat-5-x86_64.facts +125 -0
  270. data/facts/2.2/redhat-6-i386.facts +111 -0
  271. data/facts/2.2/redhat-6-x86_64.facts +111 -0
  272. data/facts/2.2/redhat-7-i386.facts +115 -0
  273. data/facts/2.2/redhat-7-x86_64.facts +115 -0
  274. data/facts/2.2/scientific-5-i386.facts +125 -0
  275. data/facts/2.2/scientific-5-x86_64.facts +125 -0
  276. data/facts/2.2/scientific-6-i386.facts +111 -0
  277. data/facts/2.2/scientific-6-x86_64.facts +111 -0
  278. data/facts/2.2/scientific-7-i386.facts +115 -0
  279. data/facts/2.2/scientific-7-x86_64.facts +115 -0
  280. data/facts/2.2/sles-11-i386.facts +118 -0
  281. data/facts/2.2/sles-11-x86_64.facts +118 -0
  282. data/facts/2.2/solaris-11-x86_64.facts +105 -0
  283. data/facts/2.2/ubuntu-10.04-i386.facts +131 -0
  284. data/facts/2.2/ubuntu-10.04-x86_64.facts +131 -0
  285. data/facts/2.2/ubuntu-12.04-i386.facts +133 -0
  286. data/facts/2.2/ubuntu-12.04-x86_64.facts +133 -0
  287. data/facts/2.2/ubuntu-14.04-i386.facts +129 -0
  288. data/facts/2.2/ubuntu-14.04-x86_64.facts +129 -0
  289. data/facts/2.2/ubuntu-14.10-i386.facts +130 -0
  290. data/facts/2.2/ubuntu-14.10-x86_64.facts +130 -0
  291. data/facts/2.2/ubuntu-15.04-i386.facts +120 -0
  292. data/facts/2.2/ubuntu-15.04-x86_64.facts +120 -0
  293. data/facts/2.3/archlinux-i386.facts +127 -0
  294. data/facts/2.3/archlinux-x86_64.facts +127 -0
  295. data/facts/2.3/centos-5-i386.facts +126 -0
  296. data/facts/2.3/centos-5-x86_64.facts +126 -0
  297. data/facts/2.3/centos-6-i386.facts +112 -0
  298. data/facts/2.3/centos-6-x86_64.facts +112 -0
  299. data/facts/2.3/centos-7-i386.facts +116 -0
  300. data/facts/2.3/centos-7-x86_64.facts +116 -0
  301. data/facts/2.3/debian-6-i386.facts +135 -0
  302. data/facts/2.3/debian-6-x86_64.facts +135 -0
  303. data/facts/2.3/debian-7-i386.facts +131 -0
  304. data/facts/2.3/debian-7-x86_64.facts +131 -0
  305. data/facts/2.3/debian-8-i386.facts +138 -0
  306. data/facts/2.3/debian-8-x86_64.facts +138 -0
  307. data/facts/2.3/fedora-19-i386.facts +107 -0
  308. data/facts/2.3/fedora-19-x86_64.facts +107 -0
  309. data/facts/2.3/freebsd-10-i386.facts +97 -0
  310. data/facts/2.3/freebsd-10-x86_64.facts +97 -0
  311. data/facts/2.3/freebsd-9-i386.facts +97 -0
  312. data/facts/2.3/freebsd-9-x86_64.facts +97 -0
  313. data/facts/2.3/gentoo-i386.facts +122 -0
  314. data/facts/2.3/gentoo-x86_64.facts +122 -0
  315. data/facts/2.3/opensuse-12-i386.facts +106 -0
  316. data/facts/2.3/opensuse-12-x86_64.facts +106 -0
  317. data/facts/2.3/opensuse-13-i386.facts +110 -0
  318. data/facts/2.3/opensuse-13-x86_64.facts +110 -0
  319. data/facts/2.3/oraclelinux-5-i386.facts +126 -0
  320. data/facts/2.3/oraclelinux-5-x86_64.facts +126 -0
  321. data/facts/2.3/oraclelinux-6-i386.facts +112 -0
  322. data/facts/2.3/oraclelinux-6-x86_64.facts +112 -0
  323. data/facts/2.3/oraclelinux-7-i386.facts +116 -0
  324. data/facts/2.3/oraclelinux-7-x86_64.facts +116 -0
  325. data/facts/2.3/redhat-5-i386.facts +126 -0
  326. data/facts/2.3/redhat-5-x86_64.facts +126 -0
  327. data/facts/2.3/redhat-6-i386.facts +112 -0
  328. data/facts/2.3/redhat-6-x86_64.facts +112 -0
  329. data/facts/2.3/redhat-7-i386.facts +116 -0
  330. data/facts/2.3/redhat-7-x86_64.facts +116 -0
  331. data/facts/2.3/scientific-5-i386.facts +126 -0
  332. data/facts/2.3/scientific-5-x86_64.facts +126 -0
  333. data/facts/2.3/scientific-6-i386.facts +112 -0
  334. data/facts/2.3/scientific-6-x86_64.facts +112 -0
  335. data/facts/2.3/scientific-7-i386.facts +116 -0
  336. data/facts/2.3/scientific-7-x86_64.facts +116 -0
  337. data/facts/2.3/sles-11-i386.facts +119 -0
  338. data/facts/2.3/sles-11-x86_64.facts +119 -0
  339. data/facts/2.3/solaris-11-x86_64.facts +106 -0
  340. data/facts/2.3/ubuntu-10.04-i386.facts +132 -0
  341. data/facts/2.3/ubuntu-10.04-x86_64.facts +132 -0
  342. data/facts/2.3/ubuntu-12.04-i386.facts +134 -0
  343. data/facts/2.3/ubuntu-12.04-x86_64.facts +134 -0
  344. data/facts/2.3/ubuntu-14.04-i386.facts +130 -0
  345. data/facts/2.3/ubuntu-14.04-x86_64.facts +130 -0
  346. data/facts/2.3/ubuntu-14.10-i386.facts +131 -0
  347. data/facts/2.3/ubuntu-14.10-x86_64.facts +131 -0
  348. data/facts/2.3/ubuntu-15.04-i386.facts +121 -0
  349. data/facts/2.3/ubuntu-15.04-x86_64.facts +121 -0
  350. data/facts/2.4/archlinux-i386.facts +127 -0
  351. data/facts/2.4/archlinux-x86_64.facts +127 -0
  352. data/facts/2.4/centos-5-i386.facts +127 -0
  353. data/facts/2.4/centos-5-x86_64.facts +127 -0
  354. data/facts/2.4/centos-6-i386.facts +112 -0
  355. data/facts/2.4/centos-6-x86_64.facts +112 -0
  356. data/facts/2.4/centos-7-i386.facts +116 -0
  357. data/facts/2.4/centos-7-x86_64.facts +116 -0
  358. data/facts/2.4/debian-6-i386.facts +135 -0
  359. data/facts/2.4/debian-6-x86_64.facts +135 -0
  360. data/facts/2.4/debian-7-i386.facts +131 -0
  361. data/facts/2.4/debian-7-x86_64.facts +131 -0
  362. data/facts/2.4/debian-8-i386.facts +138 -0
  363. data/facts/2.4/debian-8-x86_64.facts +138 -0
  364. data/facts/2.4/fedora-19-i386.facts +107 -0
  365. data/facts/2.4/fedora-19-x86_64.facts +107 -0
  366. data/facts/2.4/freebsd-10-i386.facts +97 -0
  367. data/facts/2.4/freebsd-10-x86_64.facts +97 -0
  368. data/facts/2.4/freebsd-9-i386.facts +97 -0
  369. data/facts/2.4/freebsd-9-x86_64.facts +97 -0
  370. data/facts/2.4/gentoo-i386.facts +126 -0
  371. data/facts/2.4/gentoo-x86_64.facts +126 -0
  372. data/facts/2.4/opensuse-12-i386.facts +106 -0
  373. data/facts/2.4/opensuse-12-x86_64.facts +106 -0
  374. data/facts/2.4/opensuse-13-i386.facts +110 -0
  375. data/facts/2.4/opensuse-13-x86_64.facts +110 -0
  376. data/facts/2.4/oraclelinux-5-i386.facts +127 -0
  377. data/facts/2.4/oraclelinux-5-x86_64.facts +127 -0
  378. data/facts/2.4/oraclelinux-6-i386.facts +112 -0
  379. data/facts/2.4/oraclelinux-6-x86_64.facts +112 -0
  380. data/facts/2.4/oraclelinux-7-i386.facts +116 -0
  381. data/facts/2.4/oraclelinux-7-x86_64.facts +116 -0
  382. data/facts/2.4/redhat-5-i386.facts +127 -0
  383. data/facts/2.4/redhat-5-x86_64.facts +127 -0
  384. data/facts/2.4/redhat-6-i386.facts +112 -0
  385. data/facts/2.4/redhat-6-x86_64.facts +112 -0
  386. data/facts/2.4/redhat-7-i386.facts +116 -0
  387. data/facts/2.4/redhat-7-x86_64.facts +116 -0
  388. data/facts/2.4/scientific-5-i386.facts +127 -0
  389. data/facts/2.4/scientific-5-x86_64.facts +127 -0
  390. data/facts/2.4/scientific-6-i386.facts +112 -0
  391. data/facts/2.4/scientific-6-x86_64.facts +112 -0
  392. data/facts/2.4/scientific-7-i386.facts +116 -0
  393. data/facts/2.4/scientific-7-x86_64.facts +116 -0
  394. data/facts/2.4/sles-11-i386.facts +119 -0
  395. data/facts/2.4/sles-11-x86_64.facts +119 -0
  396. data/facts/2.4/solaris-11-x86_64.facts +106 -0
  397. data/facts/2.4/ubuntu-10.04-i386.facts +132 -0
  398. data/facts/2.4/ubuntu-10.04-x86_64.facts +132 -0
  399. data/facts/2.4/ubuntu-12.04-i386.facts +134 -0
  400. data/facts/2.4/ubuntu-12.04-x86_64.facts +134 -0
  401. data/facts/2.4/ubuntu-14.04-i386.facts +130 -0
  402. data/facts/2.4/ubuntu-14.04-x86_64.facts +130 -0
  403. data/facts/2.4/ubuntu-14.10-i386.facts +131 -0
  404. data/facts/2.4/ubuntu-14.10-x86_64.facts +131 -0
  405. data/facts/2.4/ubuntu-15.04-i386.facts +122 -0
  406. data/facts/2.4/ubuntu-15.04-x86_64.facts +122 -0
  407. data/facts/Gemfile +9 -0
  408. data/facts/Vagrantfile +174 -0
  409. data/facts/get_facts.sh +35 -0
  410. data/lib/facterdb/version.rb +5 -0
  411. data/lib/facterdb.rb +13 -0
  412. data/spec/facterdb_spec.rb +16 -0
  413. data/spec/spec_helper.rb +6 -0
  414. metadata +526 -0
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: f2e564789afbd63029f0718dcfffedc4e6a11300
4
+ data.tar.gz: 08502d79ea9cad3a1e114173629159a5178f88b2
5
+ SHA512:
6
+ metadata.gz: 7283f36ccf4f94c8e78c609df048a4014986241e9c7cfe7cfdbf8d4e3f0b479913270d246dc6456722e724c761cdf2c0dade5aa762b5f71cc3b2943be3528224
7
+ data.tar.gz: 97019782814c105f9e9f73d280eb8838283152548a2c168c12f0f500e9d44ce7b2aa69474605db84ecaca346b1ef0c5b7d56bd251deb57023067b109ff0505ce
data/.gitignore ADDED
@@ -0,0 +1,3 @@
1
+ .bundle/
2
+ Gemfile.lock
3
+ coverage/
data/Gemfile ADDED
@@ -0,0 +1,9 @@
1
+ source ENV['GEM_SOURCE'] || "https://rubygems.org"
2
+
3
+ gemspec
4
+
5
+ if facterversion = ENV['FACTER_GEM_VERSION']
6
+ gem 'facter', facterversion, :require => false
7
+ else
8
+ gem 'facter', :require => false
9
+ end
data/LICENSE ADDED
@@ -0,0 +1,201 @@
1
+ Apache License
2
+ Version 2.0, January 2004
3
+ http://www.apache.org/licenses/
4
+
5
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6
+
7
+ 1. Definitions.
8
+
9
+ "License" shall mean the terms and conditions for use, reproduction,
10
+ and distribution as defined by Sections 1 through 9 of this document.
11
+
12
+ "Licensor" shall mean the copyright owner or entity authorized by
13
+ the copyright owner that is granting the License.
14
+
15
+ "Legal Entity" shall mean the union of the acting entity and all
16
+ other entities that control, are controlled by, or are under common
17
+ control with that entity. For the purposes of this definition,
18
+ "control" means (i) the power, direct or indirect, to cause the
19
+ direction or management of such entity, whether by contract or
20
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
21
+ outstanding shares, or (iii) beneficial ownership of such entity.
22
+
23
+ "You" (or "Your") shall mean an individual or Legal Entity
24
+ exercising permissions granted by this License.
25
+
26
+ "Source" form shall mean the preferred form for making modifications,
27
+ including but not limited to software source code, documentation
28
+ source, and configuration files.
29
+
30
+ "Object" form shall mean any form resulting from mechanical
31
+ transformation or translation of a Source form, including but
32
+ not limited to compiled object code, generated documentation,
33
+ and conversions to other media types.
34
+
35
+ "Work" shall mean the work of authorship, whether in Source or
36
+ Object form, made available under the License, as indicated by a
37
+ copyright notice that is included in or attached to the work
38
+ (an example is provided in the Appendix below).
39
+
40
+ "Derivative Works" shall mean any work, whether in Source or Object
41
+ form, that is based on (or derived from) the Work and for which the
42
+ editorial revisions, annotations, elaborations, or other modifications
43
+ represent, as a whole, an original work of authorship. For the purposes
44
+ of this License, Derivative Works shall not include works that remain
45
+ separable from, or merely link (or bind by name) to the interfaces of,
46
+ the Work and Derivative Works thereof.
47
+
48
+ "Contribution" shall mean any work of authorship, including
49
+ the original version of the Work and any modifications or additions
50
+ to that Work or Derivative Works thereof, that is intentionally
51
+ submitted to Licensor for inclusion in the Work by the copyright owner
52
+ or by an individual or Legal Entity authorized to submit on behalf of
53
+ the copyright owner. For the purposes of this definition, "submitted"
54
+ means any form of electronic, verbal, or written communication sent
55
+ to the Licensor or its representatives, including but not limited to
56
+ communication on electronic mailing lists, source code control systems,
57
+ and issue tracking systems that are managed by, or on behalf of, the
58
+ Licensor for the purpose of discussing and improving the Work, but
59
+ excluding communication that is conspicuously marked or otherwise
60
+ designated in writing by the copyright owner as "Not a Contribution."
61
+
62
+ "Contributor" shall mean Licensor and any individual or Legal Entity
63
+ on behalf of whom a Contribution has been received by Licensor and
64
+ subsequently incorporated within the Work.
65
+
66
+ 2. Grant of Copyright License. Subject to the terms and conditions of
67
+ this License, each Contributor hereby grants to You a perpetual,
68
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
69
+ copyright license to reproduce, prepare Derivative Works of,
70
+ publicly display, publicly perform, sublicense, and distribute the
71
+ Work and such Derivative Works in Source or Object form.
72
+
73
+ 3. Grant of Patent License. Subject to the terms and conditions of
74
+ this License, each Contributor hereby grants to You a perpetual,
75
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
76
+ (except as stated in this section) patent license to make, have made,
77
+ use, offer to sell, sell, import, and otherwise transfer the Work,
78
+ where such license applies only to those patent claims licensable
79
+ by such Contributor that are necessarily infringed by their
80
+ Contribution(s) alone or by combination of their Contribution(s)
81
+ with the Work to which such Contribution(s) was submitted. If You
82
+ institute patent litigation against any entity (including a
83
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
84
+ or a Contribution incorporated within the Work constitutes direct
85
+ or contributory patent infringement, then any patent licenses
86
+ granted to You under this License for that Work shall terminate
87
+ as of the date such litigation is filed.
88
+
89
+ 4. Redistribution. You may reproduce and distribute copies of the
90
+ Work or Derivative Works thereof in any medium, with or without
91
+ modifications, and in Source or Object form, provided that You
92
+ meet the following conditions:
93
+
94
+ (a) You must give any other recipients of the Work or
95
+ Derivative Works a copy of this License; and
96
+
97
+ (b) You must cause any modified files to carry prominent notices
98
+ stating that You changed the files; and
99
+
100
+ (c) You must retain, in the Source form of any Derivative Works
101
+ that You distribute, all copyright, patent, trademark, and
102
+ attribution notices from the Source form of the Work,
103
+ excluding those notices that do not pertain to any part of
104
+ the Derivative Works; and
105
+
106
+ (d) If the Work includes a "NOTICE" text file as part of its
107
+ distribution, then any Derivative Works that You distribute must
108
+ include a readable copy of the attribution notices contained
109
+ within such NOTICE file, excluding those notices that do not
110
+ pertain to any part of the Derivative Works, in at least one
111
+ of the following places: within a NOTICE text file distributed
112
+ as part of the Derivative Works; within the Source form or
113
+ documentation, if provided along with the Derivative Works; or,
114
+ within a display generated by the Derivative Works, if and
115
+ wherever such third-party notices normally appear. The contents
116
+ of the NOTICE file are for informational purposes only and
117
+ do not modify the License. You may add Your own attribution
118
+ notices within Derivative Works that You distribute, alongside
119
+ or as an addendum to the NOTICE text from the Work, provided
120
+ that such additional attribution notices cannot be construed
121
+ as modifying the License.
122
+
123
+ You may add Your own copyright statement to Your modifications and
124
+ may provide additional or different license terms and conditions
125
+ for use, reproduction, or distribution of Your modifications, or
126
+ for any such Derivative Works as a whole, provided Your use,
127
+ reproduction, and distribution of the Work otherwise complies with
128
+ the conditions stated in this License.
129
+
130
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
131
+ any Contribution intentionally submitted for inclusion in the Work
132
+ by You to the Licensor shall be under the terms and conditions of
133
+ this License, without any additional terms or conditions.
134
+ Notwithstanding the above, nothing herein shall supersede or modify
135
+ the terms of any separate license agreement you may have executed
136
+ with Licensor regarding such Contributions.
137
+
138
+ 6. Trademarks. This License does not grant permission to use the trade
139
+ names, trademarks, service marks, or product names of the Licensor,
140
+ except as required for reasonable and customary use in describing the
141
+ origin of the Work and reproducing the content of the NOTICE file.
142
+
143
+ 7. Disclaimer of Warranty. Unless required by applicable law or
144
+ agreed to in writing, Licensor provides the Work (and each
145
+ Contributor provides its Contributions) on an "AS IS" BASIS,
146
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
147
+ implied, including, without limitation, any warranties or conditions
148
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
149
+ PARTICULAR PURPOSE. You are solely responsible for determining the
150
+ appropriateness of using or redistributing the Work and assume any
151
+ risks associated with Your exercise of permissions under this License.
152
+
153
+ 8. Limitation of Liability. In no event and under no legal theory,
154
+ whether in tort (including negligence), contract, or otherwise,
155
+ unless required by applicable law (such as deliberate and grossly
156
+ negligent acts) or agreed to in writing, shall any Contributor be
157
+ liable to You for damages, including any direct, indirect, special,
158
+ incidental, or consequential damages of any character arising as a
159
+ result of this License or out of the use or inability to use the
160
+ Work (including but not limited to damages for loss of goodwill,
161
+ work stoppage, computer failure or malfunction, or any and all
162
+ other commercial damages or losses), even if such Contributor
163
+ has been advised of the possibility of such damages.
164
+
165
+ 9. Accepting Warranty or Additional Liability. While redistributing
166
+ the Work or Derivative Works thereof, You may choose to offer,
167
+ and charge a fee for, acceptance of support, warranty, indemnity,
168
+ or other liability obligations and/or rights consistent with this
169
+ License. However, in accepting such obligations, You may act only
170
+ on Your own behalf and on Your sole responsibility, not on behalf
171
+ of any other Contributor, and only if You agree to indemnify,
172
+ defend, and hold each Contributor harmless for any liability
173
+ incurred by, or claims asserted against, such Contributor by reason
174
+ of your accepting any such warranty or additional liability.
175
+
176
+ END OF TERMS AND CONDITIONS
177
+
178
+ APPENDIX: How to apply the Apache License to your work.
179
+
180
+ To apply the Apache License to your work, attach the following
181
+ boilerplate notice, with the fields enclosed by brackets "[]"
182
+ replaced with your own identifying information. (Don't include
183
+ the brackets!) The text should be enclosed in the appropriate
184
+ comment syntax for the file format. We also recommend that a
185
+ file or class name and description of purpose be included on the
186
+ same "printed page" as the copyright notice for easier
187
+ identification within third-party archives.
188
+
189
+ Copyright [yyyy] [name of copyright owner]
190
+
191
+ Licensed under the Apache License, Version 2.0 (the "License");
192
+ you may not use this file except in compliance with the License.
193
+ You may obtain a copy of the License at
194
+
195
+ http://www.apache.org/licenses/LICENSE-2.0
196
+
197
+ Unless required by applicable law or agreed to in writing, software
198
+ distributed under the License is distributed on an "AS IS" BASIS,
199
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
200
+ See the License for the specific language governing permissions and
201
+ limitations under the License.
data/README.md ADDED
@@ -0,0 +1,84 @@
1
+ facterdb
2
+ ========
3
+
4
+ [![Build Status](https://img.shields.io/travis/mcanevet/facterdb/master.svg)](https://travis-ci.org/mcanevet/facterdb)
5
+ [![Code Climate](https://img.shields.io/codeclimate/github/mcanevet/facterdb.svg)](https://codeclimate.com/github/mcanevet/facterdb)
6
+ [![Gem Version](https://img.shields.io/gem/v/facterdb.svg)](https://rubygems.org/gems/facterdb)
7
+ [![Gem Downloads](https://img.shields.io/gem/dt/facterdb.svg)](https://rubygems.org/gems/facterdb)
8
+ [![Coverage Status](https://img.shields.io/coveralls/mcanevet/facterdb.svg)](https://coveralls.io/r/mcanevet/facterdb?branch=master)
9
+
10
+ A Gem that contains a lot of facts for a lot of Operating Systems.
11
+
12
+ Usage
13
+ -----
14
+
15
+ ```ruby
16
+ require 'facterdb'
17
+ include FacterDB
18
+ FacterDB::get_os_facts()
19
+ ```
20
+
21
+ Facter versions supported
22
+ -------------------------
23
+ * 1.6
24
+ * 1.7
25
+ * 2.0
26
+ * 2.1
27
+ * 2.2
28
+ * 2.3
29
+ * 2.4
30
+
31
+ Operating Systems supported
32
+ -----------------------------------------------
33
+ * ArchLinux
34
+ * CentOS 5
35
+ * CentOS 6
36
+ * CentOS 7
37
+ * Debian 6
38
+ * Debian 7
39
+ * Debian 8
40
+ * Fedora 19
41
+ * FreeBSD 9
42
+ * FreeBSD 10
43
+ * Gentoo
44
+ * OpenSuse 12
45
+ * OpenSuse 13
46
+ * Oracle 5
47
+ * Oracle 6
48
+ * Oracle 7
49
+ * RedHat 5
50
+ * RedHat 6
51
+ * RedHat 7
52
+ * Scientific 5
53
+ * Scientific 6
54
+ * Scientific 7
55
+ * SLES 11
56
+ * Solaris 11
57
+ * Ubuntu 10.04
58
+ * Ubuntu 12.04
59
+ * Ubuntu 14.04
60
+ * Ubuntu 14.10
61
+ * Ubuntu 15.04
62
+
63
+ Add new Operating System support
64
+ --------------------------------
65
+
66
+ There is `Vagrantfile` to automagically populate `facts` directory by spawning a new VM and launches a provisioning scripts.
67
+
68
+ ```
69
+ $ cd facts
70
+ $ vagrant up --provision
71
+ ```
72
+
73
+ Create i386 facts from x86_64's ones
74
+
75
+ ```
76
+ for file in facts/*/*-x86_64.facts; do cat $file | sed -e 's/x86_64/i386/' -e 's/amd64/i386/' > $(echo $file | sed 's/x86_64/i386/'); done
77
+ ```
78
+ Create RedHat, Scientific, OracleLinux facts from CentOS's ones
79
+
80
+ ```
81
+ for file in facts/*/centos-*.facts; do cat $file | sed -e 's/CentOS/RedHat/' > $(echo $file | sed 's/centos/redhat/'); done
82
+ for file in facts/*/centos-*.facts; do cat $file | sed -e 's/CentOS/Scientific/' > $(echo $file | sed 's/centos/scientific/'); done
83
+ for file in facts/*/centos-*.facts; do cat $file | sed -e 's/CentOS/OracleLinux/' > $(echo $file | sed 's/centos/oraclelinux/'); done
84
+ ```
data/Rakefile ADDED
@@ -0,0 +1,5 @@
1
+ begin
2
+ require 'rspec/core/rake_task'
3
+ RSpec::Core::RakeTask.new(:spec)
4
+ rescue LoadError
5
+ end
data/facterdb.gemspec ADDED
@@ -0,0 +1,24 @@
1
+ # -*- encoding: utf-8 -*-
2
+ $LOAD_PATH.unshift File.expand_path("../lib", __FILE__)
3
+ require "facterdb/version"
4
+
5
+ Gem::Specification.new do |s|
6
+ s.name = "facterdb"
7
+ s.version = FacterDB::Version::STRING
8
+ s.authors = ["Mickaël Canévet"]
9
+ s.email = ["mickael.canevet@camptocamp.com"]
10
+ s.homepage = "http://github.com/mcanevet/facterdb"
11
+ s.summary = "A Database of OS facts provided by Facter"
12
+ s.description = "Contains facts from many Facter version on many Operating Systems"
13
+ s.licenses = 'Apache-2.0'
14
+
15
+ s.files = `git ls-files`.split("\n")
16
+ s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
17
+ s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
18
+
19
+ s.add_development_dependency 'coveralls'
20
+ s.add_development_dependency 'rake'
21
+ s.add_development_dependency 'rspec'
22
+ s.add_runtime_dependency 'json'
23
+ s.add_runtime_dependency 'facter'
24
+ end
@@ -0,0 +1,56 @@
1
+ {
2
+ "gem_version": "~> 1.6.0",
3
+ "architecture": "i386",
4
+ "kernel": "Linux",
5
+ "domain": "example.com",
6
+ "macaddress": "08:00:27:1a:b1:01",
7
+ "operatingsystem": "Archlinux",
8
+ "facterversion": "1.6.18",
9
+ "fqdn": "foo.example.com",
10
+ "hardwareisa": "unknown",
11
+ "hardwaremodel": "i386",
12
+ "hostname": "foo",
13
+ "id": "root",
14
+ "interfaces": "eth0,lo",
15
+ "macaddress_eth0": "08:00:27:1a:b1:01",
16
+ "ipaddress": "10.0.2.15",
17
+ "kernelmajversion": "3.17",
18
+ "kernelrelease": "3.17.1-1-ARCH",
19
+ "kernelversion": "3.17.1",
20
+ "boardmanufacturer": "Oracle Corporation",
21
+ "boardproductname": "VirtualBox",
22
+ "boardserialnumber": "0",
23
+ "manufacturer": "innotek GmbH",
24
+ "productname": "VirtualBox",
25
+ "serialnumber": "0",
26
+ "type": "Other",
27
+ "memorysize": "493.76 MB",
28
+ "memoryfree": "387.41 MB",
29
+ "swapsize": "0.00 kB",
30
+ "swapfree": "0.00 kB",
31
+ "memorytotal": "493.76 MB",
32
+ "operatingsystemrelease": "3.17.1-1-ARCH",
33
+ "osfamily": "Linux",
34
+ "path": "/home/vagrant/vendor/bundler/ruby/2.1.0/bin:/usr/local/sbin:/usr/local/bin:/usr/bin:/usr/bin/site_perl:/usr/bin/vendor_perl:/usr/bin/core_perl:/var/lib/gems/1.8/bin/:/root/.gem/ruby/2.1.0/bin:/usr/lib64/ruby/gems/1.9.1/gems/bundler-1.7.12/bin:/usr/lib64/ruby/gems/2.0.0/gems/bundler-1.7.12/bin",
35
+ "physicalprocessorcount": 1,
36
+ "processor0": "Intel(R) Core(TM)2 Quad CPU Q6700 @ 2.66GHz",
37
+ "processor1": "Intel(R) Core(TM)2 Quad CPU Q6700 @ 2.66GHz",
38
+ "processor2": "Intel(R) Core(TM)2 Quad CPU Q6700 @ 2.66GHz",
39
+ "processor3": "Intel(R) Core(TM)2 Quad CPU Q6700 @ 2.66GHz",
40
+ "processorcount": "4",
41
+ "ps": "ps -ef",
42
+ "rubysitedir": "/usr/lib/ruby/site_ruby/2.1.0",
43
+ "rubyversion": "2.1.4",
44
+ "selinux": "false",
45
+ "sshdsakey": "AAAAB3NzaC1kc3MAAACBAPinyAL1PJuvq0UC2XR9XaAWXjTk185XXMRe6kPaiKQORM1GCUE7/7pauu+9E+ZrAZQot8Zf+1y0duoyfTETNoDqwd0eoHLFuJe6BvX7H2uBJtR+yvLgUWbO1scAwi3iyRrJpu1QeCbmfF5iLOWs2dFVR3hliW5SbvODO1Se9EInAAAAFQCI7GIuk+8o2G1Z6IlaQjjY9eNi8wAAAIEA1ktx5s0AoFts25kiDyn92YGBbslRjmmjrpiq4ZfnHmzAows3umO4JcJkn+G5KVXbwXbAXZSQMfdLe/uF8p043uAL/9iyQ78lBRLIVVgDHY/GPuMXR0x55FLlWd9jejIaZTrUjKcwkYVaohEyi2Yk3a/bHECjzj4tyRywVOnKQLEAAACAYvYAtlheRNHuNJGFrX/pIvM1m1UhPIf0BehRE6nBnRHBkrPOYPgdquwgMbHE3dqBou96uyo9R+/PjY5M5FQBN6b3mte8dhboCvtKFMnt6c3unJ7wJrRgpRHgJispAWKXbkCkzKUoGDfgktTlrWrc6XZSC53wy1EcN0GORMURguQ=",
46
+ "sshrsakey": "AAAAB3NzaC1yc2EAAAADAQABAAABAQDiT9PnxxOJPkyPjT5y0FzTVarpvk595qmpTU/7RLMMH4CzJ8GhKBOe5AsK2K7h3ASGY+e7Rpq+4I3U4VxFRl+7OkzEYtRxD+AEFbcdhqHriwCeQTQk2nLohzp6ZIudBZaYbr695I7NJ4zTDlw3juHV/lCKuYs06pvo/wttloYfqSusEJwZ/vcf8L2mJozRGN/2Ht7muieVmSLzgT+TOkEO5lalbLMGAdOZvUv2iY2PSXx2S9xzHIPd8dvKrgzyXQeNn/2/ew/5g5VUQah2Dnl0SyDxePbXjwUbHTDUEITIU4W1T6BGBt8/IN/cDX5PtiE5wplSffzTVpbgqMBsYqJB",
47
+ "sshecdsakey": "AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBLbdyGHekxuNYYPBEBhQKgWvyB6TsuP5FVjTW1aJDaDatkjUtNO7kHXTNueKwO/YnNqlP0XB8w1NWBIC5z8l/2o=",
48
+ "timezone": "AEST",
49
+ "uniqueid": "007f0100",
50
+ "uptime": "0:01 hours",
51
+ "uptime_days": 0,
52
+ "uptime_hours": 0,
53
+ "uptime_seconds": 63,
54
+ "virtual": "virtualbox",
55
+ "is_virtual": "true"
56
+ }
@@ -0,0 +1,56 @@
1
+ {
2
+ "gem_version": "~> 1.6.0",
3
+ "architecture": "x86_64",
4
+ "kernel": "Linux",
5
+ "domain": "example.com",
6
+ "macaddress": "08:00:27:1a:b1:01",
7
+ "operatingsystem": "Archlinux",
8
+ "facterversion": "1.6.18",
9
+ "fqdn": "foo.example.com",
10
+ "hardwareisa": "unknown",
11
+ "hardwaremodel": "x86_64",
12
+ "hostname": "foo",
13
+ "id": "root",
14
+ "interfaces": "eth0,lo",
15
+ "macaddress_eth0": "08:00:27:1a:b1:01",
16
+ "ipaddress": "10.0.2.15",
17
+ "kernelmajversion": "3.17",
18
+ "kernelrelease": "3.17.1-1-ARCH",
19
+ "kernelversion": "3.17.1",
20
+ "boardmanufacturer": "Oracle Corporation",
21
+ "boardproductname": "VirtualBox",
22
+ "boardserialnumber": "0",
23
+ "manufacturer": "innotek GmbH",
24
+ "productname": "VirtualBox",
25
+ "serialnumber": "0",
26
+ "type": "Other",
27
+ "memorysize": "493.76 MB",
28
+ "memoryfree": "387.41 MB",
29
+ "swapsize": "0.00 kB",
30
+ "swapfree": "0.00 kB",
31
+ "memorytotal": "493.76 MB",
32
+ "operatingsystemrelease": "3.17.1-1-ARCH",
33
+ "osfamily": "Linux",
34
+ "path": "/home/vagrant/vendor/bundler/ruby/2.1.0/bin:/usr/local/sbin:/usr/local/bin:/usr/bin:/usr/bin/site_perl:/usr/bin/vendor_perl:/usr/bin/core_perl:/var/lib/gems/1.8/bin/:/root/.gem/ruby/2.1.0/bin:/usr/lib64/ruby/gems/1.9.1/gems/bundler-1.7.12/bin:/usr/lib64/ruby/gems/2.0.0/gems/bundler-1.7.12/bin",
35
+ "physicalprocessorcount": 1,
36
+ "processor0": "Intel(R) Core(TM)2 Quad CPU Q6700 @ 2.66GHz",
37
+ "processor1": "Intel(R) Core(TM)2 Quad CPU Q6700 @ 2.66GHz",
38
+ "processor2": "Intel(R) Core(TM)2 Quad CPU Q6700 @ 2.66GHz",
39
+ "processor3": "Intel(R) Core(TM)2 Quad CPU Q6700 @ 2.66GHz",
40
+ "processorcount": "4",
41
+ "ps": "ps -ef",
42
+ "rubysitedir": "/usr/lib/ruby/site_ruby/2.1.0",
43
+ "rubyversion": "2.1.4",
44
+ "selinux": "false",
45
+ "sshdsakey": "AAAAB3NzaC1kc3MAAACBAPinyAL1PJuvq0UC2XR9XaAWXjTk185XXMRe6kPaiKQORM1GCUE7/7pauu+9E+ZrAZQot8Zf+1y0duoyfTETNoDqwd0eoHLFuJe6BvX7H2uBJtR+yvLgUWbO1scAwi3iyRrJpu1QeCbmfF5iLOWs2dFVR3hliW5SbvODO1Se9EInAAAAFQCI7GIuk+8o2G1Z6IlaQjjY9eNi8wAAAIEA1ktx5s0AoFts25kiDyn92YGBbslRjmmjrpiq4ZfnHmzAows3umO4JcJkn+G5KVXbwXbAXZSQMfdLe/uF8p043uAL/9iyQ78lBRLIVVgDHY/GPuMXR0x55FLlWd9jejIaZTrUjKcwkYVaohEyi2Yk3a/bHECjzj4tyRywVOnKQLEAAACAYvYAtlheRNHuNJGFrX/pIvM1m1UhPIf0BehRE6nBnRHBkrPOYPgdquwgMbHE3dqBou96uyo9R+/PjY5M5FQBN6b3mte8dhboCvtKFMnt6c3unJ7wJrRgpRHgJispAWKXbkCkzKUoGDfgktTlrWrc6XZSC53wy1EcN0GORMURguQ=",
46
+ "sshrsakey": "AAAAB3NzaC1yc2EAAAADAQABAAABAQDiT9PnxxOJPkyPjT5y0FzTVarpvk595qmpTU/7RLMMH4CzJ8GhKBOe5AsK2K7h3ASGY+e7Rpq+4I3U4VxFRl+7OkzEYtRxD+AEFbcdhqHriwCeQTQk2nLohzp6ZIudBZaYbr695I7NJ4zTDlw3juHV/lCKuYs06pvo/wttloYfqSusEJwZ/vcf8L2mJozRGN/2Ht7muieVmSLzgT+TOkEO5lalbLMGAdOZvUv2iY2PSXx2S9xzHIPd8dvKrgzyXQeNn/2/ew/5g5VUQah2Dnl0SyDxePbXjwUbHTDUEITIU4W1T6BGBt8/IN/cDX5PtiE5wplSffzTVpbgqMBsYqJB",
47
+ "sshecdsakey": "AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBLbdyGHekxuNYYPBEBhQKgWvyB6TsuP5FVjTW1aJDaDatkjUtNO7kHXTNueKwO/YnNqlP0XB8w1NWBIC5z8l/2o=",
48
+ "timezone": "AEST",
49
+ "uniqueid": "007f0100",
50
+ "uptime": "0:01 hours",
51
+ "uptime_days": 0,
52
+ "uptime_hours": 0,
53
+ "uptime_seconds": 63,
54
+ "virtual": "virtualbox",
55
+ "is_virtual": "true"
56
+ }
@@ -0,0 +1,68 @@
1
+ {
2
+ "gem_version": "~> 1.6.0",
3
+ "architecture": "i386",
4
+ "kernel": "Linux",
5
+ "domain": "example.com",
6
+ "macaddress": "08:00:27:19:8C:8D",
7
+ "operatingsystem": "CentOS",
8
+ "lsbdistid": "CentOS",
9
+ "facterversion": "1.6.18",
10
+ "fqdn": "foo.example.com",
11
+ "hardwareisa": "i386",
12
+ "hardwaremodel": "i386",
13
+ "hostname": "foo",
14
+ "id": "root",
15
+ "interfaces": "eth0,lo,sit0",
16
+ "ipaddress_eth0": "10.0.2.15",
17
+ "macaddress_eth0": "08:00:27:19:8C:8D",
18
+ "netmask_eth0": "255.255.255.0",
19
+ "mtu_eth0": "1500",
20
+ "ipaddress_lo": "127.0.0.1",
21
+ "netmask_lo": "255.0.0.0",
22
+ "mtu_lo": "16436",
23
+ "mtu_sit0": "1480",
24
+ "ipaddress": "10.0.2.15",
25
+ "kernelmajversion": "2.6",
26
+ "kernelrelease": "2.6.18-371.el5",
27
+ "kernelversion": "2.6.18",
28
+ "lsbdistcodename": "Final",
29
+ "lsbdistdescription": "CentOS release 5.10 (Final)",
30
+ "lsbdistrelease": "5.10",
31
+ "lsbmajdistrelease": "5",
32
+ "lsbrelease": ":core-4.0-i386:core-4.0-ia32:core-4.0-noarch:graphics-4.0-amd64:graphics-4.0-ia32:graphics-4.0-noarch:printing-4.0-amd64:printing-4.0-ia32:printing-4.0-noarch",
33
+ "boardmanufacturer": "Oracle Corporation",
34
+ "boardproductname": "VirtualBox",
35
+ "boardserialnumber": "0",
36
+ "manufacturer": "innotek GmbH",
37
+ "productname": "VirtualBox",
38
+ "serialnumber": "0",
39
+ "type": "Other",
40
+ "memorysize": "497.78 MB",
41
+ "memoryfree": "380.83 MB",
42
+ "swapsize": "1023.99 MB",
43
+ "swapfree": "1023.99 MB",
44
+ "memorytotal": "497.78 MB",
45
+ "netmask": "255.255.255.0",
46
+ "network_eth0": "10.0.2.0",
47
+ "network_lo": "127.0.0.0",
48
+ "operatingsystemrelease": "5.10",
49
+ "osfamily": "RedHat",
50
+ "path": "/home/vagrant/vendor/bundler/ruby/1.9.1/bin:/usr/kerberos/sbin:/usr/local/sbin:/usr/sbin:/sbin:/usr/local/rvm/gems/ruby-1.9.3-p551/bin:/usr/local/rvm/gems/ruby-1.9.3-p551@global/bin:/usr/local/rvm/rubies/ruby-1.9.3-p551/bin:/usr/kerberos/bin:/usr/local/bin:/bin:/usr/bin:/usr/local/rvm/bin:/root/bin:/var/lib/gems/1.8/bin/:/root/.gem/ruby/2.1.0/bin:/usr/lib64/ruby/gems/1.9.1/gems/bundler-1.7.12/bin:/usr/lib64/ruby/gems/2.0.0/gems/bundler-1.7.12/bin",
51
+ "physicalprocessorcount": 1,
52
+ "processor0": "Intel(R) Core(TM)2 Quad CPU Q6700 @ 2.66GHz",
53
+ "processorcount": "1",
54
+ "ps": "ps -ef",
55
+ "rubysitedir": "/usr/local/rvm/rubies/ruby-1.9.3-p551/lib/ruby/site_ruby/1.9.1",
56
+ "rubyversion": "1.9.3",
57
+ "selinux": "false",
58
+ "sshdsakey": "AAAAB3NzaC1kc3MAAACBAI1EBw8fPqaiLzpwjRh52PEJnQ696PTCROoNIaZ4/T6//MBfj2BNLjybRq5AM9QHuzidaC7rnKg11oIPWp72QGB8V5UU5gKqK9lUbvf2OuUvDPQeKlKKHlX6uLlcZzm7bJRDmAkxynA2JCKCrYmPF1/7YVMbmwYI1JGEWmX+WHsXAAAAFQCThaHpflM6sqGlkaz95C0qGUpD6QAAAIAugv/a0EajQxFbn6sEXDrZOWhV73Vxy2xie9s+neNeJahHd1YPlCj4waTj0L3UltLysV2Ui1rZK7zVSp5iMWa0hpVA7Z52f0g/aag7XL4OyLeqci+R8dUB7+NfbEbMtGyGvVBsA5ohEM40FKCZZ23RzEdNIXIOfun3M4xC1PlHHwAAAIAs6D3R0mSLJlRPUIlCKf0pi+zhrTl56T0JCjKSwX2vR9pW2EOFoD7JO2R7CWpVSKe/qaNSUvebEzEXtdbdUV73yUPpnNnrqtqIgtcW9qzCQ07WRXCVefplSfLfgiW57gVoPUwtrCrgv1Wwl+YcyvJ80TJxmQkm0B+roMyVGygybQ==",
59
+ "sshrsakey": "AAAAB3NzaC1yc2EAAAABIwAAAQEAl0Za1Vkqscbuk+8u5ZzFh0xDLxDizYb2BiSOWaBo16Q/rvYyA13OPX11dadRizypGgWD54YzK1j61uS89g37zgEEfiszFdzeZp3Hg6jAMF6KTIG6bWQ1eQhwl+LZPwkeE5GTNe5y/424lzxBZ8Fx0BgcWbgy1Q3CU9EhPIW+evj09oFxmAl0Wmuht+KVBl9FTtQSeao9l5BPPyEB6mmucwgkwafckFrFq8c+bJ44F4mSItOljMsLvxRyAeRYE44kzNDSISyjRD8oVB2iKi/+gUQsPx2UmeapCvMoBKuZD8dU5LBqMst4KtotvUCwLw/x/B/BSEOXZp7LNVWS5abaNQ==",
60
+ "timezone": "PST",
61
+ "uniqueid": "007f0100",
62
+ "uptime": "0:04 hours",
63
+ "uptime_days": 0,
64
+ "uptime_hours": 0,
65
+ "uptime_seconds": 257,
66
+ "virtual": "virtualbox",
67
+ "is_virtual": "true"
68
+ }
@@ -0,0 +1,68 @@
1
+ {
2
+ "gem_version": "~> 1.6.0",
3
+ "architecture": "x86_64",
4
+ "kernel": "Linux",
5
+ "domain": "example.com",
6
+ "macaddress": "08:00:27:19:8C:8D",
7
+ "operatingsystem": "CentOS",
8
+ "lsbdistid": "CentOS",
9
+ "facterversion": "1.6.18",
10
+ "fqdn": "foo.example.com",
11
+ "hardwareisa": "x86_64",
12
+ "hardwaremodel": "x86_64",
13
+ "hostname": "foo",
14
+ "id": "root",
15
+ "interfaces": "eth0,lo,sit0",
16
+ "ipaddress_eth0": "10.0.2.15",
17
+ "macaddress_eth0": "08:00:27:19:8C:8D",
18
+ "netmask_eth0": "255.255.255.0",
19
+ "mtu_eth0": "1500",
20
+ "ipaddress_lo": "127.0.0.1",
21
+ "netmask_lo": "255.0.0.0",
22
+ "mtu_lo": "16436",
23
+ "mtu_sit0": "1480",
24
+ "ipaddress": "10.0.2.15",
25
+ "kernelmajversion": "2.6",
26
+ "kernelrelease": "2.6.18-371.el5",
27
+ "kernelversion": "2.6.18",
28
+ "lsbdistcodename": "Final",
29
+ "lsbdistdescription": "CentOS release 5.10 (Final)",
30
+ "lsbdistrelease": "5.10",
31
+ "lsbmajdistrelease": "5",
32
+ "lsbrelease": ":core-4.0-amd64:core-4.0-ia32:core-4.0-noarch:graphics-4.0-amd64:graphics-4.0-ia32:graphics-4.0-noarch:printing-4.0-amd64:printing-4.0-ia32:printing-4.0-noarch",
33
+ "boardmanufacturer": "Oracle Corporation",
34
+ "boardproductname": "VirtualBox",
35
+ "boardserialnumber": "0",
36
+ "manufacturer": "innotek GmbH",
37
+ "productname": "VirtualBox",
38
+ "serialnumber": "0",
39
+ "type": "Other",
40
+ "memorysize": "497.78 MB",
41
+ "memoryfree": "380.83 MB",
42
+ "swapsize": "1023.99 MB",
43
+ "swapfree": "1023.99 MB",
44
+ "memorytotal": "497.78 MB",
45
+ "netmask": "255.255.255.0",
46
+ "network_eth0": "10.0.2.0",
47
+ "network_lo": "127.0.0.0",
48
+ "operatingsystemrelease": "5.10",
49
+ "osfamily": "RedHat",
50
+ "path": "/home/vagrant/vendor/bundler/ruby/1.9.1/bin:/usr/kerberos/sbin:/usr/local/sbin:/usr/sbin:/sbin:/usr/local/rvm/gems/ruby-1.9.3-p551/bin:/usr/local/rvm/gems/ruby-1.9.3-p551@global/bin:/usr/local/rvm/rubies/ruby-1.9.3-p551/bin:/usr/kerberos/bin:/usr/local/bin:/bin:/usr/bin:/usr/local/rvm/bin:/root/bin:/var/lib/gems/1.8/bin/:/root/.gem/ruby/2.1.0/bin:/usr/lib64/ruby/gems/1.9.1/gems/bundler-1.7.12/bin:/usr/lib64/ruby/gems/2.0.0/gems/bundler-1.7.12/bin",
51
+ "physicalprocessorcount": 1,
52
+ "processor0": "Intel(R) Core(TM)2 Quad CPU Q6700 @ 2.66GHz",
53
+ "processorcount": "1",
54
+ "ps": "ps -ef",
55
+ "rubysitedir": "/usr/local/rvm/rubies/ruby-1.9.3-p551/lib/ruby/site_ruby/1.9.1",
56
+ "rubyversion": "1.9.3",
57
+ "selinux": "false",
58
+ "sshdsakey": "AAAAB3NzaC1kc3MAAACBAI1EBw8fPqaiLzpwjRh52PEJnQ696PTCROoNIaZ4/T6//MBfj2BNLjybRq5AM9QHuzidaC7rnKg11oIPWp72QGB8V5UU5gKqK9lUbvf2OuUvDPQeKlKKHlX6uLlcZzm7bJRDmAkxynA2JCKCrYmPF1/7YVMbmwYI1JGEWmX+WHsXAAAAFQCThaHpflM6sqGlkaz95C0qGUpD6QAAAIAugv/a0EajQxFbn6sEXDrZOWhV73Vxy2xie9s+neNeJahHd1YPlCj4waTj0L3UltLysV2Ui1rZK7zVSp5iMWa0hpVA7Z52f0g/aag7XL4OyLeqci+R8dUB7+NfbEbMtGyGvVBsA5ohEM40FKCZZ23RzEdNIXIOfun3M4xC1PlHHwAAAIAs6D3R0mSLJlRPUIlCKf0pi+zhrTl56T0JCjKSwX2vR9pW2EOFoD7JO2R7CWpVSKe/qaNSUvebEzEXtdbdUV73yUPpnNnrqtqIgtcW9qzCQ07WRXCVefplSfLfgiW57gVoPUwtrCrgv1Wwl+YcyvJ80TJxmQkm0B+roMyVGygybQ==",
59
+ "sshrsakey": "AAAAB3NzaC1yc2EAAAABIwAAAQEAl0Za1Vkqscbuk+8u5ZzFh0xDLxDizYb2BiSOWaBo16Q/rvYyA13OPX11dadRizypGgWD54YzK1j61uS89g37zgEEfiszFdzeZp3Hg6jAMF6KTIG6bWQ1eQhwl+LZPwkeE5GTNe5y/424lzxBZ8Fx0BgcWbgy1Q3CU9EhPIW+evj09oFxmAl0Wmuht+KVBl9FTtQSeao9l5BPPyEB6mmucwgkwafckFrFq8c+bJ44F4mSItOljMsLvxRyAeRYE44kzNDSISyjRD8oVB2iKi/+gUQsPx2UmeapCvMoBKuZD8dU5LBqMst4KtotvUCwLw/x/B/BSEOXZp7LNVWS5abaNQ==",
60
+ "timezone": "PST",
61
+ "uniqueid": "007f0100",
62
+ "uptime": "0:04 hours",
63
+ "uptime_days": 0,
64
+ "uptime_hours": 0,
65
+ "uptime_seconds": 257,
66
+ "virtual": "virtualbox",
67
+ "is_virtual": "true"
68
+ }