foreman_puppet 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (247) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE +619 -0
  3. data/README.md +38 -0
  4. data/Rakefile +31 -0
  5. data/app/assets/stylesheets/foreman_puppet.scss +117 -0
  6. data/app/controllers/concerns/foreman_puppet/api/import_puppetclasses_common_controller.rb +139 -0
  7. data/app/controllers/concerns/foreman_puppet/environments_import.rb +61 -0
  8. data/app/controllers/concerns/foreman_puppet/extensions/api_hostgroups_controller.rb +40 -0
  9. data/app/controllers/concerns/foreman_puppet/extensions/api_template_combinations_controller.rb +23 -0
  10. data/app/controllers/concerns/foreman_puppet/extensions/api_v2_hosts_controller.rb +48 -0
  11. data/app/controllers/concerns/foreman_puppet/extensions/hostgroups_controller_extensions.rb +58 -0
  12. data/app/controllers/concerns/foreman_puppet/extensions/hosts_controller_extensions.rb +228 -0
  13. data/app/controllers/concerns/foreman_puppet/extensions/operatingsystems_controller.rb +11 -0
  14. data/app/controllers/concerns/foreman_puppet/extensions/parameters_host.rb +75 -0
  15. data/app/controllers/concerns/foreman_puppet/extensions/parameters_hostgroup.rb +70 -0
  16. data/app/controllers/concerns/foreman_puppet/extensions/parameters_template_combination.rb +21 -0
  17. data/app/controllers/concerns/foreman_puppet/parameters/config_group.rb +17 -0
  18. data/app/controllers/concerns/foreman_puppet/parameters/environment.rb +21 -0
  19. data/app/controllers/concerns/foreman_puppet/parameters/puppetclass.rb +24 -0
  20. data/app/controllers/concerns/foreman_puppet/parameters/puppetclass_lookup_key.rb +24 -0
  21. data/app/controllers/foreman_puppet/api/v2/base_controller.rb +26 -0
  22. data/app/controllers/foreman_puppet/api/v2/config_groups_controller.rb +57 -0
  23. data/app/controllers/foreman_puppet/api/v2/environments_controller.rb +91 -0
  24. data/app/controllers/foreman_puppet/api/v2/host_classes_controller.rb +59 -0
  25. data/app/controllers/foreman_puppet/api/v2/hostgroup_classes_controller.rb +46 -0
  26. data/app/controllers/foreman_puppet/api/v2/lookups_common_controller.rb +114 -0
  27. data/app/controllers/foreman_puppet/api/v2/override_values_controller.rb +99 -0
  28. data/app/controllers/foreman_puppet/api/v2/puppetclasses_controller.rb +99 -0
  29. data/app/controllers/foreman_puppet/api/v2/smart_class_parameters_controller.rb +76 -0
  30. data/app/controllers/foreman_puppet/config_groups_controller.rb +46 -0
  31. data/app/controllers/foreman_puppet/environments_controller.rb +51 -0
  32. data/app/controllers/foreman_puppet/puppet_smart_proxies_controller.rb +39 -0
  33. data/app/controllers/foreman_puppet/puppetclass_lookup_keys_controller.rb +33 -0
  34. data/app/controllers/foreman_puppet/puppetclasses_controller.rb +113 -0
  35. data/app/controllers/foreman_puppet/react_controller.rb +19 -0
  36. data/app/helpers/concerns/foreman_puppet/template_renderer_scope.rb +14 -0
  37. data/app/helpers/foreman_puppet/environments_helper.rb +17 -0
  38. data/app/helpers/foreman_puppet/hosts_and_hostgroups_helper.rb +96 -0
  39. data/app/helpers/foreman_puppet/hosts_helper.rb +32 -0
  40. data/app/helpers/foreman_puppet/puppet_smart_proxies_helper.rb +8 -0
  41. data/app/helpers/foreman_puppet/puppetclass_lookup_keys_helper.rb +135 -0
  42. data/app/helpers/foreman_puppet/puppetclasses_and_environments_helper.rb +55 -0
  43. data/app/helpers/foreman_puppet/puppetclasses_helper.rb +59 -0
  44. data/app/helpers/foreman_puppet/template_combinations_helper.rb +33 -0
  45. data/app/models/concerns/foreman_puppet/extensions/host.rb +88 -0
  46. data/app/models/concerns/foreman_puppet/extensions/hostgroup.rb +40 -0
  47. data/app/models/concerns/foreman_puppet/extensions/nic_managed.rb +11 -0
  48. data/app/models/concerns/foreman_puppet/extensions/operatingsystem.rb +11 -0
  49. data/app/models/concerns/foreman_puppet/extensions/provisioning_template.rb +64 -0
  50. data/app/models/concerns/foreman_puppet/extensions/report.rb +11 -0
  51. data/app/models/concerns/foreman_puppet/extensions/taxonomy.rb +19 -0
  52. data/app/models/concerns/foreman_puppet/extensions/template_combination.rb +23 -0
  53. data/app/models/concerns/foreman_puppet/extensions/user.rb +22 -0
  54. data/app/models/concerns/foreman_puppet/host_common.rb +90 -0
  55. data/app/models/concerns/foreman_puppet/puppet_lookup_value_extensions.rb +13 -0
  56. data/app/models/foreman_puppet/config_group.rb +45 -0
  57. data/app/models/foreman_puppet/config_group_class.rb +19 -0
  58. data/app/models/foreman_puppet/environment.rb +63 -0
  59. data/app/models/foreman_puppet/environment_class.rb +40 -0
  60. data/app/models/foreman_puppet/host_class.rb +23 -0
  61. data/app/models/foreman_puppet/host_config_group.rb +15 -0
  62. data/app/models/foreman_puppet/host_puppet_facet.rb +130 -0
  63. data/app/models/foreman_puppet/hostgroup_class.rb +23 -0
  64. data/app/models/foreman_puppet/hostgroup_puppet_facet.rb +98 -0
  65. data/app/models/foreman_puppet/puppetclass.rb +132 -0
  66. data/app/models/foreman_puppet/puppetclass_lookup_key.rb +58 -0
  67. data/app/services/foreman_puppet/host_info_providers/config_groups_info.rb +10 -0
  68. data/app/services/foreman_puppet/host_info_providers/puppet_info.rb +92 -0
  69. data/app/services/foreman_puppet/input_type/puppet_parameter_input.rb +35 -0
  70. data/app/services/foreman_puppet/proxy_status/puppet.rb +17 -0
  71. data/app/services/foreman_puppet/puppet_class_importer.rb +355 -0
  72. data/app/views/api/v2/template_combinations/base.json.erb +9 -0
  73. data/app/views/foreman_puppet/api/v2/config_groups/base.json.rabl +3 -0
  74. data/app/views/foreman_puppet/api/v2/config_groups/create.json.rabl +3 -0
  75. data/app/views/foreman_puppet/api/v2/config_groups/index.json.rabl +3 -0
  76. data/app/views/foreman_puppet/api/v2/config_groups/main.json.rabl +8 -0
  77. data/app/views/foreman_puppet/api/v2/config_groups/show.json.rabl +3 -0
  78. data/app/views/foreman_puppet/api/v2/config_groups/update.json.rabl +3 -0
  79. data/app/views/foreman_puppet/api/v2/environments/base.json.rabl +3 -0
  80. data/app/views/foreman_puppet/api/v2/environments/create.json.rabl +3 -0
  81. data/app/views/foreman_puppet/api/v2/environments/index.json.rabl +3 -0
  82. data/app/views/foreman_puppet/api/v2/environments/main.json.rabl +5 -0
  83. data/app/views/foreman_puppet/api/v2/environments/show.json.rabl +15 -0
  84. data/app/views/foreman_puppet/api/v2/environments/update.json.rabl +3 -0
  85. data/app/views/foreman_puppet/api/v2/host_puppet_facets/base.json.rabl +1 -0
  86. data/app/views/foreman_puppet/api/v2/host_puppet_facets/host_single.json.rabl +17 -0
  87. data/app/views/foreman_puppet/api/v2/host_puppet_facets/show.json.rabl +11 -0
  88. data/app/views/foreman_puppet/api/v2/hostgroup_puppet_facets/base.json.rabl +5 -0
  89. data/app/views/foreman_puppet/api/v2/hostgroup_puppet_facets/hostgroup_single.json.rabl +16 -0
  90. data/app/views/foreman_puppet/api/v2/hostgroup_puppet_facets/show.json.rabl +11 -0
  91. data/app/views/foreman_puppet/api/v2/import_puppetclasses/index.json.rabl +3 -0
  92. data/app/views/foreman_puppet/api/v2/import_puppetclasses/show.json.rabl +36 -0
  93. data/app/views/foreman_puppet/api/v2/override_values/create.json.rabl +3 -0
  94. data/app/views/foreman_puppet/api/v2/override_values/index.json.rabl +3 -0
  95. data/app/views/foreman_puppet/api/v2/override_values/show.json.rabl +3 -0
  96. data/app/views/foreman_puppet/api/v2/override_values/update.json.rabl +3 -0
  97. data/app/views/foreman_puppet/api/v2/puppetclasses/base.json.rabl +3 -0
  98. data/app/views/foreman_puppet/api/v2/puppetclasses/create.json.rabl +3 -0
  99. data/app/views/foreman_puppet/api/v2/puppetclasses/index.json.rabl +4 -0
  100. data/app/views/foreman_puppet/api/v2/puppetclasses/list.json.rabl +3 -0
  101. data/app/views/foreman_puppet/api/v2/puppetclasses/main.json.rabl +5 -0
  102. data/app/views/foreman_puppet/api/v2/puppetclasses/show.json.rabl +15 -0
  103. data/app/views/foreman_puppet/api/v2/puppetclasses/update.json.rabl +3 -0
  104. data/app/views/foreman_puppet/api/v2/smart_class_parameters/base.json.rabl +4 -0
  105. data/app/views/foreman_puppet/api/v2/smart_class_parameters/create.json.rabl +3 -0
  106. data/app/views/foreman_puppet/api/v2/smart_class_parameters/destroy.json.rabl +3 -0
  107. data/app/views/foreman_puppet/api/v2/smart_class_parameters/index.json.rabl +3 -0
  108. data/app/views/foreman_puppet/api/v2/smart_class_parameters/main.json.rabl +23 -0
  109. data/app/views/foreman_puppet/api/v2/smart_class_parameters/show.json.rabl +19 -0
  110. data/app/views/foreman_puppet/api/v2/smart_class_parameters/update.json.rabl +3 -0
  111. data/app/views/foreman_puppet/config_groups/_config_group.html.erb +34 -0
  112. data/app/views/foreman_puppet/config_groups/_config_groups_selection.html.erb +36 -0
  113. data/app/views/foreman_puppet/config_groups/_form.html.erb +9 -0
  114. data/app/views/foreman_puppet/config_groups/edit.html.erb +3 -0
  115. data/app/views/foreman_puppet/config_groups/index.html.erb +31 -0
  116. data/app/views/foreman_puppet/config_groups/new.html.erb +3 -0
  117. data/app/views/foreman_puppet/config_groups/welcome.html.erb +12 -0
  118. data/app/views/foreman_puppet/environments/_form.html.erb +20 -0
  119. data/app/views/foreman_puppet/environments/edit.html.erb +8 -0
  120. data/app/views/foreman_puppet/environments/index.html.erb +32 -0
  121. data/app/views/foreman_puppet/environments/new.html.erb +7 -0
  122. data/app/views/foreman_puppet/environments/welcome.html.erb +16 -0
  123. data/app/views/foreman_puppet/layouts/application_react.html.erb +15 -0
  124. data/app/views/foreman_puppet/puppet_smart_proxies/_dashboard.html.erb +9 -0
  125. data/app/views/foreman_puppet/puppet_smart_proxies/_environments.html.erb +30 -0
  126. data/app/views/foreman_puppet/puppetclass_lookup_keys/edit.html.erb +3 -0
  127. data/app/views/foreman_puppet/puppetclass_lookup_keys/index.html.erb +22 -0
  128. data/app/views/foreman_puppet/puppetclass_lookup_keys/welcome.html.erb +9 -0
  129. data/app/views/foreman_puppet/puppetclasses/_class_parameters.html.erb +37 -0
  130. data/app/views/foreman_puppet/puppetclasses/_class_selection.html.erb +70 -0
  131. data/app/views/foreman_puppet/puppetclasses/_classes.html.erb +22 -0
  132. data/app/views/foreman_puppet/puppetclasses/_classes_in_groups.html.erb +5 -0
  133. data/app/views/foreman_puppet/puppetclasses/_classes_parameters.html.erb +16 -0
  134. data/app/views/foreman_puppet/puppetclasses/_form.html.erb +62 -0
  135. data/app/views/foreman_puppet/puppetclasses/_selected_classes.html.erb +4 -0
  136. data/app/views/foreman_puppet/puppetclasses/edit.html.erb +4 -0
  137. data/app/views/foreman_puppet/puppetclasses/index.html.erb +47 -0
  138. data/app/views/hosts/_form_puppet_enc_tab.html.erb +24 -0
  139. data/app/views/hosts/foreman_puppet/_form_main_tab_fields.html.erb +1 -0
  140. data/app/views/hosts/select_multiple_environment.html.erb +8 -0
  141. data/app/views/provisioning_templates/_combination.html.erb +5 -0
  142. data/app/views/provisioning_templates/_combinations.html.erb +6 -0
  143. data/app/views/smart_proxies/plugins/_puppet.html.erb +24 -0
  144. data/config/api_routes.rb +81 -0
  145. data/config/routes.rb +89 -0
  146. data/db/migrate/20101121140000_add_environment_to_template_combinations.foreman_puppet.rb +9 -0
  147. data/db/migrate/20200720123005_migrate_puppet_core_types.foreman_puppet.rb +19 -0
  148. data/db/migrate/20200722171017_create_host_puppet_facet.foreman_puppet.rb +10 -0
  149. data/db/migrate/20200803113531_create_hostgroup_puppet_facet.foreman_puppet.rb +10 -0
  150. data/db/migrate/20200803113803_migrate_environment_to_puppet_facet.foreman_puppet.rb +22 -0
  151. data/db/migrate/20200803113903_migrate_host_type_in_host_config_groups.foreman_puppet.rb +29 -0
  152. data/db/migrate/20201125113903_migrate_puppetclasses_to_facets.foreman_puppet.rb +47 -0
  153. data/db/migrate_foreman/20090722141107_create_environments.rb +17 -0
  154. data/db/migrate_foreman/20120905095532_create_environment_classes.rb +15 -0
  155. data/db/migrate_foreman/20140407161817_create_config_groups.rb +9 -0
  156. data/db/migrate_foreman/20140407162007_create_config_group_classes.rb +10 -0
  157. data/db/migrate_foreman/20140407162059_create_host_config_groups.rb +11 -0
  158. data/db/migrate_foreman/20161205142618_delete_orphaned_smart_class_parameters.rb +10 -0
  159. data/db/migrate_foreman/20170109115157_fix_lookup_key_auditable_type.rb +15 -0
  160. data/db/migrate_foreman/20180816134832_cast_lookup_key_values.rb +35 -0
  161. data/db/migrate_foreman/20181023112532_add_environment_puppetclass_id.rb +7 -0
  162. data/db/migrate_foreman/20181224174419_add_index_to_environment_class_by_lookup_key_and_puppetclass.rb +6 -0
  163. data/db/seeds.d/111_puppet_proxy_feature.rb +8 -0
  164. data/lib/foreman_puppet.rb +10 -0
  165. data/lib/foreman_puppet/engine.rb +82 -0
  166. data/lib/foreman_puppet/register.rb +218 -0
  167. data/lib/foreman_puppet/version.rb +3 -0
  168. data/lib/tasks/foreman_puppet_tasks.rake +31 -0
  169. data/locale/Makefile +60 -0
  170. data/locale/action_names.rb +5 -0
  171. data/locale/en/foreman_puppet.edit.po +911 -0
  172. data/locale/en/foreman_puppet.po +690 -0
  173. data/locale/en/foreman_puppet.po.time_stamp +0 -0
  174. data/locale/foreman_puppet.pot +1076 -0
  175. data/locale/gemspec.rb +2 -0
  176. data/test/controllers/foreman_puppet/api/v2/config_groups_controller_test.rb +28 -0
  177. data/test/controllers/foreman_puppet/api/v2/environments_controller_test.rb +346 -0
  178. data/test/controllers/foreman_puppet/api/v2/host_classes_controller_test.rb +48 -0
  179. data/test/controllers/foreman_puppet/api/v2/hostgroup_classes_controller_test.rb +41 -0
  180. data/test/controllers/foreman_puppet/api/v2/hostgroups_controller_test.rb +79 -0
  181. data/test/controllers/foreman_puppet/api/v2/hosts_controller_test.rb +101 -0
  182. data/test/controllers/foreman_puppet/api/v2/lookups_common_controller_test.rb +29 -0
  183. data/test/controllers/foreman_puppet/api/v2/override_values_controller_test.rb +169 -0
  184. data/test/controllers/foreman_puppet/api/v2/puppetclasses_controller_test.rb +144 -0
  185. data/test/controllers/foreman_puppet/api/v2/smart_class_parameters_controller_test.rb +557 -0
  186. data/test/controllers/foreman_puppet/api/v2/template_combinations_controller_test.rb +81 -0
  187. data/test/controllers/foreman_puppet/config_groups_controller_test.rb +47 -0
  188. data/test/controllers/foreman_puppet/environments_controller_test.rb +230 -0
  189. data/test/controllers/foreman_puppet/hostgroups_controller_test.rb +72 -0
  190. data/test/controllers/foreman_puppet/hosts_controller_test.rb +346 -0
  191. data/test/controllers/foreman_puppet/puppet_smart_proxies_controller_test.rb +29 -0
  192. data/test/controllers/foreman_puppet/puppetclass_lookup_keys_controller_test.rb +59 -0
  193. data/test/controllers/foreman_puppet/puppetclasses_controller_test.rb +235 -0
  194. data/test/controllers/provisioning_templates_controller_test.rb +70 -0
  195. data/test/factories/foreman_puppet_factories.rb +134 -0
  196. data/test/factories/host_puppet_enhancements.rb +61 -0
  197. data/test/factories/proxy_puppet_enhancements.rb +33 -0
  198. data/test/helpers/foreman_puppet/hosts_and_hostgroups_helper_test.rb +65 -0
  199. data/test/helpers/foreman_puppet/puppetclasses_helper_test.rb +33 -0
  200. data/test/integration/foreman_puppet/environment_js_test.rb +27 -0
  201. data/test/integration/foreman_puppet/host_js_test.rb +371 -0
  202. data/test/integration/foreman_puppet/hostgroup_js_test.rb +100 -0
  203. data/test/integration/foreman_puppet/puppetclass_js_test.rb +37 -0
  204. data/test/integration/foreman_puppet/smartclass_parameter_js_test.rb +84 -0
  205. data/test/models/foreman_puppet/config_group_class_test.rb +9 -0
  206. data/test/models/foreman_puppet/config_group_test.rb +8 -0
  207. data/test/models/foreman_puppet/environment_test.rb +92 -0
  208. data/test/models/foreman_puppet/host_config_group_test.rb +39 -0
  209. data/test/models/foreman_puppet/host_puppet_facet_test.rb +116 -0
  210. data/test/models/foreman_puppet/host_test.rb +288 -0
  211. data/test/models/foreman_puppet/hostgroup_puppet_facet_test.rb +200 -0
  212. data/test/models/foreman_puppet/hostgroup_test.rb +14 -0
  213. data/test/models/foreman_puppet/lookup_value_test.rb +69 -0
  214. data/test/models/foreman_puppet/provisioning_template_test.rb +124 -0
  215. data/test/models/foreman_puppet/puppetclass_lookup_key_test.rb +81 -0
  216. data/test/models/foreman_puppet/puppetclass_test.rb +144 -0
  217. data/test/models/foreman_puppet/smart_proxy_test.rb +28 -0
  218. data/test/qraphql/queries/host_puppet_query_test.rb +36 -0
  219. data/test/qraphql/queries/hostgroup_puppet_query_test.rb +36 -0
  220. data/test/services/foreman_puppet/host_info_providers/puppet_info_test.rb +791 -0
  221. data/test/services/foreman_puppet/input_type/puppet_parameter_input_test.rb +14 -0
  222. data/test/test_puppet_helper.rb +30 -0
  223. data/test/unit/foreman_puppet/access_permissions_test.rb +16 -0
  224. data/test/unit/foreman_puppet/puppet_class_importer_test.rb +247 -0
  225. data/test/unit/foreman_puppet/template_rendering_test.rb +20 -0
  226. data/test/unit/foreman_puppet_test.rb +11 -0
  227. data/webpack/__mocks__/foremanReact/common/I18n.js +7 -0
  228. data/webpack/__mocks__/foremanReact/components/Layout/LayoutActions.js +2 -0
  229. data/webpack/__mocks__/foremanReact/readme.md +11 -0
  230. data/webpack/__mocks__/foremanReact/redux/API/APISelectors.js +10 -0
  231. data/webpack/__mocks__/foremanReact/redux/API/index.js +10 -0
  232. data/webpack/__mocks__/foremanReact/redux/actions/toasts.js +8 -0
  233. data/webpack/__mocks__/foremanReact/redux/index.js +1 -0
  234. data/webpack/__mocks__/foremanReact/redux/middlewares/IntervalMiddleware.js +5 -0
  235. data/webpack/fills_index.js +30 -0
  236. data/webpack/index.js +18 -0
  237. data/webpack/src/ForemanPuppet.js +11 -0
  238. data/webpack/src/Router/__snapshots__/routes.test.js.snap +3 -0
  239. data/webpack/src/Router/index.js +14 -0
  240. data/webpack/src/Router/routes.js +3 -0
  241. data/webpack/src/Router/routes.test.js +16 -0
  242. data/webpack/src/foreman_class_edit.js +224 -0
  243. data/webpack/src/foreman_puppet_host_form.js +140 -0
  244. data/webpack/src/foreman_puppet_host_form.test.js +65 -0
  245. data/webpack/src/index.js +1 -0
  246. data/webpack/src/reducers.js +7 -0
  247. metadata +340 -0
