foreman_openscap 4.1.1 → 4.3.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (194) hide show
  1. checksums.yaml +4 -4
  2. data/app/assets/stylesheets/foreman_openscap/policy.css +5 -0
  3. data/app/controllers/api/v2/compliance/oval_contents_controller.rb +72 -0
  4. data/app/controllers/api/v2/compliance/oval_policies_controller.rb +111 -0
  5. data/app/controllers/api/v2/compliance/oval_reports_controller.rb +47 -0
  6. data/app/controllers/api/v2/compliance/scap_contents_controller.rb +2 -0
  7. data/app/controllers/concerns/foreman/controller/parameters/oval_content.rb +22 -0
  8. data/app/controllers/concerns/foreman/controller/parameters/oval_policy.rb +22 -0
  9. data/app/controllers/concerns/foreman_openscap/hosts_controller_extensions.rb +1 -1
  10. data/app/graphql/types/cve.rb +17 -0
  11. data/app/graphql/types/oval_content.rb +17 -0
  12. data/app/graphql/types/oval_policy.rb +21 -0
  13. data/app/helpers/arf_reports_helper.rb +7 -24
  14. data/app/helpers/policies_helper.rb +4 -17
  15. data/app/mailers/foreman_openscap/policy_mailer.rb +2 -2
  16. data/app/models/concerns/foreman_openscap/compliance_status_scoped_search.rb +1 -1
  17. data/app/models/concerns/foreman_openscap/data_stream_content.rb +0 -17
  18. data/app/models/concerns/foreman_openscap/host_extensions.rb +11 -11
  19. data/app/models/concerns/foreman_openscap/hostgroup_extensions.rb +3 -5
  20. data/app/models/concerns/foreman_openscap/inherited_policies.rb +11 -0
  21. data/app/models/concerns/foreman_openscap/oval_facet_host_extensions.rb +38 -0
  22. data/app/models/concerns/foreman_openscap/oval_facet_hostgroup_extensions.rb +15 -0
  23. data/app/models/concerns/foreman_openscap/policy_common.rb +75 -0
  24. data/app/models/concerns/foreman_openscap/scap_file_content.rb +24 -0
  25. data/app/models/foreman_openscap/arf_report.rb +2 -2
  26. data/app/models/foreman_openscap/cve.rb +23 -0
  27. data/app/models/foreman_openscap/host/oval_facet.rb +14 -0
  28. data/app/models/foreman_openscap/host_cve.rb +7 -0
  29. data/app/models/foreman_openscap/hostgroup/oval_facet.rb +14 -0
  30. data/app/models/foreman_openscap/hostgroup_oval_facet_oval_policy.rb +6 -0
  31. data/app/models/foreman_openscap/oval_content.rb +26 -0
  32. data/app/models/foreman_openscap/oval_facet_oval_policy.rb +6 -0
  33. data/app/models/foreman_openscap/oval_policy.rb +54 -0
  34. data/app/models/foreman_openscap/oval_status.rb +45 -0
  35. data/app/models/foreman_openscap/policy.rb +10 -73
  36. data/app/models/foreman_openscap/scap_content.rb +1 -0
  37. data/app/models/foreman_openscap/tailoring_file.rb +1 -0
  38. data/app/services/foreman_openscap/client_config/ansible.rb +39 -6
  39. data/app/services/foreman_openscap/client_config/base.rb +5 -1
  40. data/app/services/foreman_openscap/client_config/puppet.rb +2 -1
  41. data/app/services/foreman_openscap/config_name_service.rb +1 -1
  42. data/app/services/foreman_openscap/hostgroup_overrider.rb +2 -24
  43. data/app/services/foreman_openscap/hostgroup_overrider_common.rb +28 -0
  44. data/app/services/foreman_openscap/lookup_key_overrider.rb +30 -62
  45. data/app/services/foreman_openscap/lookup_key_overrides_common.rb +63 -0
  46. data/app/services/foreman_openscap/oval/check_collection.rb +45 -0
  47. data/app/services/foreman_openscap/oval/configure.rb +80 -0
  48. data/app/services/foreman_openscap/oval/cves.rb +41 -0
  49. data/app/services/foreman_openscap/oval/setup.rb +93 -0
  50. data/app/services/foreman_openscap/oval/setup_check.rb +55 -0
  51. data/app/services/foreman_openscap/oval/sync_oval_contents.rb +42 -0
  52. data/app/views/api/v2/compliance/oval_contents/base.json.rabl +6 -0
  53. data/app/views/api/v2/compliance/oval_contents/create.json.rabl +3 -0
  54. data/app/views/api/v2/compliance/oval_contents/index.json.rabl +3 -0
  55. data/app/views/api/v2/compliance/oval_contents/show.json.rabl +3 -0
  56. data/app/views/api/v2/compliance/oval_contents/sync.json.rabl +3 -0
  57. data/app/views/api/v2/compliance/oval_contents/sync_result.json.rabl +11 -0
  58. data/app/views/api/v2/compliance/oval_contents/update.json.rabl +3 -0
  59. data/app/views/api/v2/compliance/oval_policies/create.json.rabl +3 -0
  60. data/app/views/api/v2/compliance/oval_policies/index.json.rabl +3 -0
  61. data/app/views/api/v2/compliance/oval_policies/main.json.rabl +15 -0
  62. data/app/views/api/v2/compliance/oval_policies/show.json.rabl +3 -0
  63. data/app/views/api/v2/compliance/policies/base.json.rabl +2 -2
  64. data/app/views/api/v2/compliance/policies_common/_attrs.json.rabl +2 -0
  65. data/app/views/arf_reports/_output.html.erb +9 -1
  66. data/app/views/arf_reports/show.html.erb +1 -1
  67. data/app/views/arf_reports/show_html.html.erb +1 -0
  68. data/app/views/compliance_hosts/show.html.erb +1 -8
  69. data/app/views/job_templates/run_oval_scans.erb +24 -0
  70. data/app/views/policies/edit.html.erb +3 -2
  71. data/app/views/policies/show.html.erb +3 -1
  72. data/app/views/policies/steps/_deployment_options_form.html.erb +2 -2
  73. data/app/views/scap_contents/edit.html.erb +2 -12
  74. data/app/views/tailoring_files/edit.html.erb +2 -10
  75. data/config/initializers/inflections.rb +12 -0
  76. data/config/routes.rb +19 -0
  77. data/db/migrate/20201019074925_create_oval_policy.rb +13 -0
  78. data/db/migrate/20201020113801_create_oval_facet.rb +14 -0
  79. data/db/migrate/20201021084109_create_hostgroup_oval_facet.rb +14 -0
  80. data/db/migrate/20201106080924_create_oval_content.rb +12 -0
  81. data/db/migrate/20201116110256_add_oval_content_to_oval_policy.rb +5 -0
  82. data/db/migrate/20201120080329_create_cves.rb +13 -0
  83. data/db/migrate/20201202110213_update_puppet_port_param_type.rb +2 -6
  84. data/db/migrate/20201217130800_add_has_errata_to_cve.rb +8 -0
  85. data/db/migrate/20201217161511_add_url_to_oval_content.rb +5 -0
  86. data/db/migrate/20210409095625_add_oval_policy_reference_to_cve.rb +7 -0
  87. data/db/seeds.d/75-job_templates.rb +3 -2
  88. data/lib/foreman_openscap/bulk_upload.rb +2 -2
  89. data/lib/foreman_openscap/engine.rb +67 -9
  90. data/lib/foreman_openscap/version.rb +1 -1
  91. data/lib/tasks/foreman_openscap_tasks.rake +14 -9
  92. data/locale/de/LC_MESSAGES/foreman_openscap.mo +0 -0
  93. data/locale/de/foreman_openscap.edit.po +0 -0
  94. data/locale/de/foreman_openscap.po +215 -17
  95. data/locale/en_GB/LC_MESSAGES/foreman_openscap.mo +0 -0
  96. data/locale/en_GB/foreman_openscap.edit.po +0 -0
  97. data/locale/en_GB/foreman_openscap.po +213 -15
  98. data/locale/es/LC_MESSAGES/foreman_openscap.mo +0 -0
  99. data/locale/es/foreman_openscap.edit.po +0 -0
  100. data/locale/es/foreman_openscap.po +239 -41
  101. data/locale/foreman_openscap.pot +395 -112
  102. data/locale/fr/LC_MESSAGES/foreman_openscap.mo +0 -0
  103. data/locale/fr/foreman_openscap.edit.po +0 -0
  104. data/locale/fr/foreman_openscap.po +243 -45
  105. data/locale/gl/LC_MESSAGES/foreman_openscap.mo +0 -0
  106. data/locale/gl/foreman_openscap.edit.po +0 -0
  107. data/locale/gl/foreman_openscap.po +213 -15
  108. data/locale/it/LC_MESSAGES/foreman_openscap.mo +0 -0
  109. data/locale/it/foreman_openscap.edit.po +0 -0
  110. data/locale/it/foreman_openscap.po +213 -15
  111. data/locale/ja/LC_MESSAGES/foreman_openscap.mo +0 -0
  112. data/locale/ja/foreman_openscap.edit.po +0 -0
  113. data/locale/ja/foreman_openscap.po +262 -66
  114. data/locale/ko/LC_MESSAGES/foreman_openscap.mo +0 -0
  115. data/locale/ko/foreman_openscap.edit.po +0 -0
  116. data/locale/ko/foreman_openscap.po +214 -16
  117. data/locale/pt_BR/LC_MESSAGES/foreman_openscap.mo +0 -0
  118. data/locale/pt_BR/foreman_openscap.edit.po +0 -0
  119. data/locale/pt_BR/foreman_openscap.po +252 -54
  120. data/locale/ru/LC_MESSAGES/foreman_openscap.mo +0 -0
  121. data/locale/ru/foreman_openscap.edit.po +0 -0
  122. data/locale/ru/foreman_openscap.po +214 -16
  123. data/locale/sv_SE/LC_MESSAGES/foreman_openscap.mo +0 -0
  124. data/locale/sv_SE/foreman_openscap.edit.po +0 -0
  125. data/locale/sv_SE/foreman_openscap.po +213 -15
  126. data/locale/zh_CN/LC_MESSAGES/foreman_openscap.mo +0 -0
  127. data/locale/zh_CN/foreman_openscap.edit.po +0 -0
  128. data/locale/zh_CN/foreman_openscap.po +369 -169
  129. data/locale/zh_TW/LC_MESSAGES/foreman_openscap.mo +0 -0
  130. data/locale/zh_TW/foreman_openscap.edit.po +0 -0
  131. data/locale/zh_TW/foreman_openscap.po +214 -16
  132. data/package.json +48 -0
  133. data/test/factories/compliance_host_factory.rb +12 -0
  134. data/test/factories/oval_content_factory.rb +7 -0
  135. data/test/factories/oval_policy_factory.rb +9 -0
  136. data/test/files/oval_contents/ansible-2.9.oval.xml.bz2 +0 -0
  137. data/test/fixtures/cve_fixtures.rb +104 -0
  138. data/test/functional/api/v2/compliance/oval_contents_controller_test.rb +39 -0
  139. data/test/functional/api/v2/compliance/oval_policies_controller_test.rb +141 -0
  140. data/test/functional/api/v2/compliance/oval_reports_controller_test.rb +32 -0
  141. data/test/graphql/queries/oval_contents_query_test.rb +35 -0
  142. data/test/graphql/queries/oval_policies_query_test.rb +35 -0
  143. data/test/test_plugin_helper.rb +4 -0
  144. data/test/unit/oval_host_test.rb +45 -0
  145. data/test/unit/oval_policy_test.rb +133 -0
  146. data/test/unit/oval_status_test.rb +47 -0
  147. data/test/unit/services/oval/cves_test.rb +81 -0
  148. data/test/unit/services/oval/setup_test.rb +87 -0
  149. data/webpack/components/EmptyState.js +67 -0
  150. data/webpack/components/IndexLayout.js +35 -0
  151. data/webpack/components/IndexLayout.scss +3 -0
  152. data/webpack/components/IndexTable/IndexTableHelper.js +9 -0
  153. data/webpack/components/IndexTable/index.js +66 -0
  154. data/webpack/components/RuleSeverity/RuleSeverity.scss +3 -0
  155. data/webpack/components/RuleSeverity/RuleSeverity.test.js +13 -0
  156. data/webpack/components/RuleSeverity/__snapshots__/RuleSeverity.test.js.snap +41 -0
  157. data/webpack/components/RuleSeverity/i_severity-critical.svg +61 -0
  158. data/webpack/components/RuleSeverity/i_severity-high.svg +61 -0
  159. data/webpack/components/RuleSeverity/i_severity-low.svg +62 -0
  160. data/webpack/components/RuleSeverity/i_severity-med.svg +62 -0
  161. data/webpack/components/RuleSeverity/i_unknown.svg +33 -0
  162. data/webpack/components/RuleSeverity/index.js +33 -0
  163. data/webpack/components/withLoading.js +68 -0
  164. data/webpack/global_index.js +5 -0
  165. data/webpack/graphql/queries/cves.gql +18 -0
  166. data/webpack/graphql/queries/ovalContents.gql +11 -0
  167. data/webpack/graphql/queries/ovalPolicies.gql +12 -0
  168. data/webpack/graphql/queries/ovalPolicy.gql +21 -0
  169. data/webpack/helpers/commonHelper.js +1 -0
  170. data/webpack/helpers/globalIdHelper.js +13 -0
  171. data/webpack/helpers/pageParamsHelper.js +31 -0
  172. data/webpack/helpers/pathsHelper.js +22 -0
  173. data/webpack/helpers/tableHelper.js +9 -0
  174. data/webpack/index.js +8 -0
  175. data/webpack/routes/OvalContents/OvalContentsIndex/OvalContentsIndex.js +45 -0
  176. data/webpack/routes/OvalContents/OvalContentsIndex/OvalContentsTable.js +38 -0
  177. data/webpack/routes/OvalContents/OvalContentsIndex/__tests__/OvalContentsIndex.fixtures.js +106 -0
  178. data/webpack/routes/OvalContents/OvalContentsIndex/__tests__/OvalContentsIndex.test.js +75 -0
  179. data/webpack/routes/OvalContents/OvalContentsIndex/index.js +7 -0
  180. data/webpack/routes/OvalPolicies/OvalPoliciesIndex/OvalPoliciesIndex.js +46 -0
  181. data/webpack/routes/OvalPolicies/OvalPoliciesIndex/OvalPoliciesTable.js +44 -0
  182. data/webpack/routes/OvalPolicies/OvalPoliciesIndex/__tests__/OvalPoliciesIndex.fixtures.js +61 -0
  183. data/webpack/routes/OvalPolicies/OvalPoliciesIndex/__tests__/OvalPoliciesIndex.test.js +78 -0
  184. data/webpack/routes/OvalPolicies/OvalPoliciesIndex/index.js +7 -0
  185. data/webpack/routes/OvalPolicies/OvalPoliciesShow/CvesTab.js +48 -0
  186. data/webpack/routes/OvalPolicies/OvalPoliciesShow/CvesTable.js +63 -0
  187. data/webpack/routes/OvalPolicies/OvalPoliciesShow/OvalPoliciesShow.js +79 -0
  188. data/webpack/routes/OvalPolicies/OvalPoliciesShow/OvalPoliciesShowHelper.js +39 -0
  189. data/webpack/routes/OvalPolicies/OvalPoliciesShow/__tests__/OvalPoliciesShow.fixtures.js +78 -0
  190. data/webpack/routes/OvalPolicies/OvalPoliciesShow/__tests__/OvalPoliciesShow.test.js +112 -0
  191. data/webpack/routes/OvalPolicies/OvalPoliciesShow/index.js +35 -0
  192. data/webpack/routes/routes.js +28 -0
  193. data/webpack/testHelper.js +64 -0
  194. metadata +143 -3
