foreman_openscap 4.1.2 → 4.3.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/app/assets/stylesheets/foreman_openscap/policy.css +5 -0
- data/app/controllers/api/v2/compliance/oval_contents_controller.rb +72 -0
- data/app/controllers/api/v2/compliance/oval_policies_controller.rb +111 -0
- data/app/controllers/api/v2/compliance/oval_reports_controller.rb +47 -0
- data/app/controllers/concerns/foreman/controller/parameters/oval_content.rb +22 -0
- data/app/controllers/concerns/foreman/controller/parameters/oval_policy.rb +22 -0
- data/app/controllers/concerns/foreman_openscap/hosts_controller_extensions.rb +1 -1
- data/app/graphql/types/cve.rb +17 -0
- data/app/graphql/types/oval_content.rb +17 -0
- data/app/graphql/types/oval_policy.rb +21 -0
- data/app/helpers/arf_reports_helper.rb +7 -24
- data/app/helpers/policies_helper.rb +4 -17
- data/app/mailers/foreman_openscap/policy_mailer.rb +2 -2
- data/app/models/concerns/foreman_openscap/compliance_status_scoped_search.rb +1 -1
- data/app/models/concerns/foreman_openscap/data_stream_content.rb +0 -17
- data/app/models/concerns/foreman_openscap/host_extensions.rb +11 -11
- data/app/models/concerns/foreman_openscap/hostgroup_extensions.rb +3 -5
- data/app/models/concerns/foreman_openscap/inherited_policies.rb +11 -0
- data/app/models/concerns/foreman_openscap/oval_facet_host_extensions.rb +38 -0
- data/app/models/concerns/foreman_openscap/oval_facet_hostgroup_extensions.rb +15 -0
- data/app/models/concerns/foreman_openscap/policy_common.rb +75 -0
- data/app/models/concerns/foreman_openscap/scap_file_content.rb +24 -0
- data/app/models/foreman_openscap/arf_report.rb +2 -2
- data/app/models/foreman_openscap/cve.rb +23 -0
- data/app/models/foreman_openscap/host/oval_facet.rb +14 -0
- data/app/models/foreman_openscap/host_cve.rb +7 -0
- data/app/models/foreman_openscap/hostgroup/oval_facet.rb +14 -0
- data/app/models/foreman_openscap/hostgroup_oval_facet_oval_policy.rb +6 -0
- data/app/models/foreman_openscap/oval_content.rb +26 -0
- data/app/models/foreman_openscap/oval_facet_oval_policy.rb +6 -0
- data/app/models/foreman_openscap/oval_policy.rb +54 -0
- data/app/models/foreman_openscap/oval_status.rb +45 -0
- data/app/models/foreman_openscap/policy.rb +10 -73
- data/app/models/foreman_openscap/scap_content.rb +1 -0
- data/app/models/foreman_openscap/tailoring_file.rb +1 -0
- data/app/services/foreman_openscap/client_config/ansible.rb +39 -6
- data/app/services/foreman_openscap/client_config/base.rb +5 -1
- data/app/services/foreman_openscap/client_config/puppet.rb +2 -1
- data/app/services/foreman_openscap/config_name_service.rb +1 -1
- data/app/services/foreman_openscap/hostgroup_overrider.rb +2 -24
- data/app/services/foreman_openscap/hostgroup_overrider_common.rb +28 -0
- data/app/services/foreman_openscap/lookup_key_overrider.rb +30 -62
- data/app/services/foreman_openscap/lookup_key_overrides_common.rb +63 -0
- data/app/services/foreman_openscap/oval/check_collection.rb +45 -0
- data/app/services/foreman_openscap/oval/configure.rb +80 -0
- data/app/services/foreman_openscap/oval/cves.rb +41 -0
- data/app/services/foreman_openscap/oval/setup.rb +93 -0
- data/app/services/foreman_openscap/oval/setup_check.rb +55 -0
- data/app/services/foreman_openscap/oval/sync_oval_contents.rb +42 -0
- data/app/views/api/v2/compliance/oval_contents/base.json.rabl +6 -0
- data/app/views/api/v2/compliance/oval_contents/create.json.rabl +3 -0
- data/app/views/api/v2/compliance/oval_contents/index.json.rabl +3 -0
- data/app/views/api/v2/compliance/oval_contents/show.json.rabl +3 -0
- data/app/views/api/v2/compliance/oval_contents/sync.json.rabl +3 -0
- data/app/views/api/v2/compliance/oval_contents/sync_result.json.rabl +11 -0
- data/app/views/api/v2/compliance/oval_contents/update.json.rabl +3 -0
- data/app/views/api/v2/compliance/oval_policies/create.json.rabl +3 -0
- data/app/views/api/v2/compliance/oval_policies/index.json.rabl +3 -0
- data/app/views/api/v2/compliance/oval_policies/main.json.rabl +15 -0
- data/app/views/api/v2/compliance/oval_policies/show.json.rabl +3 -0
- data/app/views/api/v2/compliance/policies/base.json.rabl +2 -2
- data/app/views/api/v2/compliance/policies_common/_attrs.json.rabl +2 -0
- data/app/views/arf_reports/_output.html.erb +9 -1
- data/app/views/arf_reports/show.html.erb +1 -1
- data/app/views/arf_reports/show_html.html.erb +1 -0
- data/app/views/compliance_hosts/show.html.erb +1 -8
- data/app/views/job_templates/run_oval_scans.erb +24 -0
- data/app/views/policies/edit.html.erb +3 -2
- data/app/views/policies/show.html.erb +3 -1
- data/app/views/policies/steps/_deployment_options_form.html.erb +2 -2
- data/app/views/scap_contents/edit.html.erb +2 -12
- data/app/views/tailoring_files/edit.html.erb +2 -10
- data/config/initializers/inflections.rb +12 -0
- data/config/routes.rb +19 -0
- data/db/migrate/20201019074925_create_oval_policy.rb +13 -0
- data/db/migrate/20201020113801_create_oval_facet.rb +14 -0
- data/db/migrate/20201021084109_create_hostgroup_oval_facet.rb +14 -0
- data/db/migrate/20201106080924_create_oval_content.rb +12 -0
- data/db/migrate/20201116110256_add_oval_content_to_oval_policy.rb +5 -0
- data/db/migrate/20201120080329_create_cves.rb +13 -0
- data/db/migrate/20201202110213_update_puppet_port_param_type.rb +2 -6
- data/db/migrate/20201217130800_add_has_errata_to_cve.rb +8 -0
- data/db/migrate/20201217161511_add_url_to_oval_content.rb +5 -0
- data/db/migrate/20210409095625_add_oval_policy_reference_to_cve.rb +7 -0
- data/db/seeds.d/75-job_templates.rb +3 -2
- data/lib/foreman_openscap/bulk_upload.rb +2 -2
- data/lib/foreman_openscap/engine.rb +67 -9
- data/lib/foreman_openscap/version.rb +1 -1
- data/lib/tasks/foreman_openscap_tasks.rake +14 -9
- data/locale/de/LC_MESSAGES/foreman_openscap.mo +0 -0
- data/locale/de/foreman_openscap.edit.po +0 -0
- data/locale/de/foreman_openscap.po +215 -17
- data/locale/en_GB/LC_MESSAGES/foreman_openscap.mo +0 -0
- data/locale/en_GB/foreman_openscap.edit.po +0 -0
- data/locale/en_GB/foreman_openscap.po +213 -15
- data/locale/es/LC_MESSAGES/foreman_openscap.mo +0 -0
- data/locale/es/foreman_openscap.edit.po +0 -0
- data/locale/es/foreman_openscap.po +239 -41
- data/locale/foreman_openscap.pot +395 -112
- data/locale/fr/LC_MESSAGES/foreman_openscap.mo +0 -0
- data/locale/fr/foreman_openscap.edit.po +0 -0
- data/locale/fr/foreman_openscap.po +243 -45
- data/locale/gl/LC_MESSAGES/foreman_openscap.mo +0 -0
- data/locale/gl/foreman_openscap.edit.po +0 -0
- data/locale/gl/foreman_openscap.po +213 -15
- data/locale/it/LC_MESSAGES/foreman_openscap.mo +0 -0
- data/locale/it/foreman_openscap.edit.po +0 -0
- data/locale/it/foreman_openscap.po +213 -15
- data/locale/ja/LC_MESSAGES/foreman_openscap.mo +0 -0
- data/locale/ja/foreman_openscap.edit.po +0 -0
- data/locale/ja/foreman_openscap.po +262 -66
- data/locale/ko/LC_MESSAGES/foreman_openscap.mo +0 -0
- data/locale/ko/foreman_openscap.edit.po +0 -0
- data/locale/ko/foreman_openscap.po +214 -16
- data/locale/pt_BR/LC_MESSAGES/foreman_openscap.mo +0 -0
- data/locale/pt_BR/foreman_openscap.edit.po +0 -0
- data/locale/pt_BR/foreman_openscap.po +252 -54
- data/locale/ru/LC_MESSAGES/foreman_openscap.mo +0 -0
- data/locale/ru/foreman_openscap.edit.po +0 -0
- data/locale/ru/foreman_openscap.po +214 -16
- data/locale/sv_SE/LC_MESSAGES/foreman_openscap.mo +0 -0
- data/locale/sv_SE/foreman_openscap.edit.po +0 -0
- data/locale/sv_SE/foreman_openscap.po +213 -15
- data/locale/zh_CN/LC_MESSAGES/foreman_openscap.mo +0 -0
- data/locale/zh_CN/foreman_openscap.edit.po +0 -0
- data/locale/zh_CN/foreman_openscap.po +369 -169
- data/locale/zh_TW/LC_MESSAGES/foreman_openscap.mo +0 -0
- data/locale/zh_TW/foreman_openscap.edit.po +0 -0
- data/locale/zh_TW/foreman_openscap.po +214 -16
- data/package.json +48 -0
- data/test/factories/compliance_host_factory.rb +12 -0
- data/test/factories/oval_content_factory.rb +7 -0
- data/test/factories/oval_policy_factory.rb +9 -0
- data/test/files/oval_contents/ansible-2.9.oval.xml.bz2 +0 -0
- data/test/fixtures/cve_fixtures.rb +104 -0
- data/test/functional/api/v2/compliance/oval_contents_controller_test.rb +39 -0
- data/test/functional/api/v2/compliance/oval_policies_controller_test.rb +141 -0
- data/test/functional/api/v2/compliance/oval_reports_controller_test.rb +32 -0
- data/test/graphql/queries/oval_contents_query_test.rb +35 -0
- data/test/graphql/queries/oval_policies_query_test.rb +35 -0
- data/test/test_plugin_helper.rb +4 -0
- data/test/unit/oval_host_test.rb +45 -0
- data/test/unit/oval_policy_test.rb +133 -0
- data/test/unit/oval_status_test.rb +47 -0
- data/test/unit/services/oval/cves_test.rb +81 -0
- data/test/unit/services/oval/setup_test.rb +87 -0
- data/webpack/components/EmptyState.js +67 -0
- data/webpack/components/IndexLayout.js +35 -0
- data/webpack/components/IndexLayout.scss +3 -0
- data/webpack/components/IndexTable/IndexTableHelper.js +9 -0
- data/webpack/components/IndexTable/index.js +65 -0
- data/webpack/components/RuleSeverity/RuleSeverity.scss +3 -0
- data/webpack/components/RuleSeverity/RuleSeverity.test.js +13 -0
- data/webpack/components/RuleSeverity/__snapshots__/RuleSeverity.test.js.snap +41 -0
- data/webpack/components/RuleSeverity/i_severity-critical.svg +61 -0
- data/webpack/components/RuleSeverity/i_severity-high.svg +61 -0
- data/webpack/components/RuleSeverity/i_severity-low.svg +62 -0
- data/webpack/components/RuleSeverity/i_severity-med.svg +62 -0
- data/webpack/components/RuleSeverity/i_unknown.svg +33 -0
- data/webpack/components/RuleSeverity/index.js +33 -0
- data/webpack/components/withLoading.js +68 -0
- data/webpack/global_index.js +5 -0
- data/webpack/graphql/queries/cves.gql +18 -0
- data/webpack/graphql/queries/ovalContents.gql +11 -0
- data/webpack/graphql/queries/ovalPolicies.gql +12 -0
- data/webpack/graphql/queries/ovalPolicy.gql +21 -0
- data/webpack/helpers/commonHelper.js +1 -0
- data/webpack/helpers/globalIdHelper.js +13 -0
- data/webpack/helpers/pageParamsHelper.js +31 -0
- data/webpack/helpers/pathsHelper.js +22 -0
- data/webpack/helpers/tableHelper.js +9 -0
- data/webpack/index.js +8 -0
- data/webpack/routes/OvalContents/OvalContentsIndex/OvalContentsIndex.js +45 -0
- data/webpack/routes/OvalContents/OvalContentsIndex/OvalContentsTable.js +38 -0
- data/webpack/routes/OvalContents/OvalContentsIndex/__tests__/OvalContentsIndex.fixtures.js +106 -0
- data/webpack/routes/OvalContents/OvalContentsIndex/__tests__/OvalContentsIndex.test.js +75 -0
- data/webpack/routes/OvalContents/OvalContentsIndex/index.js +7 -0
- data/webpack/routes/OvalPolicies/OvalPoliciesIndex/OvalPoliciesIndex.js +46 -0
- data/webpack/routes/OvalPolicies/OvalPoliciesIndex/OvalPoliciesTable.js +44 -0
- data/webpack/routes/OvalPolicies/OvalPoliciesIndex/__tests__/OvalPoliciesIndex.fixtures.js +61 -0
- data/webpack/routes/OvalPolicies/OvalPoliciesIndex/__tests__/OvalPoliciesIndex.test.js +78 -0
- data/webpack/routes/OvalPolicies/OvalPoliciesIndex/index.js +7 -0
- data/webpack/routes/OvalPolicies/OvalPoliciesShow/CvesTab.js +48 -0
- data/webpack/routes/OvalPolicies/OvalPoliciesShow/CvesTable.js +63 -0
- data/webpack/routes/OvalPolicies/OvalPoliciesShow/OvalPoliciesShow.js +78 -0
- data/webpack/routes/OvalPolicies/OvalPoliciesShow/OvalPoliciesShowHelper.js +39 -0
- data/webpack/routes/OvalPolicies/OvalPoliciesShow/__tests__/OvalPoliciesShow.fixtures.js +78 -0
- data/webpack/routes/OvalPolicies/OvalPoliciesShow/__tests__/OvalPoliciesShow.test.js +112 -0
- data/webpack/routes/OvalPolicies/OvalPoliciesShow/index.js +35 -0
- data/webpack/routes/routes.js +28 -0
- data/webpack/testHelper.js +64 -0
- metadata +143 -3
|
Binary file
|
|
File without changes
|
|
@@ -8,8 +8,8 @@ msgid ""
|
|
|
8
8
|
msgstr ""
|
|
9
9
|
"Project-Id-Version: Foreman\n"
|
|
10
10
|
"Report-Msgid-Bugs-To: \n"
|
|
11
|
-
"PO-Revision-Date: 2020-
|
|
12
|
-
"Last-Translator:
|
|
11
|
+
"PO-Revision-Date: 2020-05-12 09:50+0000\n"
|
|
12
|
+
"Last-Translator: Transifex Bot <>\n"
|
|
13
13
|
"Language-Team: Italian (http://www.transifex.com/foreman/foreman/language/it/)"
|
|
14
14
|
"\n"
|
|
15
15
|
"MIME-Version: 1.0\n"
|
|
@@ -32,9 +32,6 @@ msgid_plural "%s compliance reports by policy"
|
|
|
32
32
|
msgstr[0] ""
|
|
33
33
|
msgstr[1] ""
|
|
34
34
|
|
|
35
|
-
msgid "%s compliance reports by policy"
|
|
36
|
-
msgstr ""
|
|
37
|
-
|
|
38
35
|
msgid "%s latest report"
|
|
39
36
|
msgstr ""
|
|
40
37
|
|
|
@@ -44,6 +41,12 @@ msgstr ""
|
|
|
44
41
|
msgid "%s spool errors detected, inspect the appropriate file directly on proxy"
|
|
45
42
|
msgstr ""
|
|
46
43
|
|
|
44
|
+
msgid "%s vulnerabilities found"
|
|
45
|
+
msgstr ""
|
|
46
|
+
|
|
47
|
+
msgid "%s vulnerabilities with available patch found"
|
|
48
|
+
msgstr ""
|
|
49
|
+
|
|
47
50
|
msgid "%{type} was selected to deploy policy to clients, but %{type} is not available. Are you missing a plugin?"
|
|
48
51
|
msgstr ""
|
|
49
52
|
|
|
@@ -74,9 +77,27 @@ msgstr ""
|
|
|
74
77
|
msgid "Apply policy to hosts"
|
|
75
78
|
msgstr ""
|
|
76
79
|
|
|
80
|
+
msgid "Are required variables for theforeman.foreman_scap_client present?"
|
|
81
|
+
msgstr ""
|
|
82
|
+
|
|
83
|
+
msgid "Array of host IDs"
|
|
84
|
+
msgstr ""
|
|
85
|
+
|
|
86
|
+
msgid "Array of hostgroup IDs"
|
|
87
|
+
msgstr ""
|
|
88
|
+
|
|
77
89
|
msgid "Assign Compliance Policy"
|
|
78
90
|
msgstr ""
|
|
79
91
|
|
|
92
|
+
msgid "Assign hostgroups to an OVAL Policy"
|
|
93
|
+
msgstr ""
|
|
94
|
+
|
|
95
|
+
msgid "Assign hosts to an OVAL Policy"
|
|
96
|
+
msgstr ""
|
|
97
|
+
|
|
98
|
+
msgid "Assign openscap_proxy to %s before proceeding."
|
|
99
|
+
msgstr ""
|
|
100
|
+
|
|
80
101
|
msgid "Back"
|
|
81
102
|
msgstr "Indietro"
|
|
82
103
|
|
|
@@ -119,9 +140,6 @@ msgstr ""
|
|
|
119
140
|
msgid "Compliance"
|
|
120
141
|
msgstr "Conforme"
|
|
121
142
|
|
|
122
|
-
msgid "Compliance Hosts"
|
|
123
|
-
msgstr ""
|
|
124
|
-
|
|
125
143
|
msgid "Compliance Policies"
|
|
126
144
|
msgstr ""
|
|
127
145
|
|
|
@@ -149,12 +167,18 @@ msgstr ""
|
|
|
149
167
|
msgid "Could not find host identified by: %s"
|
|
150
168
|
msgstr ""
|
|
151
169
|
|
|
170
|
+
msgid "Could not update Ansible Variables with override: true"
|
|
171
|
+
msgstr ""
|
|
172
|
+
|
|
152
173
|
msgid "Could not validate %s. Please make sure you have appropriate proxy version to use this functionality"
|
|
153
174
|
msgstr ""
|
|
154
175
|
|
|
155
176
|
msgid "Could not validate %{file_type}. Error %{error}"
|
|
156
177
|
msgstr ""
|
|
157
178
|
|
|
179
|
+
msgid "Create OVAL content"
|
|
180
|
+
msgstr ""
|
|
181
|
+
|
|
158
182
|
msgid "Create SCAP content"
|
|
159
183
|
msgstr ""
|
|
160
184
|
|
|
@@ -164,6 +188,9 @@ msgstr ""
|
|
|
164
188
|
msgid "Create a Tailoring file"
|
|
165
189
|
msgstr ""
|
|
166
190
|
|
|
191
|
+
msgid "Create an OVAL Policy"
|
|
192
|
+
msgstr ""
|
|
193
|
+
|
|
167
194
|
msgid "Dashboard"
|
|
168
195
|
msgstr "Dashboard"
|
|
169
196
|
|
|
@@ -185,6 +212,9 @@ msgstr ""
|
|
|
185
212
|
msgid "Delete an ARF Report"
|
|
186
213
|
msgstr ""
|
|
187
214
|
|
|
215
|
+
msgid "Delete an OVAL Policy"
|
|
216
|
+
msgstr ""
|
|
217
|
+
|
|
188
218
|
msgid "Delete compliance policy %s with all of its reports?"
|
|
189
219
|
msgstr ""
|
|
190
220
|
|
|
@@ -206,6 +236,9 @@ msgstr ""
|
|
|
206
236
|
msgid "Deletes a Tailoring file"
|
|
207
237
|
msgstr ""
|
|
208
238
|
|
|
239
|
+
msgid "Deletes an OVAL content"
|
|
240
|
+
msgstr ""
|
|
241
|
+
|
|
209
242
|
msgid "Deletes an SCAP content"
|
|
210
243
|
msgstr ""
|
|
211
244
|
|
|
@@ -215,6 +248,12 @@ msgstr ""
|
|
|
215
248
|
msgid "Description"
|
|
216
249
|
msgstr "Descrizione"
|
|
217
250
|
|
|
251
|
+
msgid "Details for Compliance Policy %s"
|
|
252
|
+
msgstr ""
|
|
253
|
+
|
|
254
|
+
msgid "Directory to upload when using \"directory\" upload type"
|
|
255
|
+
msgstr ""
|
|
256
|
+
|
|
218
257
|
msgid "Documentation"
|
|
219
258
|
msgstr ""
|
|
220
259
|
|
|
@@ -239,16 +278,13 @@ msgstr ""
|
|
|
239
278
|
msgid "Download bzipped ARF report"
|
|
240
279
|
msgstr ""
|
|
241
280
|
|
|
242
|
-
msgid "Edit
|
|
281
|
+
msgid "Edit %s"
|
|
243
282
|
msgstr ""
|
|
244
283
|
|
|
245
|
-
msgid "
|
|
284
|
+
msgid "Effective Profile"
|
|
246
285
|
msgstr ""
|
|
247
286
|
|
|
248
|
-
msgid "
|
|
249
|
-
msgstr ""
|
|
250
|
-
|
|
251
|
-
msgid "Effective Profile"
|
|
287
|
+
msgid "Error!"
|
|
252
288
|
msgstr ""
|
|
253
289
|
|
|
254
290
|
msgid "Failed"
|
|
@@ -288,12 +324,18 @@ msgstr "F"
|
|
|
288
324
|
msgid "File Upload"
|
|
289
325
|
msgstr ""
|
|
290
326
|
|
|
327
|
+
msgid "File paths to upload when using \"files\" upload type"
|
|
328
|
+
msgstr ""
|
|
329
|
+
|
|
291
330
|
msgid "Full Report"
|
|
292
331
|
msgstr ""
|
|
293
332
|
|
|
294
333
|
msgid "General"
|
|
295
334
|
msgstr "Generale"
|
|
296
335
|
|
|
336
|
+
msgid "Has Errata?"
|
|
337
|
+
msgstr ""
|
|
338
|
+
|
|
297
339
|
msgid "Host"
|
|
298
340
|
msgstr "Host"
|
|
299
341
|
|
|
@@ -330,6 +372,9 @@ msgstr "Nome host"
|
|
|
330
372
|
msgid "Hosts Breakdown"
|
|
331
373
|
msgstr ""
|
|
332
374
|
|
|
375
|
+
msgid "Hosts Count"
|
|
376
|
+
msgstr ""
|
|
377
|
+
|
|
333
378
|
msgid "Hosts failing this rule"
|
|
334
379
|
msgstr ""
|
|
335
380
|
|
|
@@ -379,6 +424,15 @@ msgstr ""
|
|
|
379
424
|
msgid "Inconclusive results"
|
|
380
425
|
msgstr ""
|
|
381
426
|
|
|
427
|
+
msgid "Is %s param set to be overriden?"
|
|
428
|
+
msgstr ""
|
|
429
|
+
|
|
430
|
+
msgid "Is foreman_ansible present?"
|
|
431
|
+
msgstr ""
|
|
432
|
+
|
|
433
|
+
msgid "Is theforeman.foreman_scap_client present?"
|
|
434
|
+
msgstr ""
|
|
435
|
+
|
|
382
436
|
msgid "It may sometimes be required to adjust the security policy to your specific needs. "
|
|
383
437
|
msgstr ""
|
|
384
438
|
|
|
@@ -391,6 +445,12 @@ msgstr ""
|
|
|
391
445
|
msgid "List ARF reports"
|
|
392
446
|
msgstr ""
|
|
393
447
|
|
|
448
|
+
msgid "List OVAL Policies"
|
|
449
|
+
msgstr ""
|
|
450
|
+
|
|
451
|
+
msgid "List OVAL contents"
|
|
452
|
+
msgstr ""
|
|
453
|
+
|
|
394
454
|
msgid "List Policies"
|
|
395
455
|
msgstr ""
|
|
396
456
|
|
|
@@ -415,6 +475,9 @@ msgstr "Messaggio"
|
|
|
415
475
|
msgid "More details"
|
|
416
476
|
msgstr "Maggiori dettagli"
|
|
417
477
|
|
|
478
|
+
msgid "Name"
|
|
479
|
+
msgstr ""
|
|
480
|
+
|
|
418
481
|
msgid "Never audited"
|
|
419
482
|
msgstr ""
|
|
420
483
|
|
|
@@ -439,6 +502,18 @@ msgstr "No"
|
|
|
439
502
|
msgid "No ARF reports for this policy"
|
|
440
503
|
msgstr ""
|
|
441
504
|
|
|
505
|
+
msgid "No CVEs found."
|
|
506
|
+
msgstr ""
|
|
507
|
+
|
|
508
|
+
msgid "No OVAL Contents found."
|
|
509
|
+
msgstr ""
|
|
510
|
+
|
|
511
|
+
msgid "No OVAL Policies found"
|
|
512
|
+
msgstr ""
|
|
513
|
+
|
|
514
|
+
msgid "No OVAL Policy found"
|
|
515
|
+
msgstr ""
|
|
516
|
+
|
|
442
517
|
msgid "No OpenSCAP Proxy selected."
|
|
443
518
|
msgstr ""
|
|
444
519
|
|
|
@@ -448,6 +523,9 @@ msgstr ""
|
|
|
448
523
|
msgid "No Tailoring file assigned for policy with id %s"
|
|
449
524
|
msgstr ""
|
|
450
525
|
|
|
526
|
+
msgid "No Vulnerabilities found"
|
|
527
|
+
msgstr ""
|
|
528
|
+
|
|
451
529
|
msgid "No available proxy to validate. Returned with error: %s"
|
|
452
530
|
msgstr ""
|
|
453
531
|
|
|
@@ -511,6 +589,48 @@ msgstr "Numero di eventi"
|
|
|
511
589
|
msgid "Number of a day in month, note that not all months have same count of days"
|
|
512
590
|
msgstr ""
|
|
513
591
|
|
|
592
|
+
msgid "OVAL Content"
|
|
593
|
+
msgstr ""
|
|
594
|
+
|
|
595
|
+
msgid "OVAL Contents"
|
|
596
|
+
msgstr ""
|
|
597
|
+
|
|
598
|
+
msgid "OVAL Contents table"
|
|
599
|
+
msgstr ""
|
|
600
|
+
|
|
601
|
+
msgid "OVAL Policies"
|
|
602
|
+
msgstr ""
|
|
603
|
+
|
|
604
|
+
msgid "OVAL Policies Table"
|
|
605
|
+
msgstr ""
|
|
606
|
+
|
|
607
|
+
msgid "OVAL Policy description"
|
|
608
|
+
msgstr ""
|
|
609
|
+
|
|
610
|
+
msgid "OVAL Policy name"
|
|
611
|
+
msgstr ""
|
|
612
|
+
|
|
613
|
+
msgid "OVAL Policy schedule cron line (only if period == \"custom\")"
|
|
614
|
+
msgstr ""
|
|
615
|
+
|
|
616
|
+
msgid "OVAL Policy schedule day of month (only if period == \"monthly\")"
|
|
617
|
+
msgstr ""
|
|
618
|
+
|
|
619
|
+
msgid "OVAL Policy schedule period (weekly, monthly, custom)"
|
|
620
|
+
msgstr ""
|
|
621
|
+
|
|
622
|
+
msgid "OVAL Policy schedule weekday (only if period == \"weekly\")"
|
|
623
|
+
msgstr ""
|
|
624
|
+
|
|
625
|
+
msgid "OVAL content name"
|
|
626
|
+
msgstr ""
|
|
627
|
+
|
|
628
|
+
msgid "OVAL policy successfully configured with %s."
|
|
629
|
+
msgstr ""
|
|
630
|
+
|
|
631
|
+
msgid "OVAL scan"
|
|
632
|
+
msgstr ""
|
|
633
|
+
|
|
514
634
|
msgid "Once SCAP content is present, you can create a policy, assign select host groups and schedule to run."
|
|
515
635
|
msgstr ""
|
|
516
636
|
|
|
@@ -526,6 +646,9 @@ msgstr ""
|
|
|
526
646
|
msgid "Organizations"
|
|
527
647
|
msgstr "Organizzazioni"
|
|
528
648
|
|
|
649
|
+
msgid "Original file name of the OVAL content file"
|
|
650
|
+
msgstr ""
|
|
651
|
+
|
|
529
652
|
msgid "Original file name of the XML file"
|
|
530
653
|
msgstr ""
|
|
531
654
|
|
|
@@ -549,6 +672,12 @@ msgstr ""
|
|
|
549
672
|
msgid "Please Confirm"
|
|
550
673
|
msgstr "Conferma"
|
|
551
674
|
|
|
675
|
+
msgid "Please make sure you understand them by reading our"
|
|
676
|
+
msgstr ""
|
|
677
|
+
|
|
678
|
+
msgid "Please specify import type, received: %{received}, expected one of: %{expected}"
|
|
679
|
+
msgstr ""
|
|
680
|
+
|
|
552
681
|
msgid "Policies"
|
|
553
682
|
msgstr "Regole"
|
|
554
683
|
|
|
@@ -564,6 +693,9 @@ msgstr ""
|
|
|
564
693
|
msgid "Policy Attributes"
|
|
565
694
|
msgstr ""
|
|
566
695
|
|
|
696
|
+
msgid "Policy OVAL content ID"
|
|
697
|
+
msgstr ""
|
|
698
|
+
|
|
567
699
|
msgid "Policy SCAP content ID"
|
|
568
700
|
msgstr ""
|
|
569
701
|
|
|
@@ -606,6 +738,9 @@ msgstr "Classe del puppet"
|
|
|
606
738
|
msgid "Rationale"
|
|
607
739
|
msgstr ""
|
|
608
740
|
|
|
741
|
+
msgid "Ref Id"
|
|
742
|
+
msgstr ""
|
|
743
|
+
|
|
609
744
|
msgid "References"
|
|
610
745
|
msgstr "Riferimenti"
|
|
611
746
|
|
|
@@ -642,6 +777,9 @@ msgstr "Risultato"
|
|
|
642
777
|
msgid "Rule Results"
|
|
643
778
|
msgstr ""
|
|
644
779
|
|
|
780
|
+
msgid "Run OVAL scan"
|
|
781
|
+
msgstr ""
|
|
782
|
+
|
|
645
783
|
msgid "Run OpenSCAP scan"
|
|
646
784
|
msgstr ""
|
|
647
785
|
|
|
@@ -666,7 +804,7 @@ msgstr ""
|
|
|
666
804
|
msgid "SCAP policies summary"
|
|
667
805
|
msgstr ""
|
|
668
806
|
|
|
669
|
-
msgid "
|
|
807
|
+
msgid "Scan All Hostgroups"
|
|
670
808
|
msgstr ""
|
|
671
809
|
|
|
672
810
|
msgid "Schedule"
|
|
@@ -705,6 +843,12 @@ msgstr ""
|
|
|
705
843
|
msgid "Show an ARF report"
|
|
706
844
|
msgstr ""
|
|
707
845
|
|
|
846
|
+
msgid "Show an OVAL Policy"
|
|
847
|
+
msgstr ""
|
|
848
|
+
|
|
849
|
+
msgid "Show an OVAL content"
|
|
850
|
+
msgstr ""
|
|
851
|
+
|
|
708
852
|
msgid "Show an SCAP content"
|
|
709
853
|
msgstr ""
|
|
710
854
|
|
|
@@ -750,6 +894,12 @@ msgstr ""
|
|
|
750
894
|
msgid "Summary report from Foreman server at %{foreman_url}"
|
|
751
895
|
msgstr ""
|
|
752
896
|
|
|
897
|
+
msgid "Sync contents that have remote source URL"
|
|
898
|
+
msgstr ""
|
|
899
|
+
|
|
900
|
+
msgid "Table of CVEs for OVAL policy"
|
|
901
|
+
msgstr ""
|
|
902
|
+
|
|
753
903
|
msgid "Tailoring File"
|
|
754
904
|
msgstr ""
|
|
755
905
|
|
|
@@ -773,6 +923,9 @@ msgstr ""
|
|
|
773
923
|
msgid "The following %{key_name} were missing for %{item_name}: %{key_names}. Make sure they are imported before proceeding."
|
|
774
924
|
msgstr ""
|
|
775
925
|
|
|
926
|
+
msgid "The following Ansible Variables were not found: %{missing_vars}, please import them before running this action again."
|
|
927
|
+
msgstr ""
|
|
928
|
+
|
|
776
929
|
msgid "The following Smart Proxies need to be updated to unlock the feature: %s. "
|
|
777
930
|
msgstr ""
|
|
778
931
|
|
|
@@ -782,6 +935,9 @@ msgstr ""
|
|
|
782
935
|
msgid "The identifier of the host"
|
|
783
936
|
msgstr ""
|
|
784
937
|
|
|
938
|
+
msgid "There are significant differences in deployment options."
|
|
939
|
+
msgstr ""
|
|
940
|
+
|
|
785
941
|
msgid "This feature is temporarily disabled. "
|
|
786
942
|
msgstr ""
|
|
787
943
|
|
|
@@ -802,6 +958,12 @@ msgid_plural "Total of %{hosts} hosts"
|
|
|
802
958
|
msgstr[0] ""
|
|
803
959
|
msgstr[1] ""
|
|
804
960
|
|
|
961
|
+
msgid "Type of the upload"
|
|
962
|
+
msgstr ""
|
|
963
|
+
|
|
964
|
+
msgid "URL of the OVAL content file"
|
|
965
|
+
msgstr ""
|
|
966
|
+
|
|
805
967
|
msgid "Unable to get HTML version of requested report from Smart Proxy"
|
|
806
968
|
msgstr ""
|
|
807
969
|
|
|
@@ -814,12 +976,21 @@ msgstr ""
|
|
|
814
976
|
msgid "Unknown Compliance status"
|
|
815
977
|
msgstr ""
|
|
816
978
|
|
|
979
|
+
msgid "Unknown OVAL status"
|
|
980
|
+
msgstr ""
|
|
981
|
+
|
|
817
982
|
msgid "Update a Policy"
|
|
818
983
|
msgstr ""
|
|
819
984
|
|
|
820
985
|
msgid "Update a Tailoring file"
|
|
821
986
|
msgstr ""
|
|
822
987
|
|
|
988
|
+
msgid "Update an OVAL Policy"
|
|
989
|
+
msgstr ""
|
|
990
|
+
|
|
991
|
+
msgid "Update an OVAL content"
|
|
992
|
+
msgstr ""
|
|
993
|
+
|
|
823
994
|
msgid "Update an SCAP content"
|
|
824
995
|
msgstr ""
|
|
825
996
|
|
|
@@ -841,24 +1012,39 @@ msgstr ""
|
|
|
841
1012
|
msgid "Upload an ARF report"
|
|
842
1013
|
msgstr ""
|
|
843
1014
|
|
|
1015
|
+
msgid "Upload an OVAL report - a list of CVEs for given host"
|
|
1016
|
+
msgstr ""
|
|
1017
|
+
|
|
844
1018
|
msgid "Upload new SCAP content file"
|
|
845
1019
|
msgstr ""
|
|
846
1020
|
|
|
847
1021
|
msgid "Upload new Tailoring File"
|
|
848
1022
|
msgstr ""
|
|
849
1023
|
|
|
1024
|
+
msgid "Upload scap contents in bulk"
|
|
1025
|
+
msgstr ""
|
|
1026
|
+
|
|
850
1027
|
msgid "View Report"
|
|
851
1028
|
msgstr ""
|
|
852
1029
|
|
|
853
1030
|
msgid "View full report"
|
|
854
1031
|
msgstr ""
|
|
855
1032
|
|
|
1033
|
+
msgid "Was %s configured successfully?"
|
|
1034
|
+
msgstr ""
|
|
1035
|
+
|
|
1036
|
+
msgid "Was %{model_name} %{name} configured successfully?"
|
|
1037
|
+
msgstr ""
|
|
1038
|
+
|
|
856
1039
|
msgid "XCCDF Profile"
|
|
857
1040
|
msgstr "Profilo XCCDF"
|
|
858
1041
|
|
|
859
1042
|
msgid "XCCDF Profile in Tailoring File"
|
|
860
1043
|
msgstr ""
|
|
861
1044
|
|
|
1045
|
+
msgid "XML containing OVAL content"
|
|
1046
|
+
msgstr ""
|
|
1047
|
+
|
|
862
1048
|
msgid "XML containing SCAP content"
|
|
863
1049
|
msgstr ""
|
|
864
1050
|
|
|
@@ -889,6 +1075,15 @@ msgstr ""
|
|
|
889
1075
|
msgid "does not have the selected SCAP content profile"
|
|
890
1076
|
msgstr ""
|
|
891
1077
|
|
|
1078
|
+
msgid "foreman_ansible plugin not found, please install it before running this action again."
|
|
1079
|
+
msgstr ""
|
|
1080
|
+
|
|
1081
|
+
msgid "hostgroups"
|
|
1082
|
+
msgstr ""
|
|
1083
|
+
|
|
1084
|
+
msgid "hosts"
|
|
1085
|
+
msgstr ""
|
|
1086
|
+
|
|
892
1087
|
msgid "invalid type %s"
|
|
893
1088
|
msgstr "tipo di %s non valido"
|
|
894
1089
|
|
|
@@ -913,5 +1108,8 @@ msgstr ""
|
|
|
913
1108
|
msgid "must have Openscap feature"
|
|
914
1109
|
msgstr ""
|
|
915
1110
|
|
|
1111
|
+
msgid "theforeman.foreman_scap_client Ansible Role not found, please import it before running this action again."
|
|
1112
|
+
msgstr ""
|
|
1113
|
+
|
|
916
1114
|
msgid "these Compliance reports"
|
|
917
1115
|
msgstr ""
|