@@ -0,0 +1,690 @@
1
+ # foreman_puppet_enc
2
+ #
3
+ # This file is distributed under the same license as foreman_puppet_enc.
4
+ #
5
+ msgid ""
6
+ msgstr ""
7
+ "Project-Id-Version: version 0.0.1\n"
8
+ "Report-Msgid-Bugs-To: \n"
9
+ "PO-Revision-Date: 2014-08-20 08:54+0100\n"
10
+ "Last-Translator: Foreman Team <foreman-dev@googlegroups.com>\n"
11
+ "Language-Team: Foreman Team <foreman-dev@googlegroups.com>\n"
12
+ "Language: \n"
13
+ "MIME-Version: 1.0\n"
14
+ "Content-Type: text/plain; charset=UTF-8\n"
15
+ "Content-Transfer-Encoding: 8bit\n"
16
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
17
+
18
+ msgid " Remove"
19
+ msgstr ""
20
+
21
+ msgid "%s is not in environment"
22
+ msgstr ""
23
+
24
+ msgid "%{model} with id '%{id}' was not found"
25
+ msgstr ""
26
+
27
+ msgid "%{name} has %{num_tag} class"
28
+ msgid_plural "%{name} has %{num_tag} classes"
29
+ msgstr[0] ""
30
+ msgstr[1] ""
31
+
32
+ msgid "%{puppetclass} does not belong to the %{environment} environment"
33
+ msgstr ""
34
+
35
+ msgid "*Clear environment*"
36
+ msgstr ""
37
+
38
+ msgid "*Inherit from host group*"
39
+ msgstr ""
40
+
41
+ msgid ""
42
+ "<b>Description:</b> %{desc}<br/>\n"
43
+ " <b>Type:</b> %{type}<br/>\n"
44
+ " <b>Matcher:</b> %{matcher}<br/>\n"
45
+ " <b>Inherited value:</b> %{inherited_value}"
46
+ msgstr ""
47
+
48
+ msgid "A config group provides a one-step method of associating many Puppet classes to either a host or host group. Typically this would be used to add a particular application profile or stack in one step."
49
+ msgstr ""
50
+
51
+ msgid "Actions"
52
+ msgstr ""
53
+
54
+ msgid "Add"
55
+ msgstr ""
56
+
57
+ msgid "Add Combination"
58
+ msgstr ""
59
+
60
+ msgid "Add a Puppet class to host"
61
+ msgstr ""
62
+
63
+ msgid "Add a Puppet class to host group"
64
+ msgstr ""
65
+
66
+ msgid "All environments - (not filtered)"
67
+ msgstr ""
68
+
69
+ msgid "Available Classes"
70
+ msgstr ""
71
+
72
+ msgid "Available Config Groups"
73
+ msgstr ""
74
+
75
+ msgid "Can't find a valid Foreman Proxy with a Puppet feature"
76
+ msgstr ""
77
+
78
+ msgid "Can't find a valid Proxy with a Puppet feature"
79
+ msgstr ""
80
+
81
+ msgid "Change Environment"
82
+ msgstr ""
83
+
84
+ msgid "Change Puppet Master"
85
+ msgstr ""
86
+
87
+ msgid "Classes"
88
+ msgstr ""
89
+
90
+ msgid "Click to add %s"
91
+ msgstr ""
92
+
93
+ msgid "Click to remove %s"
94
+ msgstr ""
95
+
96
+ msgid "Click to remove config group"
97
+ msgstr ""
98
+
99
+ msgid "Config Groups"
100
+ msgstr ""
101
+
102
+ msgid "Create Config Group"
103
+ msgstr ""
104
+
105
+ msgid "Create Environment"
106
+ msgstr ""
107
+
108
+ msgid "Create Puppet Environment"
109
+ msgstr ""
110
+
111
+ msgid "Create a Puppet class"
112
+ msgstr ""
113
+
114
+ msgid "Create a config group"
115
+ msgstr ""
116
+
117
+ msgid "Create an environment"
118
+ msgstr ""
119
+
120
+ msgid "Create an override value for a specific smart class parameter"
121
+ msgstr ""
122
+
123
+ msgid "Default value"
124
+ msgstr ""
125
+
126
+ msgid "Delete %s?"
127
+ msgstr ""
128
+
129
+ msgid "Delete a Puppet class"
130
+ msgstr ""
131
+
132
+ msgid "Delete a config group"
133
+ msgstr ""
134
+
135
+ msgid "Delete an environment"
136
+ msgstr ""
137
+
138
+ msgid "Delete an override value for a specific smart class parameter"
139
+ msgstr ""
140
+
141
+ msgid "Deleted environment"
142
+ msgstr ""
143
+
144
+ msgid "Deleted environment %{env} and %{pcs}"
145
+ msgstr ""
146
+
147
+ msgid "Deprecated in favor of host/puppet_attributes/config_group_ids"
148
+ msgstr ""
149
+
150
+ msgid "Deprecated in favor of host/puppet_attributes/environment_id"
151
+ msgstr ""
152
+
153
+ msgid "Deprecated in favor of host/puppet_attributes/puppetclass_ids"
154
+ msgstr ""
155
+
156
+ msgid "Deprecated in favor of hostgroup/puppet_attributes/config_group_ids"
157
+ msgstr ""
158
+
159
+ msgid "Deprecated in favor of hostgroup/puppet_attributes/environment_id"
160
+ msgstr ""
161
+
162
+ msgid "Deprecated in favor of hostgroup/puppet_attributes/puppetclass_ids"
163
+ msgstr ""
164
+
165
+ msgid "Description of smart class"
166
+ msgstr ""
167
+
168
+ msgid "Display hidden values"
169
+ msgstr ""
170
+
171
+ msgid "Edit %s"
172
+ msgstr ""
173
+
174
+ msgid "Edit Puppet Class %s"
175
+ msgstr ""
176
+
177
+ msgid "Empty environment"
178
+ msgstr ""
179
+
180
+ msgid "Environment"
181
+ msgstr ""
182
+
183
+ msgid "Environment only"
184
+ msgstr ""
185
+
186
+ msgid "Environments"
187
+ msgstr ""
188
+
189
+ msgid "Environment|Name"
190
+ msgstr ""
191
+
192
+ msgid "Failed to import %{klass} for %{name}: doesn't exists in our database - ignoring"
193
+ msgstr ""
194
+
195
+ msgid "Failed to set %{proxy_type} proxy for %{host}."
196
+ msgstr ""
197
+
198
+ msgid "Failed to update environments and Puppet classes from the on-disk Puppet installation: %s"
199
+ msgstr ""
200
+
201
+ msgid "Failed to update the environments and Puppet classes from the on-disk puppet installation: %s"
202
+ msgstr ""
203
+
204
+ msgid "Filter by name"
205
+ msgstr ""
206
+
207
+ msgid "Filter classes"
208
+ msgstr ""
209
+
210
+ msgid "Foreman will not send this parameter in classification output"
211
+ msgstr ""
212
+
213
+ msgid "Foreman will not send this parameter in classification output.Puppet will use the value defined in the Puppet manifest for this parameter"
214
+ msgstr ""
215
+
216
+ msgid "General"
217
+ msgstr ""
218
+
219
+ msgid "Host Groups"
220
+ msgstr ""
221
+
222
+ msgid "Host group and Environment"
223
+ msgstr ""
224
+
225
+ msgid "Host group only"
226
+ msgstr ""
227
+
228
+ msgid "Host groups"
229
+ msgstr ""
230
+
231
+ msgid "Hostgroup"
232
+ msgstr ""
233
+
234
+ msgid "Hosts"
235
+ msgstr ""
236
+
237
+ msgid "Hosts managed:"
238
+ msgstr ""
239
+
240
+ msgid "ID of Puppet class"
241
+ msgstr ""
242
+
243
+ msgid "ID of Puppetclass"
244
+ msgstr ""
245
+
246
+ msgid "ID of associated puppet Environment"
247
+ msgstr ""
248
+
249
+ msgid "ID of environment"
250
+ msgstr ""
251
+
252
+ msgid "ID of host"
253
+ msgstr ""
254
+
255
+ msgid "ID of host group"
256
+ msgstr ""
257
+
258
+ msgid "ID of puppet environment"
259
+ msgstr ""
260
+
261
+ msgid "IDs of associated ConfigGroups"
262
+ msgstr ""
263
+
264
+ msgid "IDs of associated Puppetclasses"
265
+ msgstr ""
266
+
267
+ msgid "If true, will raise an error if there is no default value and no matcher provide a value"
268
+ msgstr ""
269
+
270
+ msgid "If you are planning to use Foreman as an external node classifier you should provide information about one or more environments. This information is commonly imported from a pre-existing Puppet configuration by the use of the %{link_start}Puppet classes and environment importer%{link_end}."
271
+ msgstr ""
272
+
273
+ msgid "Ignored classes in the environments: %s"
274
+ msgstr ""
275
+
276
+ msgid "Ignored environment"
277
+ msgstr ""
278
+
279
+ msgid "Ignored environment names resulting in booleans found. Please quote strings like true/false and yes/no in config/ignored_environments.yml"
280
+ msgstr ""
281
+
282
+ msgid "Ignored environments: %s"
283
+ msgstr ""
284
+
285
+ msgid "Import"
286
+ msgstr ""
287
+
288
+ msgid "Import classes from %s"
289
+ msgstr ""
290
+
291
+ msgid "Import environments from %s"
292
+ msgstr ""
293
+
294
+ msgid "Import puppet classes from puppet proxy"
295
+ msgstr ""
296
+
297
+ msgid "Import puppet classes from puppet proxy for an environment"
298
+ msgstr ""
299
+
300
+ msgid "Include default value when merging all matching values"
301
+ msgstr ""
302
+
303
+ msgid "Included Classes"
304
+ msgstr ""
305
+
306
+ msgid "Included Config Groups"
307
+ msgstr ""
308
+
309
+ msgid "Inherited Classes from %s"
310
+ msgstr ""
311
+
312
+ msgid "Invalid proxy selected!"
313
+ msgstr ""
314
+
315
+ msgid "Learn more about this in the documentation."
316
+ msgstr ""
317
+
318
+ msgid "List all Puppet class IDs for host"
319
+ msgstr ""
320
+
321
+ msgid "List all Puppet class IDs for host group"
322
+ msgstr ""
323
+
324
+ msgid "List all Puppet classes"
325
+ msgstr ""
326
+
327
+ msgid "List all Puppet classes for a host"
328
+ msgstr ""
329
+
330
+ msgid "List all Puppet classes for a host group"
331
+ msgstr ""
332
+
333
+ msgid "List all Puppet classes for an environment"
334
+ msgstr ""
335
+
336
+ msgid "List all environments"
337
+ msgstr ""
338
+
339
+ msgid "List all host groups for a Puppet class"
340
+ msgstr ""
341
+
342
+ msgid "List all smart class parameters"
343
+ msgstr ""
344
+
345
+ msgid "List environments of Puppet class"
346
+ msgstr ""
347
+
348
+ msgid "List environments per location"
349
+ msgstr ""
350
+
351
+ msgid "List environments per organization"
352
+ msgstr ""
353
+
354
+ msgid "List hosts per environment"
355
+ msgstr ""
356
+
357
+ msgid "List of config groups"
358
+ msgstr ""
359
+
360
+ msgid "List of override values for a specific smart class parameter"
361
+ msgstr ""
362
+
363
+ msgid "List of smart class parameters for a specific Puppet class"
364
+ msgstr ""
365
+
366
+ msgid "List of smart class parameters for a specific environment"
367
+ msgstr ""
368
+
369
+ msgid "List of smart class parameters for a specific environment/Puppet class combination"
370
+ msgstr ""
371
+
372
+ msgid "List of smart class parameters for a specific host"
373
+ msgstr ""
374
+
375
+ msgid "List of smart class parameters for a specific host group"
376
+ msgstr ""
377
+
378
+ msgid "Loading parameters..."
379
+ msgstr ""
380
+
381
+ msgid "Locations"
382
+ msgstr ""
383
+
384
+ msgid "Merge all matching values (only array/hash type)"
385
+ msgstr ""
386
+
387
+ msgid "Name"
388
+ msgstr ""
389
+
390
+ msgid "No changes to your environments detected"
391
+ msgstr ""
392
+
393
+ msgid "No environment selected!"
394
+ msgstr ""
395
+
396
+ msgid "No environments found"
397
+ msgstr ""
398
+
399
+ msgid "No parameters to override for Puppet class %s"
400
+ msgstr ""
401
+
402
+ msgid "No proxy found to import classes from, ensure that the smart proxy has the Puppet feature enabled."
403
+ msgstr ""
404
+
405
+ msgid "No proxy selected!"
406
+ msgstr ""
407
+
408
+ msgid "No smart proxy was found to import environments from, ensure that at least one smart proxy is registered with the 'puppet' feature"
409
+ msgstr ""
410
+
411
+ msgid "None"
412
+ msgstr ""
413
+
414
+ msgid "Not authorized to edit classes"
415
+ msgstr ""
416
+
417
+ msgid "Notice"
418
+ msgstr ""
419
+
420
+ msgid "Number of Overrides"
421
+ msgstr ""
422
+
423
+ msgid "Number of classes"
424
+ msgstr ""
425
+
426
+ msgid "Omit"
427
+ msgstr ""
428
+
429
+ msgid "Omit from classification output"
430
+ msgstr ""
431
+
432
+ msgid "Operating System"
433
+ msgstr ""
434
+
435
+ msgid "Operating system default"
436
+ msgstr ""
437
+
438
+ msgid "Optional comma-delimited stringcontaining either 'new', 'updated', or 'obsolete'that is used to limit the imported Puppet classes"
439
+ msgstr ""
440
+
441
+ msgid "Optional parameter without value.<br/><i>Still managed by Foreman, the value will be empty.</i><br/>"
442
+ msgstr ""
443
+
444
+ msgid "Organizations"
445
+ msgstr ""
446
+
447
+ msgid "Original value info"
448
+ msgstr ""
449
+
450
+ msgid "Overridden"
451
+ msgstr ""
452
+
453
+ msgid "Override all parameters"
454
+ msgstr ""
455
+
456
+ msgid "Override match"
457
+ msgstr ""
458
+
459
+ msgid "Override this value"
460
+ msgstr ""
461
+
462
+ msgid "Override value, required if omit is false"
463
+ msgstr ""
464
+
465
+ msgid "Parameter"
466
+ msgstr ""
467
+
468
+ msgid "Parameterized class support permits detecting, importing, and supplying parameters directly to classes which support it, via the ENC and depending on a set of rules (Smart Matchers)."
469
+ msgstr ""
470
+
471
+ msgid "Parameters"
472
+ msgstr ""
473
+
474
+ msgid "Please select an environment first"
475
+ msgstr ""
476
+
477
+ msgid "Puppet"
478
+ msgstr ""
479
+
480
+ msgid "Puppet CA"
481
+ msgstr ""
482
+
483
+ msgid "Puppet Class"
484
+ msgstr ""
485
+
486
+ msgid "Puppet Class Parameters"
487
+ msgstr ""
488
+
489
+ msgid "Puppet Classes"
490
+ msgstr ""
491
+
492
+ msgid "Puppet ENC"
493
+ msgstr ""
494
+
495
+ msgid "Puppet Environments"
496
+ msgstr ""
497
+
498
+ msgid "Puppet YAML"
499
+ msgstr ""
500
+
501
+ msgid "Puppet environments"
502
+ msgstr ""
503
+
504
+ msgid "Puppet external nodes YAML dump"
505
+ msgstr ""
506
+
507
+ msgid "Puppet parameter"
508
+ msgstr ""
509
+
510
+ msgid "Puppetclass|Name"
511
+ msgstr ""
512
+
513
+ msgid "Remove"
514
+ msgstr ""
515
+
516
+ msgid "Remove Combination"
517
+ msgstr ""
518
+
519
+ msgid "Remove a Puppet class from host"
520
+ msgstr ""
521
+
522
+ msgid "Remove a Puppet class from host group"
523
+ msgstr ""
524
+
525
+ msgid "Remove duplicate values (only array type)"
526
+ msgstr ""
527
+
528
+ msgid "Remove this override"
529
+ msgstr ""
530
+
531
+ msgid "Required parameter without value.<br/><b>Please override!</b><br/>"
532
+ msgstr ""
533
+
534
+ msgid "Select environment"
535
+ msgstr ""
536
+
537
+ msgid "Set parameters to defaults"
538
+ msgstr ""
539
+
540
+ msgid "Show a Puppet class"
541
+ msgstr ""
542
+
543
+ msgid "Show a Puppet class for a host group"
544
+ msgstr ""
545
+
546
+ msgid "Show a Puppet class for an environment"
547
+ msgstr ""
548
+
549
+ msgid "Show a Puppet class for host"
550
+ msgstr ""
551
+
552
+ msgid "Show a config group"
553
+ msgstr ""
554
+
555
+ msgid "Show a smart class parameter"
556
+ msgstr ""
557
+
558
+ msgid "Show an environment"
559
+ msgstr ""
560
+
561
+ msgid "Show an override value for a specific smart class parameter"
562
+ msgstr ""
563
+
564
+ msgid "Smart Class Parameter"
565
+ msgstr ""
566
+
567
+ msgid "Smart Class Parameters"
568
+ msgstr ""
569
+
570
+ msgid "Successfully overridden all parameters of Puppet class %s"
571
+ msgstr ""
572
+
573
+ msgid "Successfully reset all parameters of Puppet class %s to their default values"
574
+ msgstr ""
575
+
576
+ msgid "Successfully updated environments and Puppet classes from the on-disk Puppet installation"
577
+ msgstr ""
578
+
579
+ msgid "TODO: Description of ForemanPuppetEnc."
580
+ msgstr ""
581
+
582
+ msgid "The %{proxy_type} proxy could not be set for host: %{host_names}."
583
+ msgid_plural "The %{proxy_type} puppet ca proxy could not be set for hosts: %{host_names}"
584
+ msgstr[0] ""
585
+ msgstr[1] ""
586
+
587
+ msgid "The %{proxy_type} proxy of the selected hosts was cleared."
588
+ msgstr ""
589
+
590
+ msgid "The %{proxy_type} proxy of the selected hosts was set to %{proxy_name}"
591
+ msgstr ""
592
+
593
+ msgid "The %{proxy_type} proxy of the selected hosts was set to %{proxy_name}."
594
+ msgstr ""
595
+
596
+ msgid "The class could not be saved because of an error in one of the class parameters."
597
+ msgstr ""
598
+
599
+ msgid "The final entry, Operating System default, can be set by editing the %s page."
600
+ msgstr ""
601
+
602
+ msgid "The order in which values are resolved"
603
+ msgstr ""
604
+
605
+ msgid "There are no puppet environments set up on this puppet master. Please check the puppet master configuration."
606
+ msgstr ""
607
+
608
+ msgid "This Puppet class has no parameters in its signature."
609
+ msgstr ""
610
+
611
+ msgid "This will reset parameters of the class %s to their default values. Continue?"
612
+ msgstr ""
613
+
614
+ msgid "This will set all parameters of the class %s as overridden. Continue?"
615
+ msgstr ""
616
+
617
+ msgid "To update the class signature, go to the Puppet Classes page and select \"Import\"."
618
+ msgstr ""
619
+
620
+ msgid "Total"
621
+ msgstr ""
622
+
623
+ msgid "Types of validation values"
624
+ msgstr ""
625
+
626
+ msgid "Types of variable values"
627
+ msgstr ""
628
+
629
+ msgid "Unable to generate output, Check log files"
630
+ msgstr ""
631
+
632
+ msgid "Update a Puppet class"
633
+ msgstr ""
634
+
635
+ msgid "Update a config group"
636
+ msgstr ""
637
+
638
+ msgid "Update a smart class parameter"
639
+ msgstr ""
640
+
641
+ msgid "Update an environment"
642
+ msgstr ""
643
+
644
+ msgid "Update an override value for a specific smart class parameter"
645
+ msgstr ""
646
+
647
+ msgid "Updated hosts: changed environment"
648
+ msgstr ""
649
+
650
+ msgid "Used to enforce certain values for the parameter values"
651
+ msgstr ""
652
+
653
+ msgid "Valid Host Group and Environment Combinations"
654
+ msgstr ""
655
+
656
+ msgid "Value"
657
+ msgstr ""
658
+
659
+ msgid "Value to use when there is no match"
660
+ msgstr ""
661
+
662
+ msgid ""
663
+ "When a Host requests a template (e.g. during provisioning), Foreman \\\n"
664
+ " will select the best match from the available templates of that type, in the \\\n"
665
+ " following order:"
666
+ msgstr ""
667
+
668
+ msgid ""
669
+ "When editing a template, you must assign a list \\\n"
670
+ " of operating systems which this template can be used with. Optionally, you can \\\n"
671
+ " restrict a template to a list of host groups and/or environments."
672
+ msgstr ""
673
+
674
+ msgid "When enabled the parameter is hidden in the UI"
675
+ msgstr ""
676
+
677
+ msgid "Whether the smart class parameter value is managed by Foreman"
678
+ msgstr ""
679
+
680
+ msgid "belongs to config group"
681
+ msgstr ""
682
+
683
+ msgid "included already from parent"
684
+ msgstr ""
685
+
686
+ msgid "must be true to edit the parameter"
687
+ msgstr ""
688
+
689
+ msgid "with id %{object_id} doesn't exist or is not assigned to proper organization and/or location"
690
+ msgstr ""