File without changes
@@ -9,8 +9,8 @@ msgid ""
9
9
  msgstr ""
10
10
  "Project-Id-Version: Foreman\n"
11
11
  "Report-Msgid-Bugs-To: \n"
12
- "PO-Revision-Date: 2020-03-02 20:59+0000\n"
13
- "Last-Translator: Lukáš Zapletal\n"
12
+ "PO-Revision-Date: 2020-05-12 09:50+0000\n"
13
+ "Last-Translator: Transifex Bot <>\n"
14
14
  "Language-Team: Russian (http://www.transifex.com/foreman/foreman/language/ru/)"
15
15
  "\n"
16
16
  "MIME-Version: 1.0\n"
@@ -35,9 +35,6 @@ msgid_plural "%s compliance reports by policy"
35
35
  msgstr[0] ""
36
36
  msgstr[1] ""
37
37
 
38
- msgid "%s compliance reports by policy"
39
- msgstr "%s отчетов по политике"
40
-
41
38
  msgid "%s latest report"
42
39
  msgstr "Последний отчет %s"
43
40
 
@@ -47,6 +44,12 @@ msgstr "Распределение отчетов %s по времени"
47
44
  msgid "%s spool errors detected, inspect the appropriate file directly on proxy"
48
45
  msgstr ""
