foreman_netbox 1.0.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (156) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE +619 -0
  3. data/README.md +50 -0
  4. data/Rakefile +50 -0
  5. data/app/contracts/foreman_netbox/device_contract.rb +42 -0
  6. data/app/contracts/foreman_netbox/params/interface_params.rb +16 -0
  7. data/app/contracts/foreman_netbox/params/ip_address_params.rb +15 -0
  8. data/app/contracts/foreman_netbox/params/tenant_params.rb +13 -0
  9. data/app/contracts/foreman_netbox/virtual_machine_contract.rb +29 -0
  10. data/app/interactors/foreman_netbox/concerns/facts.rb +11 -0
  11. data/app/interactors/foreman_netbox/concerns/primary_ips.rb +25 -0
  12. data/app/interactors/foreman_netbox/delete_host/delete_device.rb +20 -0
  13. data/app/interactors/foreman_netbox/delete_host/delete_virtual_machine.rb +20 -0
  14. data/app/interactors/foreman_netbox/delete_host/organizer.rb +12 -0
  15. data/app/interactors/foreman_netbox/sync_host/organizer.rb +35 -0
  16. data/app/interactors/foreman_netbox/sync_host/sync_device/create.rb +36 -0
  17. data/app/interactors/foreman_netbox/sync_host/sync_device/find.rb +41 -0
  18. data/app/interactors/foreman_netbox/sync_host/sync_device/organizer.rb +30 -0
  19. data/app/interactors/foreman_netbox/sync_host/sync_device/save_netbox_url.rb +29 -0
  20. data/app/interactors/foreman_netbox/sync_host/sync_device/sync_device_role/create.rb +32 -0
  21. data/app/interactors/foreman_netbox/sync_host/sync_device/sync_device_role/find.rb +28 -0
  22. data/app/interactors/foreman_netbox/sync_host/sync_device/sync_device_role/organizer.rb +20 -0
  23. data/app/interactors/foreman_netbox/sync_host/sync_device/sync_device_type/create.rb +34 -0
  24. data/app/interactors/foreman_netbox/sync_host/sync_device/sync_device_type/find.rb +28 -0
  25. data/app/interactors/foreman_netbox/sync_host/sync_device/sync_device_type/organizer.rb +22 -0
  26. data/app/interactors/foreman_netbox/sync_host/sync_device/sync_device_type/sync_manufacturer/create.rb +34 -0
  27. data/app/interactors/foreman_netbox/sync_host/sync_device/sync_device_type/sync_manufacturer/find.rb +40 -0
  28. data/app/interactors/foreman_netbox/sync_host/sync_device/sync_device_type/sync_manufacturer/organizer.rb +22 -0
  29. data/app/interactors/foreman_netbox/sync_host/sync_device/sync_device_type/update.rb +33 -0
  30. data/app/interactors/foreman_netbox/sync_host/sync_device/sync_interfaces/create.rb +37 -0
  31. data/app/interactors/foreman_netbox/sync_host/sync_device/sync_interfaces/delete.rb +36 -0
  32. data/app/interactors/foreman_netbox/sync_host/sync_device/sync_interfaces/find.rb +30 -0
  33. data/app/interactors/foreman_netbox/sync_host/sync_device/sync_interfaces/organizer.rb +23 -0
  34. data/app/interactors/foreman_netbox/sync_host/sync_device/sync_interfaces/sync_ip_addresses/create.rb +46 -0
  35. data/app/interactors/foreman_netbox/sync_host/sync_device/sync_interfaces/sync_ip_addresses/delete.rb +40 -0
  36. data/app/interactors/foreman_netbox/sync_host/sync_device/sync_interfaces/sync_ip_addresses/find.rb +32 -0
  37. data/app/interactors/foreman_netbox/sync_host/sync_device/sync_interfaces/sync_ip_addresses/organizer.rb +24 -0
  38. data/app/interactors/foreman_netbox/sync_host/sync_device/sync_interfaces/sync_ip_addresses/update.rb +39 -0
  39. data/app/interactors/foreman_netbox/sync_host/sync_device/sync_interfaces/update.rb +38 -0
  40. data/app/interactors/foreman_netbox/sync_host/sync_device/sync_site/create.rb +32 -0
  41. data/app/interactors/foreman_netbox/sync_host/sync_device/sync_site/find.rb +28 -0
  42. data/app/interactors/foreman_netbox/sync_host/sync_device/sync_site/organizer.rb +25 -0
  43. data/app/interactors/foreman_netbox/sync_host/sync_device/sync_site/update.rb +35 -0
  44. data/app/interactors/foreman_netbox/sync_host/sync_device/update.rb +85 -0
  45. data/app/interactors/foreman_netbox/sync_host/sync_device/validate.rb +25 -0
  46. data/app/interactors/foreman_netbox/sync_host/sync_tenant/create.rb +30 -0
  47. data/app/interactors/foreman_netbox/sync_host/sync_tenant/find.rb +26 -0
  48. data/app/interactors/foreman_netbox/sync_host/sync_tenant/organizer.rb +19 -0
  49. data/app/interactors/foreman_netbox/sync_host/sync_tenant/update.rb +33 -0
  50. data/app/interactors/foreman_netbox/sync_host/sync_virtual_machine/create.rb +34 -0
  51. data/app/interactors/foreman_netbox/sync_host/sync_virtual_machine/find.rb +34 -0
  52. data/app/interactors/foreman_netbox/sync_host/sync_virtual_machine/organizer.rb +28 -0
  53. data/app/interactors/foreman_netbox/sync_host/sync_virtual_machine/save_netbox_url.rb +31 -0
  54. data/app/interactors/foreman_netbox/sync_host/sync_virtual_machine/sync_cluster/create.rb +35 -0
  55. data/app/interactors/foreman_netbox/sync_host/sync_virtual_machine/sync_cluster/find.rb +28 -0
  56. data/app/interactors/foreman_netbox/sync_host/sync_virtual_machine/sync_cluster/organizer.rb +22 -0
  57. data/app/interactors/foreman_netbox/sync_host/sync_virtual_machine/sync_cluster/sync_cluster_type/create.rb +34 -0
  58. data/app/interactors/foreman_netbox/sync_host/sync_virtual_machine/sync_cluster/sync_cluster_type/find.rb +32 -0
  59. data/app/interactors/foreman_netbox/sync_host/sync_virtual_machine/sync_cluster/sync_cluster_type/organizer.rb +22 -0
  60. data/app/interactors/foreman_netbox/sync_host/sync_virtual_machine/sync_cluster/update.rb +35 -0
  61. data/app/interactors/foreman_netbox/sync_host/sync_virtual_machine/sync_interfaces/create.rb +33 -0
  62. data/app/interactors/foreman_netbox/sync_host/sync_virtual_machine/sync_interfaces/delete.rb +36 -0
  63. data/app/interactors/foreman_netbox/sync_host/sync_virtual_machine/sync_interfaces/find.rb +30 -0
  64. data/app/interactors/foreman_netbox/sync_host/sync_virtual_machine/sync_interfaces/organizer.rb +23 -0
  65. data/app/interactors/foreman_netbox/sync_host/sync_virtual_machine/sync_interfaces/sync_ip_addresses/create.rb +46 -0
  66. data/app/interactors/foreman_netbox/sync_host/sync_virtual_machine/sync_interfaces/sync_ip_addresses/delete.rb +40 -0
  67. data/app/interactors/foreman_netbox/sync_host/sync_virtual_machine/sync_interfaces/sync_ip_addresses/find.rb +28 -0
  68. data/app/interactors/foreman_netbox/sync_host/sync_virtual_machine/sync_interfaces/sync_ip_addresses/organizer.rb +24 -0
  69. data/app/interactors/foreman_netbox/sync_host/sync_virtual_machine/sync_interfaces/sync_ip_addresses/update.rb +39 -0
  70. data/app/interactors/foreman_netbox/sync_host/sync_virtual_machine/sync_interfaces/update.rb +38 -0
  71. data/app/interactors/foreman_netbox/sync_host/sync_virtual_machine/update.rb +82 -0
  72. data/app/interactors/foreman_netbox/sync_host/sync_virtual_machine/validate.rb +25 -0
  73. data/app/jobs/foreman_netbox/sync_host_job.rb +19 -0
  74. data/app/lib/foreman_netbox/api.rb +12 -0
  75. data/app/models/concerns/foreman_netbox/host_extensions.rb +27 -0
  76. data/app/models/concerns/foreman_netbox/location_extensions.rb +13 -0
  77. data/app/models/concerns/foreman_netbox/nic/base_extensions.rb +23 -0
  78. data/app/models/concerns/foreman_netbox/user_usergroup_common_extensions.rb +18 -0
  79. data/app/models/foreman_netbox/netbox_facet.rb +34 -0
  80. data/app/models/orchestration/netbox.rb +64 -0
  81. data/app/models/setting/netbox.rb +32 -0
  82. data/app/services/foreman_netbox/cached_netbox_parameters.rb +103 -0
  83. data/app/services/foreman_netbox/netbox_parameters.rb +185 -0
  84. data/app/services/foreman_netbox/netbox_parameters_comparator.rb +96 -0
  85. data/app/views/hosts/_netbox_tab.html.erb +28 -0
  86. data/config/routes.rb +4 -0
  87. data/db/migrate/20200527135812_create_netbox_facet.rb +12 -0
  88. data/db/migrate/20200604141933_add_sync_info_to_netbox_facet.rb +8 -0
  89. data/db/migrate/20200708093607_add_raw_data_to_netbox_facet.rb +7 -0
  90. data/lib/foreman_netbox.rb +6 -0
  91. data/lib/foreman_netbox/engine.rb +64 -0
  92. data/lib/foreman_netbox/version.rb +5 -0
  93. data/lib/tasks/foreman_netbox_tasks.rake +67 -0
  94. data/test/factories/host.rb +17 -0
  95. data/test/factories/netbox_facet.rb +17 -0
  96. data/test/fixtures/facts/k8s_physical_host.json +328 -0
  97. data/test/fixtures/facts/rhel_physical_host.json +512 -0
  98. data/test/fixtures/facts/rhel_virtual_host.json +455 -0
  99. data/test/fixtures/netbox_device_raw_data.json +330 -0
  100. data/test/fixtures/netbox_virtual_machine_raw_data.json +241 -0
  101. data/test/integration/foreman_netbox/sync_k8s_physical_host_test.rb +81 -0
  102. data/test/integration/foreman_netbox/sync_rhel_physical_host_test.rb +81 -0
  103. data/test/integration/foreman_netbox/sync_rhel_virtual_host_test.rb +93 -0
  104. data/test/interactors/foreman_netbox/sync_host/organizer_test.rb +78 -0
  105. data/test/interactors/foreman_netbox/sync_host/sync_device/create_test.rb +65 -0
  106. data/test/interactors/foreman_netbox/sync_host/sync_device/find_test.rb +105 -0
  107. data/test/interactors/foreman_netbox/sync_host/sync_device/save_netbox_url_test.rb +39 -0
  108. data/test/interactors/foreman_netbox/sync_host/sync_device/sync_device_role/create_test.rb +45 -0
  109. data/test/interactors/foreman_netbox/sync_host/sync_device/sync_device_role/find_test.rb +58 -0
  110. data/test/interactors/foreman_netbox/sync_host/sync_device/sync_device_type/create_test.rb +55 -0
  111. data/test/interactors/foreman_netbox/sync_host/sync_device/sync_device_type/find_test.rb +63 -0
  112. data/test/interactors/foreman_netbox/sync_host/sync_device/sync_device_type/sync_manufacturer/create_test.rb +48 -0
  113. data/test/interactors/foreman_netbox/sync_host/sync_device/sync_device_type/sync_manufacturer/find_test.rb +105 -0
  114. data/test/interactors/foreman_netbox/sync_host/sync_device/sync_device_type/update_test.rb +54 -0
  115. data/test/interactors/foreman_netbox/sync_host/sync_device/sync_interfaces/create_test.rb +51 -0
  116. data/test/interactors/foreman_netbox/sync_host/sync_device/sync_interfaces/delete_test.rb +41 -0
  117. data/test/interactors/foreman_netbox/sync_host/sync_device/sync_interfaces/find_test.rb +53 -0
  118. data/test/interactors/foreman_netbox/sync_host/sync_device/sync_interfaces/sync_ip_addresses/create_test.rb +80 -0
  119. data/test/interactors/foreman_netbox/sync_host/sync_device/sync_interfaces/sync_ip_addresses/delete_test.rb +72 -0
  120. data/test/interactors/foreman_netbox/sync_host/sync_device/sync_interfaces/sync_ip_addresses/find_test.rb +51 -0
  121. data/test/interactors/foreman_netbox/sync_host/sync_device/sync_interfaces/sync_ip_addresses/update_test.rb +64 -0
  122. data/test/interactors/foreman_netbox/sync_host/sync_device/sync_interfaces/update_test.rb +92 -0
  123. data/test/interactors/foreman_netbox/sync_host/sync_device/sync_site/create_test.rb +51 -0
  124. data/test/interactors/foreman_netbox/sync_host/sync_device/sync_site/find_test.rb +59 -0
  125. data/test/interactors/foreman_netbox/sync_host/sync_device/sync_site/update_test.rb +54 -0
  126. data/test/interactors/foreman_netbox/sync_host/sync_device/update_test.rb +188 -0
  127. data/test/interactors/foreman_netbox/sync_host/sync_tenant/create_test.rb +50 -0
  128. data/test/interactors/foreman_netbox/sync_host/sync_tenant/find_test.rb +58 -0
  129. data/test/interactors/foreman_netbox/sync_host/sync_tenant/update_test.rb +59 -0
  130. data/test/interactors/foreman_netbox/sync_host/sync_virtual_machine/create_test.rb +74 -0
  131. data/test/interactors/foreman_netbox/sync_host/sync_virtual_machine/find_test.rb +77 -0
  132. data/test/interactors/foreman_netbox/sync_host/sync_virtual_machine/save_netbox_url_test.rb +39 -0
  133. data/test/interactors/foreman_netbox/sync_host/sync_virtual_machine/sync_cluster/create_test.rb +54 -0
  134. data/test/interactors/foreman_netbox/sync_host/sync_virtual_machine/sync_cluster/find_test.rb +58 -0
  135. data/test/interactors/foreman_netbox/sync_host/sync_virtual_machine/sync_cluster/sync_cluster_type/create_test.rb +50 -0
  136. data/test/interactors/foreman_netbox/sync_host/sync_virtual_machine/sync_cluster/sync_cluster_type/find_test.rb +65 -0
  137. data/test/interactors/foreman_netbox/sync_host/sync_virtual_machine/sync_cluster/update_test.rb +54 -0
  138. data/test/interactors/foreman_netbox/sync_host/sync_virtual_machine/sync_interfaces/create_test.rb +53 -0
  139. data/test/interactors/foreman_netbox/sync_host/sync_virtual_machine/sync_interfaces/delete_test.rb +37 -0
  140. data/test/interactors/foreman_netbox/sync_host/sync_virtual_machine/sync_interfaces/find_test.rb +53 -0
  141. data/test/interactors/foreman_netbox/sync_host/sync_virtual_machine/sync_interfaces/sync_ip_addresses/create_test.rb +80 -0
  142. data/test/interactors/foreman_netbox/sync_host/sync_virtual_machine/sync_interfaces/sync_ip_addresses/delete_test.rb +73 -0
  143. data/test/interactors/foreman_netbox/sync_host/sync_virtual_machine/sync_interfaces/sync_ip_addresses/find_test.rb +51 -0
  144. data/test/interactors/foreman_netbox/sync_host/sync_virtual_machine/sync_interfaces/sync_ip_addresses/update_test.rb +64 -0
  145. data/test/interactors/foreman_netbox/sync_host/sync_virtual_machine/sync_interfaces/update_test.rb +88 -0
  146. data/test/interactors/foreman_netbox/sync_host/sync_virtual_machine/update_test.rb +171 -0
  147. data/test/jobs/foreman_netbox/sync_host_job_test.rb +14 -0
  148. data/test/models/foreman_netbox/location_test.rb +42 -0
  149. data/test/models/foreman_netbox/netbox_facet_test.rb +219 -0
  150. data/test/models/foreman_netbox/nics/base_test.rb +81 -0
  151. data/test/models/foreman_netbox/usergroup_test.rb +23 -0
  152. data/test/models/host/managed_test.rb +63 -0
  153. data/test/services/foreman_netbox/netbox_attributes_test.rb +278 -0
  154. data/test/services/foreman_netbox/netbox_parameters_comparator_test.rb +136 -0
  155. data/test/test_plugin_helper.rb +25 -0
  156. metadata +343 -0