49
46
 
47
+ msgid "%s vulnerabilities found"
48
+ msgstr ""
49
+
50
+ msgid "%s vulnerabilities with available patch found"
51
+ msgstr ""
52
+
50
53
  msgid "%{type} was selected to deploy policy to clients, but %{type} is not available. Are you missing a plugin?"
51
54
  msgstr ""
52
55
 
@@ -77,9 +80,27 @@ msgstr ""
77
80
  msgid "Apply policy to hosts"
78
81
  msgstr ""
79
82
 
83
+ msgid "Are required variables for theforeman.foreman_scap_client present?"
84
+ msgstr ""
85
+
86
+ msgid "Array of host IDs"
87
+ msgstr ""
88
+
89
+ msgid "Array of hostgroup IDs"
90
+ msgstr ""
91
+
80
92
  msgid "Assign Compliance Policy"
81
93
  msgstr "Выбрать политику"
82
94
 
95
+ msgid "Assign hostgroups to an OVAL Policy"
96
+ msgstr ""
97
+
98
+ msgid "Assign hosts to an OVAL Policy"
99
+ msgstr ""
100
+
101
+ msgid "Assign openscap_proxy to %s before proceeding."
102
+ msgstr ""
103
+
83
104
  msgid "Back"
84
105
  msgstr "Назад"
85
106
 
@@ -122,9 +143,6 @@ msgstr "Выберите день недели"
122
143
  msgid "Compliance"
123
144
  msgstr "Соответствие стандартам"
124
145
 
125
- msgid "Compliance Hosts"
126
- msgstr ""
127
-
128
146
  msgid "Compliance Policies"
129
147
  msgstr "Политика соответствия нормам безопасности"
130
148
 
@@ -152,12 +170,18 @@ msgstr "Соответствует требованиям политики"
152
170
  msgid "Could not find host identified by: %s"
153
171
  msgstr ""
154
172
 
173
+ msgid "Could not update Ansible Variables with override: true"
174
+ msgstr ""
175
+
155
176
  msgid "Could not validate %s. Please make sure you have appropriate proxy version to use this functionality"
156
177
  msgstr ""
157
178
 
158
179
  msgid "Could not validate %{file_type}. Error %{error}"
159
180
  msgstr ""
160
181
 
182
+ msgid "Create OVAL content"
183
+ msgstr ""
184
+
161
185
  msgid "Create SCAP content"
162
186
  msgstr "Создать описание SCAP"
163
187
 
@@ -167,6 +191,9 @@ msgstr ""
167
191
  msgid "Create a Tailoring file"
168
192
  msgstr ""
169
193
 