@@ -0,0 +1,512 @@
1
+ {
2
+ "ssh::rsa": null,
3
+ "ssh::rsa::fingerprints": null,
4
+ "ssh::ed25519": null,
5
+ "ssh::ed25519::fingerprints": null,
6
+ "ssh::ecdsa": null,
7
+ "ssh::ecdsa::fingerprints": null,
8
+ "puppet_sslpaths::hostcrl": null,
9
+ "puppet_sslpaths::requestdir": null,
10
+ "puppet_sslpaths::certdir": null,
11
+ "puppet_sslpaths::publickeydir": null,
12
+ "puppet_sslpaths::privatekeydir": null,
13
+ "puppet_sslpaths::privatedir": null,
14
+ "os::selinux": null,
15
+ "os::release": null,
16
+ "os::distro::release": null,
17
+ "os::distro": null,
18
+ "networking::interfaces::eth5": null,
19
+ "networking::interfaces::eth4": null,
20
+ "networking::interfaces::eth3": null,
21
+ "networking::interfaces::eth2": null,
22
+ "networking::interfaces::eth1": null,
23
+ "networking::interfaces": null,
24
+ "networking::interfaces::eth0": null,
25
+ "memory::system": null,
26
+ "memory::swap": null,
27
+ "dmi::product": null,
28
+ "dmi::chassis": null,
29
+ "ruby": null,
30
+ "subscribed_repositories": "[\"rhel-server-rhscl-7-eus-rpms\", \"rhel-server-rhscl-7-rpms\", \"rhel-7-server-optional-rpms\", \"rhel-7-server-eus-optional-rpms\", \"rhel-7-server-eus-rpms\", \"rhel-7-server-rpms\", \"rhel-7-server-supplementary-rpms\", \"rhel-7-server-extras-rpms\", \"rhel-7-server-eus-supplementary-rpms\"]",
31
+ "puppet_sslpaths": null,
32
+ "memoryfree_mb": "34650.7890625",
33
+ "subscription_managed": "true",
34
+ "os": null,
35
+ "uptime_seconds": "15099633",
36
+ "dmi::board": null,
37
+ "dmi::bios": null,
38
+ "disks::sda": null,
39
+ "systemd_internal_services::systemd-readahead-replay.service": "enabled",
40
+ "systemd_internal_services::systemd-readahead-drop.service": "enabled",
41
+ "systemd_internal_services::systemd-readahead-done.service": "indirect",
42
+ "systemd_internal_services::systemd-readahead-collect.service": "enabled",
43
+ "systemd_internal_services::systemd-nspawn@.service": "disabled",
44
+ "systemd_internal_services::systemd-bootchart.service": "disabled",
45
+ "ruby::version": "2.1.9",
46
+ "ruby::sitedir": "/opt/puppetlabs/puppet/lib/ruby/site_ruby/2.1.0",
47
+ "ruby::platform": "x86_64-linux",
48
+ "puppet_sslpaths::hostcrl::path_exists": "true",
49
+ "puppet_sslpaths::hostcrl::path": "/etc/puppetlabs/puppet/ssl/crl.pem",
50
+ "puppet_sslpaths::requestdir::path_exists": "true",
51
+ "puppet_sslpaths::requestdir::path": "/etc/puppetlabs/puppet/ssl/certificate_requests",
52
+ "puppet_sslpaths::certdir::path_exists": "true",
53
+ "puppet_sslpaths::certdir::path": "/etc/puppetlabs/puppet/ssl/certs",
54
+ "puppet_sslpaths::publickeydir::path_exists": "true",
55
+ "puppet_sslpaths::publickeydir::path": "/etc/puppetlabs/puppet/ssl/public_keys",
56
+ "puppet_sslpaths::privatekeydir::path_exists": "true",
57
+ "puppet_sslpaths::privatekeydir::path": "/etc/puppetlabs/puppet/ssl/private_keys",
58
+ "puppet_sslpaths::privatedir::path_exists": "true",
59
+ "puppet_sslpaths::privatedir::path": "/etc/puppetlabs/puppet/ssl/private",
60
+ "processors::speed": "2.30 GHz",
61
+ "processors::physicalcount": "1",
62
+ "processors::models": "[\"Intel(R) Xeon(R) CPU E5-2699 v3 @ 2.30GHz\", \"Intel(R) Xeon(R) CPU E5-2699 v3 @ 2.30GHz\", \"Intel(R) Xeon(R) CPU E5-2699 v3 @ 2.30GHz\", \"Intel(R) Xeon(R) CPU E5-2699 v3 @ 2.30GHz\", \"Intel(R) Xeon(R) CPU E5-2699 v3 @ 2.30GHz\", \"Intel(R) Xeon(R) CPU E5-2699 v3 @ 2.30GHz\", \"Intel(R) Xeon(R) CPU E5-2699 v3 @ 2.30GHz\", \"Intel(R) Xeon(R) CPU E5-2699 v3 @ 2.30GHz\", \"Intel(R) Xeon(R) CPU E5-2699 v3 @ 2.30GHz\", \"Intel(R) Xeon(R) CPU E5-2699 v3 @ 2.30GHz\", \"Intel(R) Xeon(R) CPU E5-2699 v3 @ 2.30GHz\", \"Intel(R) Xeon(R) CPU E5-2699 v3 @ 2.30GHz\", \"Intel(R) Xeon(R) CPU E5-2699 v3 @ 2.30GHz\", \"Intel(R) Xeon(R) CPU E5-2699 v3 @ 2.30GHz\", \"Intel(R) Xeon(R) CPU E5-2699 v3 @ 2.30GHz\", \"Intel(R) Xeon(R) CPU E5-2699 v3 @ 2.30GHz\", \"Intel(R) Xeon(R) CPU E5-2699 v3 @ 2.30GHz\", \"Intel(R) Xeon(R) CPU E5-2699 v3 @ 2.30GHz\", \"Intel(R) Xeon(R) CPU E5-2699 v3 @ 2.30GHz\", \"Intel(R) Xeon(R) CPU E5-2699 v3 @ 2.30GHz\", \"Intel(R) Xeon(R) CPU E5-2699 v3 @ 2.30GHz\", \"Intel(R) Xeon(R) CPU E5-2699 v3 @ 2.30GHz\", \"Intel(R) Xeon(R) CPU E5-2699 v3 @ 2.30GHz\", \"Intel(R) Xeon(R) CPU E5-2699 v3 @ 2.30GHz\", \"Intel(R) Xeon(R) CPU E5-2699 v3 @ 2.30GHz\", \"Intel(R) Xeon(R) CPU E5-2699 v3 @ 2.30GHz\", \"Intel(R) Xeon(R) CPU E5-2699 v3 @ 2.30GHz\", \"Intel(R) Xeon(R) CPU E5-2699 v3 @ 2.30GHz\", \"Intel(R) Xeon(R) CPU E5-2699 v3 @ 2.30GHz\", \"Intel(R) Xeon(R) CPU E5-2699 v3 @ 2.30GHz\", \"Intel(R) Xeon(R) CPU E5-2699 v3 @ 2.30GHz\", \"Intel(R) Xeon(R) CPU E5-2699 v3 @ 2.30GHz\", \"Intel(R) Xeon(R) CPU E5-2699 v3 @ 2.30GHz\", \"Intel(R) Xeon(R) CPU E5-2699 v3 @ 2.30GHz\", \"Intel(R) Xeon(R) CPU E5-2699 v3 @ 2.30GHz\", \"Intel(R) Xeon(R) CPU E5-2699 v3 @ 2.30GHz\"]",
63
+ "processors::isa": "x86_64",
64
+ "processors::count": "36",
65
+ "os::selinux::enabled": "false",
66
+ "os::release::minor": "4",
67
+ "os::release::major": "7",
68
+ "os::release::full": "7.4",
69
+ "os::name": "RedHat",
70
+ "os::hardware": "x86_64",
71
+ "os::family": "RedHat",
72
+ "os::distro::specification": ":core-4.1-amd64:core-4.1-noarch:cxx-4.1-amd64:cxx-4.1-noarch:desktop-4.1-amd64:desktop-4.1-noarch:languages-4.1-amd64:languages-4.1-noarch:printing-4.1-amd64:printing-4.1-noarch",
73
+ "os::distro::release::minor": "4",
74
+ "os::distro::release::major": "7",
75
+ "os::distro::release::full": "7.4",
76
+ "os::distro::id": "RedHatEnterpriseServer",
77
+ "os::distro::description": "Red Hat Enterprise Linux Server release 7.4 (Maipo)",
78
+ "os::distro::codename": "Maipo",
79
+ "os::architecture": "x86_64",
80
+ "networking::primary": "eth3",
81
+ "networking::network6": "fe80::",
82
+ "networking::network": "172.23.43.0",
83
+ "networking::netmask6": "ffff:ffff:ffff:ffff::",
84
+ "networking::netmask": "255.255.255.0",
85
+ "networking::mtu": "1500",
86
+ "networking::mac": "aa:bb:cc:ee:ff:gg",
87
+ "networking::ip6": "fc80::",
88
+ "networking::ip": "172.23.43.35",
89
+ "networking::interfaces::eth5::mtu": "1500",
90
+ "networking::interfaces::eth5::mac": "aa:bb:cc:ee:ff:a5",
91
+ "networking::interfaces::eth4::mtu": "1500",
92
+ "networking::interfaces::eth4::mac": "aa:bb:cc:ee:ff:a4",
93
+ "networking::interfaces::eth3::network6": "fe80::",
94
+ "networking::interfaces::eth3::network": "172.23.43.0",
95
+ "networking::interfaces::eth3::netmask6": "ffff:ffff:ffff:ffff::",
96
+ "networking::interfaces::eth3::netmask": "255.255.255.0",
97
+ "networking::interfaces::eth3::mtu": "1500",
98
+ "networking::interfaces::eth3::mac": "aa:bb:cc:ee:ff:gg",
99
+ "networking::interfaces::eth3::ip6": "fc80::",
100
+ "networking::interfaces::eth3::ip": "172.23.43.35",
101
+ "networking::interfaces::eth3::dhcp": "172.23.35.130",
102
+ "networking::interfaces::eth3::bindings6": "[{\"address\"=>\"fc80::\", \"netmask\"=>\"ffff:ffff:ffff:ffff::\", \"network\"=>\"fe80::\"}]",
103
+ "networking::interfaces::eth3::bindings": "[{\"address\"=>\"172.23.43.35\", \"netmask\"=>\"255.255.255.0\", \"network\"=>\"172.23.43.0\"}]",
104
+ "networking::interfaces::eth2::mtu": "1500",
105
+ "networking::interfaces::eth2::mac": "aa:bb:cc:ee:ff:a2",
106
+ "networking::interfaces::eth1::mtu": "1500",
107
+ "networking::interfaces::eth1::mac": "aa:bb:cc:ee:ff:a1",
108
+ "networking::interfaces::eth0::mtu": "1500",
109
+ "networking::interfaces::eth0::mac": "aa:bb:cc:ee:ff:a0",
110
+ "networking::hostname": "machine",
111
+ "networking::fqdn": "machine.prod.location.de.local",
112
+ "networking::domain": "prod.location.de.local",
113
+ "networking::dhcp": "172.23.35.130",
114
+ "memory::system::used_bytes": "30920675328",
115
+ "memory::system::used": "28.80 GiB",
116
+ "memory::system::total_bytes": "67254661120",
117
+ "memory::system::total": "62.64 GiB",
118
+ "memory::system::capacity": "45.98%",
119
+ "memory::system::available_bytes": "36333985792",
120
+ "memory::system::available": "33.84 GiB",
121
+ "memory::swap::used_bytes": "30806016",
122
+ "memory::swap::used": "29.38 MiB",
123
+ "memory::swap::total_bytes": "2097147904",
124
+ "memory::swap::total": "1.95 GiB",
125
+ "memory::swap::capacity": "1.47%",
126
+ "memory::swap::available_bytes": "2066341888",
127
+ "memory::swap::available": "1.92 GiB",
128
+ "load_averages::5m": "0.01",
129
+ "load_averages::1m": "0.0",
130
+ "load_averages::15m": "0.05",
131
+ "identity::user": "root",
132
+ "identity::uid": "0",
133
+ "identity::privileged": "true",
134
+ "identity::group": "root",
135
+ "identity::gid": "0",
136
+ "dmi::product::uuid": "aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee",
137
+ "dmi::product::serial_number": "ABCDEFGHI123",
138
+ "dmi::product::name": "ProLiant DL380 Gen9",
139
+ "dmi::manufacturer": "HP",
140
+ "dmi::chassis::type": "Rack Mount Chassis",
141
+ "dmi::board::serial_number": "ABCDEFGHI123",
142
+ "dmi::board::product": "ProLiant DL380 Gen9",
143
+ "dmi::board::manufacturer": "HP",
144
+ "dmi::bios::version": "P89",
145
+ "dmi::bios::vendor": "HP",
146
+ "dmi::bios::release_date": "10/17/2018",
147
+ "disks::sda::vendor": "HP",
148
+ "disks::sda::size_bytes": "600093712384",
149
+ "disks::sda::size": "558.88 GiB",
150
+ "disks::sda::model": "LOGICAL VOLUME",
151
+ "dhcp_servers::system": "172.23.35.130",
152
+ "dhcp_servers::eth3": "172.23.35.130",
153
+ "augeas::version": "1.4.0",
154
+ "puppetmaster_fqdn": "puppet.prod.location.de.local",
155
+ "networking": null,
156
+ "subscription_manager_release": "Release: 7Server",
157
+ "update_system_autopatching": "disabled_or_unknown",
158
+ "last_run": "Thu Jan 16 10:35:08 CET 2020",
159
+ "memory": null,
160
+ "update_system_updatecount": "#Please do not change this file, change in foreman or hieradataweekly2-mon",
161
+ "openssh_version": "6.6.1p17.4p1",
162
+ "path": "/usr/bin:/bin:/usr/sbin:/sbin",
163
+ "uptime_hours": "4194",
164
+ "update_system_secupdatecount": "#Please do not change this file, change in foreman or hieradataweekly2-mon",
165
+ "rootserver_config": null,
166
+ "load_averages": null,
167
+ "memoryfree": "33.84 GiB",
168
+ "dmi::meta": null,
169
+ "proc_stat": null,
170
+ "dmi::connector": null,
171
+ "dmi::baseboard": null,
172
+ "dmi::memory": null,
173
+ "dmi::processor": null,
174
+ "dmi::system": null,
175
+ "dmi::system::wake-up_type": "Power Switch",
176
+ "dmi::meta::cpu_socket_count": "2",
177
+ "dmi::processor::asset_tag": "UNKNOWN",
178
+ "dmi::system::sku_number": "ABCDEF-1234",
179
+ "dmi::processor::voltage": "1.6 V",
180
+ "dmi::memory::array_handle": "0x0008",
181
+ "dmi::processor::l2_cache_handle": "0x0001",
182
+ "dmi::memory::error_information_handle": "No Error",
183
+ "dmi::baseboard::serial_number": "ABCDEFGHI123",
184
+ "dmi::memory::serial_number": "Not Specified",
185
+ "dmi::bios::relase_date": "10/17/2018",
186
+ "dmi::connector::internal_connector_type": "None",
187
+ "dmi::processor::serial_number": "Not Specified",
188
+ "dmi::connector::internal_reference_designator": "J87",
189
+ "dmi::bios::rom_size": "16384 KB",
190
+ "dmi::memory::form_factor": "DIMM",
191
+ "dmi::processor::part_number": "Not Specified",
192
+ "dmi::processor::version": "Intel(R) Xeon(R) CPU E5-2699 v3 @ 2.30GHz",
193
+ "dmi::system::product_name": "ProLiant DL380 Gen9",
194
+ "dmi::processor::l3_cache_handle": "0x0002",
195
+ "dmi::memory::maximum_capacity": "1536 GB",
196
+ "dmi::chassis::security_status": "Unknown",
197
+ "dmi::memory::total_width": "72 bit",
198
+ "dmi::chassis::thermal_state": "Safe",
199
+ "dmi::memory::part_number": "NOT AVAILABLE",
200
+ "dmi::connector::port_type": "Serial Port 16550A Compatible",
201
+ "dmi::memory::speed": " (ns)",
202
+ "dmi::bios::bios_revision": "2.64",
203
+ "dmi::baseboard::product_name": "ProLiant DL380 Gen9",
204
+ "dmi::bios::runtime_size": "64 KB",
205
+ "dmi::chassis::power_supply_state": "Safe",
206
+ "dmi::memory::size": "8192 MB",
207
+ "dmi::memory::use": "System Memory",
208
+ "dmi::baseboard::manufacturer": "HP",
209
+ "dmi::system::manufacturer": "HP",
210
+ "dmi::memory::location": "System Board Or Motherboard",
211
+ "dmi::chassis::version": "Not Specified",
212
+ "dmi::system::status": "No errors detected",
213
+ "dmi::processor::l1_cache_handle": "0x0000",
214
+ "dmi::memory::locator": "PROC 2 DIMM 7",
215
+ "dmi::processor::status": "Populated:Enabled",
216
+ "dmi::chassis::boot-up_state": "Safe",
217
+ "dmi::system::serial_number": "ABCDEFGHI123",
218
+ "dmi::memory::data_width": "64 bit",
219
+ "dmi::chassis::lock": "Not Present",
220
+ "proc_stat::btime": "1564067677",
221
+ "dmi::chassis::serial_number": "ABCDEFGHI123",
222
+ "dmi::system::version": "Not Specified",
223
+ "dmi::connector::external_connector_type": "DB-9 male",
224
+ "dmi::system::family": "ProLiant",
225
+ "dmi::processor::socket_designation": "Proc 1",
226
+ "dmi::connector::external_reference_designator": "COM PORT",
227
+ "dmi::processor::type": "Central Processor",
228
+ "dmi::memory::error_correction_type": "Multi-bit ECC",
229
+ "dmi::baseboard::version": "Not Specified",
230
+ "dmi::memory::bank_locator": "Not Specified",
231
+ "dmi::chassis::manufacturer": "HP",
232
+ "dmi::memory::assettag": "Not Specified",
233
+ "dmi::bios::address": "0xf0000",
234
+ "dmi::memory::manufacturer": "UNKNOWN",
235
+ "dmi::processor::family": "Xeon",
236
+ "dmi::system::uuid": "aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee",
237
+ "systemd_internal_services": null,
238
+ "ssh": null,
239
+ "processors": null,
240
+ "identity": null,
241
+ "dmi": null,
242
+ "disks": null,
243
+ "dhcp_servers": null,
244
+ "augeas": null,
245
+ "additional_access_conf": null,
246
+ "uptime_days": "174",
247
+ "uptime": "174 days",
248
+ "swapfree_mb": "1970.6171875",
249
+ "swapfree": "1.92 GiB",
250
+ "update_system_last_success_actioncount": "null",
251
+ "boardserialnumber": "ABCDEFGHI123",
252
+ "boardproductname": "ProLiant DL380 Gen9",
253
+ "boardmanufacturer": "HP",
254
+ "bios_release_date": "10/17/2018",
255
+ "memory::memtotal": "65678380",
256
+ "dmi::slot::current_usage": "Available",
257
+ "proc_cpuinfo::common::bogomips": "4594.38",
258
+ "dmi::slot::designation": "PCI-E Slot 2",
259
+ "proc_cpuinfo::common::microcode": "0x43",
260
+ "update_system_last_success": "never",
261
+ "update_system_failing_since": "never",
262
+ "filebeat_version": "6.6.2",
263
+ "_timestamp": "2020-01-15 22:27:46 +0100",
264
+ "lscpu::bogomips": "4594.38",
265
+ "net::interface::eth2": null,
266
+ "net::interface::eth4": null,
267
+ "net::interface::eth0": null,
268
+ "net::interface::eth1": null,
269
+ "uname": null,
270
+ "net::interface::eth3::ipv6_address": null,
271
+ "system": null,
272
+ "network": "172.23.43.0",
273
+ "net::interface::eth5": null,
274
+ "cpu": null,
275
+ "net": null,
276
+ "net::interface": null,
277
+ "net::interface::eth3": null,
278
+ "net::interface::eth3::ipv6_netmask": null,
279
+ "dmi::slot": null,
280
+ "virt": null,
281
+ "proc_cpuinfo": null,
282
+ "proc_cpuinfo::common": null,
283
+ "lscpu": null,
284
+ "distribution": null,
285
+ "lscpu::l2_cache": "256K",
286
+ "uname::nodename": "machine.prod.location.de.local",
287
+ "proc_cpuinfo::common::physical_id": "0",
288
+ "proc_cpuinfo::common::vendor_id": "GenuineIntel",
289
+ "memory::swaptotal": "2047996",
290
+ "lscpu::core(s)_per_socket": "18",
291
+ "net::interface::eth3::ipv4_address_list": "172.23.43.35",
292
+ "lscpu::model": "63",
293
+ "lscpu::architecture": "x86_64",
294
+ "katello_managed": "true",
295
+ "timezone": "CET",
296
+ "proc_cpuinfo::common::cpuid_level": "15",
297
+ "distribution::version::modifier": "ga",
298
+ "net::interface::eth3::ipv6_netmask::link_list": "64",
299
+ "net::interface::eth3::ipv4_netmask": "24",
300
+ "dmi::slot::slotlength": "Long",
301
+ "proc_cpuinfo::common::cpu_cores": "18",
302
+ "lscpu::byte_order": "Little Endian",
303
+ "lscpu::cpu(s)": "36",
304
+ "lscpu::cpu_min_mhz": "1200.0000",
305
+ "proc_cpuinfo::common::stepping": "2",
306
+ "net::interface::eth2::mac_address": "aa:bb:cc:ee:ff:a2",
307
+ "lscpu::on-line_cpu(s)_list": "0-35",
308
+ "proc_cpuinfo::common::address_sizes": "46 bits physical, 48 bits virtual",
309
+ "proc_cpuinfo::common::cache_size": "46080 KB",
310
+ "cpu::thread(s)_per_core": "2",
311
+ "lscpu::thread(s)_per_core": "2",
312
+ "proc_cpuinfo::common::wp": "yes",
313
+ "net::interface::eth4::mac_address": "aa:bb:cc:ee:ff:a4",
314
+ "proc_cpuinfo::common::clflush_size": "64",
315
+ "net::interface::eth3::mac_address": "aa:bb:cc:ee:ff:gg",
316
+ "lscpu::cpu_op-mode(s)": "32-bit, 64-bit",
317
+ "lscpu::vendor_id": "GenuineIntel",
318
+ "lscpu::numa_node(s)": "1",
319
+ "distribution::id": "Maipo",
320
+ "system::default_locale": "en_US.UTF-8",
321
+ "net::interface::eth0::mac_address": "aa:bb:cc:ee:ff:a0",
322
+ "net::interface::eth3::ipv4_netmask_list": "24",
323
+ "lscpu::l1d_cache": "32K",
324
+ "lscpu::flags": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm ida arat epb pln pts dtherm tpr_shadow vnmi flexpriority ept vpid fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm xsaveopt cqm_llc cqm_occup_llc",
325
+ "net::interface::eth3::ipv4_broadcast": "172.23.43.255",
326
+ "lscpu::socket(s)": "1",
327
+ "uname::release": "3.10.0-327.55.2.el7.x86_64",
328
+ "cpu::cpu_socket(s)": "1",
329
+ "proc_cpuinfo::common::cpu_mhz": "2300.000",
330
+ "net::interface::eth3::ipv4_broadcast_list": "172.23.43.255",
331
+ "proc_cpuinfo::common::fpu_exception": "yes",
332
+ "net::interface::eth3::ipv4_address": "172.23.43.35",
333
+ "uname::machine": "x86_64",
334
+ "net::interface::eth1::mac_address": "aa:bb:cc:ee:ff:a1",
335
+ "lscpu::stepping": "2",
336
+ "cpu::topology_source": "kernel /sys cpu sibling lists",
337
+ "lscpu::cpu_mhz": "2300.000",
338
+ "lscpu::cpu_max_mhz": "2300.0000",
339
+ "lscpu::numa_node0_cpu(s)": "0-35",
340
+ "proc_cpuinfo::common::model": "63",
341
+ "lscpu::cpu_family": "6",
342
+ "proc_cpuinfo::common::cache_alignment": "64",
343
+ "lscpu::model_name": "Intel(R) Xeon(R) CPU E5-2699 v3 @ 2.30GHz",
344
+ "uname::sysname": "Linux",
345
+ "uname::version": "#1 SMP Mon May 29 15:15:26 EDT 2017",
346
+ "network::hostname": "machine.prod.location.de.local",
347
+ "cpu::cpu(s)": "36",
348
+ "network::fqdn": "machine.prod.location.de.local",
349
+ "lscpu::l3_cache": "46080K",
350
+ "network::ipv6_address": "fc80::",
351
+ "net::interface::eth3::ipv6_address::link_list": "fc80::",
352
+ "net::interface::eth3::ipv6_address::link": "fc80::",
353
+ "proc_cpuinfo::common::model_name": "Intel(R) Xeon(R) CPU E5-2699 v3 @ 2.30GHz",
354
+ "system::certificate_version": "3.2",
355
+ "proc_cpuinfo::common::fpu": "yes",
356
+ "lscpu::virtualization": "VT-x",
357
+ "network::ipv4_address": "172.23.43.35",
358
+ "net::interface::eth5::mac_address": "aa:bb:cc:ee:ff:a5",
359
+ "proc_cpuinfo::common::cpu_family": "6",
360
+ "distribution::version": "7.4",
361
+ "cpu::core(s)_per_socket": "18",
362
+ "proc_cpuinfo::common::flags": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm ida arat epb pln pts dtherm tpr_shadow vnmi flexpriority ept vpid fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm xsaveopt cqm_llc cqm_occup_llc",
363
+ "net::interface::eth3::ipv6_netmask::link": "64",
364
+ "dmi::slot::type:slotbuswidth": "x8",
365
+ "lscpu::l1i_cache": "32K",
366
+ "virt::host_type": "Not Applicable",
367
+ "proc_cpuinfo::common::siblings": "36",
368
+ "distribution::name": "Red Hat Enterprise Linux Server",
369
+ "puppet_vardir": "/opt/puppetlabs/puppet/cache",
370
+ "puppet_server": "lxcwpuppet.location.de.local",
371
+ "init_system": "systemd",
372
+ "chrony_version": "3.1",
373
+ "java_keytool_available": "true",
374
+ "nameserver_list": "127.0.0.1 172.23.1.210",
375
+ "facterversion": "3.6.10",
376
+ "app_tier": "lxprod",
377
+ "architecture": "x86_64",
378
+ "augeasversion": "1.4.0",
379
+ "bios_vendor": "HP",
380
+ "bios_version": "P89",
381
+ "blockdevice_sda_model": "LOGICAL VOLUME",
382
+ "blockdevice_sda_size": "600093712384",
383
+ "blockdevice_sda_vendor": "HP",
384
+ "blockdevices": "sda",
385
+ "chassistype": "Rack Mount Chassis",
386
+ "default_interface": "eth3",
387
+ "default_ipaddress": "172.23.43.35",
388
+ "default_macaddress": "aa:bb:cc:ee:ff:gg",
389
+ "defaultgw": "172.23.43.254",
390
+ "domain": "prod.location.de.local",
391
+ "filesystems": "ext2,ext3,ext4,xfs",
392
+ "fqdn": "machine.prod.location.de.local",
393
+ "gid": "root",
394
+ "hardwareisa": "x86_64",
395
+ "hardwaremodel": "x86_64",
396
+ "hostname": "machine",
397
+ "icinga2_puppet_hostcert": "/etc/puppetlabs/puppet/ssl/certs/machine.prod.location.de.local.pem",
398
+ "icinga2_puppet_hostprivkey": "/etc/puppetlabs/puppet/ssl/private_keys/machine.prod.location.de.local.pem",
399
+ "icinga2_puppet_localcacert": "/etc/puppetlabs/puppet/ssl/certs/ca.pem",
400
+ "icinga_net_speed": "1000",
401
+ "id": "root",
402
+ "aio_agent_version": "1.10.14",
403
+ "interfaces": "eth0,eth1,eth2,eth3,eth4,eth5,lo",
404
+ "ipaddress": "172.23.43.35",
405
+ "ipaddress6": "fc80::",
406
+ "ipaddress6_eth3": "fc80::",
407
+ "ipaddress_eth3": "172.23.43.35",
408
+ "is_rootserver": "true",
409
+ "kernel": "Linux",
410
+ "kernelmajversion": "3.10",
411
+ "kernelrelease": "3.10.0-327.55.2.el7.x86_64",
412
+ "kernelversion": "3.10.0",
413
+ "lsbdistcodename": "Maipo",
414
+ "lsbdistdescription": "Red Hat Enterprise Linux Server release 7.4 (Maipo)",
415
+ "lsbdistid": "RedHatEnterpriseServer",
416
+ "lsbdistrelease": "7.4",
417
+ "lsbmajdistrelease": "7",
418
+ "lsbminordistrelease": "4",
419
+ "lsbrelease": ":core-4.1-amd64:core-4.1-noarch:cxx-4.1-amd64:cxx-4.1-noarch:desktop-4.1-amd64:desktop-4.1-noarch:languages-4.1-amd64:languages-4.1-noarch:printing-4.1-amd64:printing-4.1-noarch",
420
+ "macaddress": "aa:bb:cc:ee:ff:gg",
421
+ "macaddress_eth0": "aa:bb:cc:ee:ff:a1",
422
+ "macaddress_eth1": "aa:bb:cc:ee:ff:a2",
423
+ "macaddress_eth2": "aa:bb:cc:ee:ff:a3",
424
+ "macaddress_eth3": "aa:bb:cc:ee:ff:gg",
425
+ "macaddress_eth4": "aa:bb:cc:ee:ff:a4",
426
+ "macaddress_eth5": "aa:bb:cc:ee:ff:a5",
427
+ "manufacturer": "HP",
428
+ "memorysize": "62.64 GiB",
429
+ "memorysize_mb": "64139.04296875",
430
+ "mtu_eth0": "1500",
431
+ "mtu_eth1": "1500",
432
+ "mtu_eth2": "1500",
433
+ "mtu_eth3": "1500",
434
+ "mtu_eth4": "1500",
435
+ "mtu_eth5": "1500",
436
+ "netmask": "255.255.255.0",
437
+ "netmask6": "ffff:ffff:ffff:ffff::",
438
+ "netmask6_eth3": "ffff:ffff:ffff:ffff::",
439
+ "netmask_eth3": "255.255.255.0",
440
+ "network6": "fe80::",
441
+ "network6_eth3": "fe80::",
442
+ "network_eth3": "172.23.43.0",
443
+ "operatingsystem": "RedHat",
444
+ "operatingsystemmajrelease": "7",
445
+ "operatingsystemrelease": "7.4",
446
+ "osfamily": "RedHat",
447
+ "package_provider": "yum",
448
+ "physicalprocessorcount": "1",
449
+ "processor0": "Intel(R) Xeon(R) CPU E5-2699 v3 @ 2.30GHz",
450
+ "processor1": "Intel(R) Xeon(R) CPU E5-2699 v3 @ 2.30GHz",
451
+ "processor10": "Intel(R) Xeon(R) CPU E5-2699 v3 @ 2.30GHz",
452
+ "processor11": "Intel(R) Xeon(R) CPU E5-2699 v3 @ 2.30GHz",
453
+ "processor12": "Intel(R) Xeon(R) CPU E5-2699 v3 @ 2.30GHz",
454
+ "processor13": "Intel(R) Xeon(R) CPU E5-2699 v3 @ 2.30GHz",
455
+ "processor14": "Intel(R) Xeon(R) CPU E5-2699 v3 @ 2.30GHz",
456
+ "processor15": "Intel(R) Xeon(R) CPU E5-2699 v3 @ 2.30GHz",
457
+ "processor16": "Intel(R) Xeon(R) CPU E5-2699 v3 @ 2.30GHz",
458
+ "processor17": "Intel(R) Xeon(R) CPU E5-2699 v3 @ 2.30GHz",
459
+ "processor18": "Intel(R) Xeon(R) CPU E5-2699 v3 @ 2.30GHz",
460
+ "processor19": "Intel(R) Xeon(R) CPU E5-2699 v3 @ 2.30GHz",
461
+ "processor2": "Intel(R) Xeon(R) CPU E5-2699 v3 @ 2.30GHz",
462
+ "processor20": "Intel(R) Xeon(R) CPU E5-2699 v3 @ 2.30GHz",
463
+ "processor21": "Intel(R) Xeon(R) CPU E5-2699 v3 @ 2.30GHz",
464
+ "processor22": "Intel(R) Xeon(R) CPU E5-2699 v3 @ 2.30GHz",
465
+ "processor23": "Intel(R) Xeon(R) CPU E5-2699 v3 @ 2.30GHz",
466
+ "processor24": "Intel(R) Xeon(R) CPU E5-2699 v3 @ 2.30GHz",
467
+ "processor25": "Intel(R) Xeon(R) CPU E5-2699 v3 @ 2.30GHz",
468
+ "processor26": "Intel(R) Xeon(R) CPU E5-2699 v3 @ 2.30GHz",
469
+ "processor27": "Intel(R) Xeon(R) CPU E5-2699 v3 @ 2.30GHz",
470
+ "processor28": "Intel(R) Xeon(R) CPU E5-2699 v3 @ 2.30GHz",
471
+ "processor29": "Intel(R) Xeon(R) CPU E5-2699 v3 @ 2.30GHz",
472
+ "processor3": "Intel(R) Xeon(R) CPU E5-2699 v3 @ 2.30GHz",
473
+ "processor30": "Intel(R) Xeon(R) CPU E5-2699 v3 @ 2.30GHz",
474
+ "processor31": "Intel(R) Xeon(R) CPU E5-2699 v3 @ 2.30GHz",
475
+ "processor32": "Intel(R) Xeon(R) CPU E5-2699 v3 @ 2.30GHz",
476
+ "processor33": "Intel(R) Xeon(R) CPU E5-2699 v3 @ 2.30GHz",
477
+ "processor34": "Intel(R) Xeon(R) CPU E5-2699 v3 @ 2.30GHz",
478
+ "processor35": "Intel(R) Xeon(R) CPU E5-2699 v3 @ 2.30GHz",
479
+ "processor4": "Intel(R) Xeon(R) CPU E5-2699 v3 @ 2.30GHz",
480
+ "processor5": "Intel(R) Xeon(R) CPU E5-2699 v3 @ 2.30GHz",
481
+ "processor6": "Intel(R) Xeon(R) CPU E5-2699 v3 @ 2.30GHz",
482
+ "processor7": "Intel(R) Xeon(R) CPU E5-2699 v3 @ 2.30GHz",
483
+ "processor8": "Intel(R) Xeon(R) CPU E5-2699 v3 @ 2.30GHz",
484
+ "processor9": "Intel(R) Xeon(R) CPU E5-2699 v3 @ 2.30GHz",
485
+ "processorcount": "36",
486
+ "productname": "ProLiant DL380 Gen9",
487
+ "project": "root",
488
+ "puppet_client_datadir": "/opt/puppetlabs/puppet/cache/client_data",
489
+ "puppet_confdir": "/etc/puppetlabs/puppet",
490
+ "puppet_config": "/etc/puppetlabs/puppet/puppet.conf",
491
+ "puppet_master_server": "puppet.prod.location.de.local",
492
+ "puppet_ssldir": "/etc/puppetlabs/puppet/ssl",
493
+ "puppetversion": "4.10.12",
494
+ "root_home": "/root",
495
+ "rubyplatform": "x86_64-linux",
496
+ "rubysitedir": "/opt/puppetlabs/puppet/lib/ruby/site_ruby/2.1.0",
497
+ "rubyversion": "2.1.9",
498
+ "serialnumber": "ABCDEFGHI123",
499
+ "serverinstance": "1",
500
+ "service_provider": "systemd",
501
+ "clientversion": "4.10.12",
502
+ "sudoversion": "1.8.6p71.8.19p2",
503
+ "swapsize": "1.95 GiB",
504
+ "swapsize_mb": "1999.99609375",
505
+ "system_type": "machine",
506
+ "systemd": "true",
507
+ "systemd_version": "219",
508
+ "uuid": "aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeee",
509
+ "virtual": "physical",
510
+ "clientcert": "machine.prod.location.de.local",
511
+ "serverinstance_string": "01"
512
+ }