194
+ msgid "Create an OVAL Policy"
195
+ msgstr ""
196
+
170
197
  msgid "Dashboard"
171
198
  msgstr "Обзор"
172
199
 
@@ -188,6 +215,9 @@ msgstr ""
188
215
  msgid "Delete an ARF Report"
189
216
  msgstr ""
190
217
 
218
+ msgid "Delete an OVAL Policy"
219
+ msgstr ""
220
+
191
221
  msgid "Delete compliance policy %s with all of its reports?"
192
222
  msgstr ""
193
223
 
@@ -209,6 +239,9 @@ msgstr ""
209
239
  msgid "Deletes a Tailoring file"
210
240
  msgstr ""
211
241
 
242
+ msgid "Deletes an OVAL content"
243
+ msgstr ""
244
+
212
245
  msgid "Deletes an SCAP content"
213
246
  msgstr "Удалить описание SCAP"
214
247
 
@@ -218,6 +251,12 @@ msgstr ""
218
251
  msgid "Description"
219
252
  msgstr "Описание"
220
253
 
254
+ msgid "Details for Compliance Policy %s"
255
+ msgstr ""
256
+
257
+ msgid "Directory to upload when using \"directory\" upload type"
258
+ msgstr ""
259
+
221
260
  msgid "Documentation"
222
261
  msgstr "Справка"
223
262
 
@@ -242,18 +281,15 @@ msgstr ""
242
281
  msgid "Download bzipped ARF report"
243
282
  msgstr ""
244
283
 
245
- msgid "Edit Compliance Policy"
246
- msgstr "Изменить политику"
247
-
248
- msgid "Edit SCAP Content"
249
- msgstr "Изменить описание SCAP"
250
-
251
- msgid "Edit Tailoring File"
284
+ msgid "Edit %s"
252
285
  msgstr ""
253
286
 
254
287
  msgid "Effective Profile"
255
288
  msgstr ""
256
289
 
290
+ msgid "Error!"
291
+ msgstr ""
292
+
257
293
  msgid "Failed"
258
294
  msgstr "Неудачно"
259
295
 
@@ -291,12 +327,18 @@ msgstr "Н"
291
327
  msgid "File Upload"
292
328
  msgstr "Добавить файл"
293
329
 
330
+ msgid "File paths to upload when using \"files\" upload type"
331
+ msgstr ""
332
+
294
333
  msgid "Full Report"
295
334
  msgstr ""
296
335
 
297
336
  msgid "General"
298
337
  msgstr "Общие"
299
338
 
339
+ msgid "Has Errata?"
340
+ msgstr ""
341
+
300
342
  msgid "Host"
301
343
  msgstr "Узел"
302
344
 
@@ -333,6 +375,9 @@ msgstr "Имя узла"
333
375
  msgid "Hosts Breakdown"
334
376
  msgstr "Распределение по узлам"
335
377
 
378
+ msgid "Hosts Count"
379
+ msgstr ""
380
+
336
381
  msgid "Hosts failing this rule"
337
382
  msgstr ""
338
383
 
@@ -382,6 +427,15 @@ msgstr "Неопределенный результат"
382
427
  msgid "Inconclusive results"
383
428
  msgstr "Неопределенные результаты"
384
429
 
430
+ msgid "Is %s param set to be overriden?"
431
+ msgstr ""
432
+
433
+ msgid "Is foreman_ansible present?"
434
+ msgstr ""
435
+
436
+ msgid "Is theforeman.foreman_scap_client present?"
437
+ msgstr ""
438
+
385
439
  msgid "It may sometimes be required to adjust the security policy to your specific needs. "
386
440
  msgstr ""
387
441
 
@@ -394,6 +448,12 @@ msgstr "Последние отчеты для %s"
394
448
  msgid "List ARF reports"
395
449
  msgstr ""
396
450
 
451
+ msgid "List OVAL Policies"
452
+ msgstr ""
453
+
454
+ msgid "List OVAL contents"
455
+ msgstr ""
456
+
397
457
  msgid "List Policies"
398
458
  msgstr ""
399
459
 
@@ -418,6 +478,9 @@ msgstr "Сообщение"
418
478
  msgid "More details"
419
479
  msgstr "Подробности"
420
480
 
481
+ msgid "Name"
482
+ msgstr ""
483
+
421
484
  msgid "Never audited"
422
485
  msgstr "Никогда не проверялись"
423
486
 
@@ -442,6 +505,18 @@ msgstr "Нет"
442
505
  msgid "No ARF reports for this policy"
443
506
  msgstr "Нет отчетов ARF для этой политики"
444
507
 
508
+ msgid "No CVEs found."
509
+ msgstr ""
510
+
511
+ msgid "No OVAL Contents found."
512
+ msgstr ""
513
+
514
+ msgid "No OVAL Policies found"
515
+ msgstr ""
516
+
517
+ msgid "No OVAL Policy found"
518
+ msgstr ""
519
+
445
520
  msgid "No OpenSCAP Proxy selected."
446
521
  msgstr ""
447
522
 
@@ -451,6 +526,9 @@ msgstr ""
451
526
  msgid "No Tailoring file assigned for policy with id %s"
452
527
  msgstr ""
453
528
 
529
+ msgid "No Vulnerabilities found"
530
+ msgstr ""
531
+
454
532
  msgid "No available proxy to validate. Returned with error: %s"
455
533
  msgstr "Нет доступных прокси для проведения проверки. Ошибка: %s"
456
534
 
@@ -514,6 +592,48 @@ msgstr "Количество событий"
514
592
  msgid "Number of a day in month, note that not all months have same count of days"
515
593
  msgstr "Порядковый номер дня в месяце (количество дней в разных месяцах может отличаться)"
516
594
 
595
+ msgid "OVAL Content"
596
+ msgstr ""
597
+
598
+ msgid "OVAL Contents"
599
+ msgstr ""
600
+
601
+ msgid "OVAL Contents table"
602
+ msgstr ""
603
+
604
+ msgid "OVAL Policies"
605
+ msgstr ""
606
+
607
+ msgid "OVAL Policies Table"
608
+ msgstr ""
609
+
610
+ msgid "OVAL Policy description"
611
+ msgstr ""
612
+
613
+ msgid "OVAL Policy name"
614
+ msgstr ""
615
+
616
+ msgid "OVAL Policy schedule cron line (only if period == \"custom\")"
617
+ msgstr ""
618
+
619
+ msgid "OVAL Policy schedule day of month (only if period == \"monthly\")"
620
+ msgstr ""
621
+
622
+ msgid "OVAL Policy schedule period (weekly, monthly, custom)"
623
+ msgstr ""
624
+
625
+ msgid "OVAL Policy schedule weekday (only if period == \"weekly\")"
626
+ msgstr ""
627
+
628
+ msgid "OVAL content name"
629
+ msgstr ""
630
+
631
+ msgid "OVAL policy successfully configured with %s."
632
+ msgstr ""
633
+
634
+ msgid "OVAL scan"
635
+ msgstr ""
636
+
517
637
  msgid "Once SCAP content is present, you can create a policy, assign select host groups and schedule to run."
518
638
  msgstr ""
519
639
 
@@ -529,6 +649,9 @@ msgstr ""
529
649
  msgid "Organizations"
530
650
  msgstr "Организации"
531
651
 
652
+ msgid "Original file name of the OVAL content file"
653
+ msgstr ""
654
+
532
655
  msgid "Original file name of the XML file"
533
656
  msgstr ""
534
657
 
@@ -552,6 +675,12 @@ msgstr "У"
552
675
  msgid "Please Confirm"
553
676
  msgstr "Подтвердите"
554
677
 
678
+ msgid "Please make sure you understand them by reading our"
679
+ msgstr ""
680
+
681
+ msgid "Please specify import type, received: %{received}, expected one of: %{expected}"
682
+ msgstr ""
683
+
555
684
  msgid "Policies"
556
685
  msgstr "Политика"
557
686
 
@@ -567,6 +696,9 @@ msgstr "Политика %s"
567
696
  msgid "Policy Attributes"
568
697
  msgstr ""
569
698
 
699
+ msgid "Policy OVAL content ID"
700
+ msgstr ""
701
+
570
702
  msgid "Policy SCAP content ID"
571
703
  msgstr ""
572
704
 
@@ -609,6 +741,9 @@ msgstr "Класс Puppet"
609
741
  msgid "Rationale"
610
742
  msgstr "Обоснование"
611
743
 
744
+ msgid "Ref Id"
745
+ msgstr ""
746
+
612
747
  msgid "References"
613
748
  msgstr "Ссылки"
614
749
 
@@ -645,6 +780,9 @@ msgstr "Результат"
645
780
  msgid "Rule Results"
646
781
  msgstr ""
647
782
 
783
+ msgid "Run OVAL scan"
784
+ msgstr ""
785
+
648
786
  msgid "Run OpenSCAP scan"
649
787
  msgstr ""
650
788
 
@@ -669,7 +807,7 @@ msgstr "Описание SCAP"
669
807
  msgid "SCAP policies summary"
670
808
  msgstr ""
671
809
 
672
- msgid "Scap Contents"
810
+ msgid "Scan All Hostgroups"
673
811
  msgstr ""
674
812
 
675
813
  msgid "Schedule"
@@ -708,6 +846,12 @@ msgstr ""
708
846
  msgid "Show an ARF report"
709
847
  msgstr ""
710
848
 
849
+ msgid "Show an OVAL Policy"
850
+ msgstr ""
851
+
852
+ msgid "Show an OVAL content"
853
+ msgstr ""
854
+
711
855
  msgid "Show an SCAP content"
712
856
  msgstr "Показать описание SCAP"
713
857
 
@@ -753,6 +897,12 @@ msgstr ""
753
897
  msgid "Summary report from Foreman server at %{foreman_url}"
754
898
  msgstr "Сводный отчет с сервера Foreman: %{foreman_url}"
755
899
 
900
+ msgid "Sync contents that have remote source URL"
901
+ msgstr ""
902
+
903
+ msgid "Table of CVEs for OVAL policy"
904
+ msgstr ""
905
+
756
906
  msgid "Tailoring File"
757
907
  msgstr ""
758
908
 
@@ -776,6 +926,9 @@ msgstr ""
776
926
  msgid "The following %{key_name} were missing for %{item_name}: %{key_names}. Make sure they are imported before proceeding."
777
927
  msgstr ""
778
928
 
929
+ msgid "The following Ansible Variables were not found: %{missing_vars}, please import them before running this action again."
930
+ msgstr ""
931
+
779
932
  msgid "The following Smart Proxies need to be updated to unlock the feature: %s. "
780
933
  msgstr ""
781
934
 
@@ -785,6 +938,9 @@ msgstr ""
785
938
  msgid "The identifier of the host"
786
939
  msgstr ""
787
940
 
941
+ msgid "There are significant differences in deployment options."
942
+ msgstr ""
943
+
788
944
  msgid "This feature is temporarily disabled. "
789
945
  msgstr ""
790
946
 
@@ -805,6 +961,12 @@ msgid_plural "Total of %{hosts} hosts"
805
961
  msgstr[0] ""
806
962
  msgstr[1] ""
807
963
 
964
+ msgid "Type of the upload"
965
+ msgstr ""
966
+
967
+ msgid "URL of the OVAL content file"
968
+ msgstr ""
969
+
808
970
  msgid "Unable to get HTML version of requested report from Smart Proxy"
809
971
  msgstr ""
810
972
 
@@ -817,12 +979,21 @@ msgstr "Отменить политику"
817
979
  msgid "Unknown Compliance status"
818
980
  msgstr "Неизвестный статус"
819
981
 
982
+ msgid "Unknown OVAL status"
983
+ msgstr ""
984
+
820
985
  msgid "Update a Policy"
821
986
  msgstr ""
822
987
 
823
988
  msgid "Update a Tailoring file"
824
989
  msgstr ""
825
990
 
991
+ msgid "Update an OVAL Policy"
992
+ msgstr ""
993
+
994
+ msgid "Update an OVAL content"
995
+ msgstr ""
996
+
826
997
  msgid "Update an SCAP content"
827
998
  msgstr "Обновить описание SCAP"
828
999
 
@@ -844,24 +1015,39 @@ msgstr ""
844
1015
  msgid "Upload an ARF report"
845
1016
  msgstr "Выгрузить отчет ARF"
846
1017
 
1018
+ msgid "Upload an OVAL report - a list of CVEs for given host"
1019
+ msgstr ""
1020
+
847
1021
  msgid "Upload new SCAP content file"
848
1022
  msgstr "Добавление файла описания SCAP"
849
1023
 
850
1024
  msgid "Upload new Tailoring File"
851
1025
  msgstr ""
852
1026
 
1027
+ msgid "Upload scap contents in bulk"
1028
+ msgstr ""
1029
+
853
1030
  msgid "View Report"
854
1031
  msgstr "Показать отчет"
855
1032
 
856
1033
  msgid "View full report"
857
1034
  msgstr "Показать полный отчет"
858
1035
 
1036
+ msgid "Was %s configured successfully?"
1037
+ msgstr ""
1038
+
1039
+ msgid "Was %{model_name} %{name} configured successfully?"
1040
+ msgstr ""
1041
+
859
1042
  msgid "XCCDF Profile"
860
1043
  msgstr "Профиль XCCDF"
861
1044
 
862
1045
  msgid "XCCDF Profile in Tailoring File"
863
1046
  msgstr ""
864
1047
 
1048
+ msgid "XML containing OVAL content"
1049
+ msgstr ""
1050
+
865
1051
  msgid "XML containing SCAP content"
866
1052
  msgstr ""
867
1053
 
@@ -892,6 +1078,15 @@ msgstr ""
892
1078
  msgid "does not have the selected SCAP content profile"
893
1079
  msgstr ""
894
1080
 
1081
+ msgid "foreman_ansible plugin not found, please install it before running this action again."
1082
+ msgstr ""
1083
+
1084
+ msgid "hostgroups"
1085
+ msgstr ""
1086
+
1087
+ msgid "hosts"
1088
+ msgstr ""
1089
+
895
1090
  msgid "invalid type %s"
896
1091
  msgstr "недопустимый тип %s"
897
1092
 
@@ -916,5 +1111,8 @@ msgstr ""
916
1111
  msgid "must have Openscap feature"
917
1112
  msgstr ""
918
1113
 
1114
+ msgid "theforeman.foreman_scap_client Ansible Role not found, please import it before running this action again."
1115
+ msgstr ""
1116
+
919
1117
  msgid "these Compliance reports"
920
1118
  msgstr ""