foreman_openscap 4.2.0 → 4.3.0
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/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 +0 -14
- 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/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 +7 -69
- 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/job_templates/run_oval_scans.erb +24 -0
- data/app/views/policies/steps/_deployment_options_form.html.erb +2 -2
- 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/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/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
- metadata +97 -3
|
@@ -87,17 +87,22 @@ namespace :test do
|
|
|
87
87
|
t.libs << ["test", test_dir]
|
|
88
88
|
t.pattern = "#{test_dir}/**/*_test.rb"
|
|
89
89
|
t.verbose = true
|
|
90
|
+
t.warning = false
|
|
90
91
|
end
|
|
91
92
|
end
|
|
92
93
|
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
94
|
+
namespace :test do
|
|
95
|
+
desc "Test Core parts extended by ForemanOpenscap"
|
|
96
|
+
Rake::TestTask.new(:foreman_openscap_extensions) do |t|
|
|
97
|
+
test_dir = Rails.root.join('test')
|
|
98
|
+
t.libs << ["test", test_dir]
|
|
99
|
+
t.test_files = FileList[
|
|
100
|
+
"#{test_dir}/unit/foreman/access_permissions_test.rb",
|
|
101
|
+
"#{test_dir}/controllers/api/v2/hosts_controller_test.rb",
|
|
102
|
+
"#{test_dir}/controllers/api/v2/hostgroups_controller_test.rb",
|
|
103
|
+
"#{test_dir}/models/hosts/*_test.rb",
|
|
104
|
+
]
|
|
105
|
+
t.verbose = true
|
|
106
|
+
t.warning = false
|
|
102
107
|
end
|
|
103
108
|
end
|
|
Binary file
|
|
File without changes
|
|
@@ -11,8 +11,8 @@ msgid ""
|
|
|
11
11
|
msgstr ""
|
|
12
12
|
"Project-Id-Version: Foreman\n"
|
|
13
13
|
"Report-Msgid-Bugs-To: \n"
|
|
14
|
-
"PO-Revision-Date: 2020-
|
|
15
|
-
"Last-Translator:
|
|
14
|
+
"PO-Revision-Date: 2020-05-12 09:50+0000\n"
|
|
15
|
+
"Last-Translator: Transifex Bot <>\n"
|
|
16
16
|
"Language-Team: German (http://www.transifex.com/foreman/foreman/language/de/)\n"
|
|
17
17
|
"MIME-Version: 1.0\n"
|
|
18
18
|
"Content-Type: text/plain; charset=UTF-8\n"
|
|
@@ -34,9 +34,6 @@ msgid_plural "%s compliance reports by policy"
|
|
|
34
34
|
msgstr[0] "%s Compliance-Berichte nach Richtlinie"
|
|
35
35
|
msgstr[1] "%s Compliance-Berichte nach Richtlinie"
|
|
36
36
|
|
|
37
|
-
msgid "%s compliance reports by policy"
|
|
38
|
-
msgstr "%s Compliance-Berichte nach Richtlinie"
|
|
39
|
-
|
|
40
37
|
msgid "%s latest report"
|
|
41
38
|
msgstr "%s letzter Bericht"
|
|
42
39
|
|
|
@@ -46,6 +43,12 @@ msgstr "%s Berichte im Laufe der Zeit "
|
|
|
46
43
|
msgid "%s spool errors detected, inspect the appropriate file directly on proxy"
|
|
47
44
|
msgstr ""
|
|
48
45
|
|
|
46
|
+
msgid "%s vulnerabilities found"
|
|
47
|
+
msgstr ""
|
|
48
|
+
|
|
49
|
+
msgid "%s vulnerabilities with available patch found"
|
|
50
|
+
msgstr ""
|
|
51
|
+
|
|
49
52
|
msgid "%{type} was selected to deploy policy to clients, but %{type} is not available. Are you missing a plugin?"
|
|
50
53
|
msgstr ""
|
|
51
54
|
|
|
@@ -76,9 +79,27 @@ msgstr "Richtlinie auf Hostgruppe anwenden"
|
|
|
76
79
|
msgid "Apply policy to hosts"
|
|
77
80
|
msgstr "Richtlinie auf Hosts anwenden"
|
|
78
81
|
|
|
82
|
+
msgid "Are required variables for theforeman.foreman_scap_client present?"
|
|
83
|
+
msgstr ""
|
|
84
|
+
|
|
85
|
+
msgid "Array of host IDs"
|
|
86
|
+
msgstr ""
|
|
87
|
+
|
|
88
|
+
msgid "Array of hostgroup IDs"
|
|
89
|
+
msgstr ""
|
|
90
|
+
|
|
79
91
|
msgid "Assign Compliance Policy"
|
|
80
92
|
msgstr "Compliance-Richtlinie zuweisen"
|
|
81
93
|
|
|
94
|
+
msgid "Assign hostgroups to an OVAL Policy"
|
|
95
|
+
msgstr ""
|
|
96
|
+
|
|
97
|
+
msgid "Assign hosts to an OVAL Policy"
|
|
98
|
+
msgstr ""
|
|
99
|
+
|
|
100
|
+
msgid "Assign openscap_proxy to %s before proceeding."
|
|
101
|
+
msgstr ""
|
|
102
|
+
|
|
82
103
|
msgid "Back"
|
|
83
104
|
msgstr "Zurück"
|
|
84
105
|
|
|
@@ -121,9 +142,6 @@ msgstr "Wochentag auswählen"
|
|
|
121
142
|
msgid "Compliance"
|
|
122
143
|
msgstr "Konformität"
|
|
123
144
|
|
|
124
|
-
msgid "Compliance Hosts"
|
|
125
|
-
msgstr "Compliance Hosts"
|
|
126
|
-
|
|
127
145
|
msgid "Compliance Policies"
|
|
128
146
|
msgstr "Compliance-Richtlinien"
|
|
129
147
|
|
|
@@ -151,12 +169,18 @@ msgstr "Konform mit der Richtlinie"
|
|
|
151
169
|
msgid "Could not find host identified by: %s"
|
|
152
170
|
msgstr "Host identifiziert durch %s nicht gefunden"
|
|
153
171
|
|
|
172
|
+
msgid "Could not update Ansible Variables with override: true"
|
|
173
|
+
msgstr ""
|
|
174
|
+
|
|
154
175
|
msgid "Could not validate %s. Please make sure you have appropriate proxy version to use this functionality"
|
|
155
176
|
msgstr ""
|
|
156
177
|
|
|
157
178
|
msgid "Could not validate %{file_type}. Error %{error}"
|
|
158
179
|
msgstr "Konnte nicht %{file_type} validieren. Fehler: %{error}"
|
|
159
180
|
|
|
181
|
+
msgid "Create OVAL content"
|
|
182
|
+
msgstr ""
|
|
183
|
+
|
|
160
184
|
msgid "Create SCAP content"
|
|
161
185
|
msgstr "SCAP-Inhalt erstellen"
|
|
162
186
|
|
|
@@ -166,6 +190,9 @@ msgstr "Richtlinie erstellen"
|
|
|
166
190
|
msgid "Create a Tailoring file"
|
|
167
191
|
msgstr ""
|
|
168
192
|
|
|
193
|
+
msgid "Create an OVAL Policy"
|
|
194
|
+
msgstr ""
|
|
195
|
+
|
|
169
196
|
msgid "Dashboard"
|
|
170
197
|
msgstr "Übersichtsseite"
|
|
171
198
|
|
|
@@ -187,6 +214,9 @@ msgstr "Richtlinie löschen"
|
|
|
187
214
|
msgid "Delete an ARF Report"
|
|
188
215
|
msgstr "ARF-Bericht löschen"
|
|
189
216
|
|
|
217
|
+
msgid "Delete an OVAL Policy"
|
|
218
|
+
msgstr ""
|
|
219
|
+
|
|
190
220
|
msgid "Delete compliance policy %s with all of its reports?"
|
|
191
221
|
msgstr "Compliance-Richtline %s löschen mit allen Berichten?"
|
|
192
222
|
|
|
@@ -208,6 +238,9 @@ msgstr "Richtlinie löschen"
|
|
|
208
238
|
msgid "Deletes a Tailoring file"
|
|
209
239
|
msgstr ""
|
|
210
240
|
|
|
241
|
+
msgid "Deletes an OVAL content"
|
|
242
|
+
msgstr ""
|
|
243
|
+
|
|
211
244
|
msgid "Deletes an SCAP content"
|
|
212
245
|
msgstr "Einen SCAP-Inhalt löschen"
|
|
213
246
|
|
|
@@ -217,6 +250,12 @@ msgstr ""
|
|
|
217
250
|
msgid "Description"
|
|
218
251
|
msgstr "Beschreibung"
|
|
219
252
|
|
|
253
|
+
msgid "Details for Compliance Policy %s"
|
|
254
|
+
msgstr ""
|
|
255
|
+
|
|
256
|
+
msgid "Directory to upload when using \"directory\" upload type"
|
|
257
|
+
msgstr ""
|
|
258
|
+
|
|
220
259
|
msgid "Documentation"
|
|
221
260
|
msgstr "Dokumentation"
|
|
222
261
|
|
|
@@ -241,18 +280,15 @@ msgstr "SCAP-Inhalt als XML herunterladen"
|
|
|
241
280
|
msgid "Download bzipped ARF report"
|
|
242
281
|
msgstr "bzipped ARF-Bericht herunterladen"
|
|
243
282
|
|
|
244
|
-
msgid "Edit
|
|
245
|
-
msgstr "Compliance-Richtlinie bearbeiten"
|
|
246
|
-
|
|
247
|
-
msgid "Edit SCAP Content"
|
|
248
|
-
msgstr "SCAP-Inhalt bearbeiten"
|
|
249
|
-
|
|
250
|
-
msgid "Edit Tailoring File"
|
|
283
|
+
msgid "Edit %s"
|
|
251
284
|
msgstr ""
|
|
252
285
|
|
|
253
286
|
msgid "Effective Profile"
|
|
254
287
|
msgstr "Effektives Profil"
|
|
255
288
|
|
|
289
|
+
msgid "Error!"
|
|
290
|
+
msgstr ""
|
|
291
|
+
|
|
256
292
|
msgid "Failed"
|
|
257
293
|
msgstr "Fehlgeschlagen"
|
|
258
294
|
|
|
@@ -290,12 +326,18 @@ msgstr "Fehlgeschlagen|F "
|
|
|
290
326
|
msgid "File Upload"
|
|
291
327
|
msgstr "Datei hochladen"
|
|
292
328
|
|
|
329
|
+
msgid "File paths to upload when using \"files\" upload type"
|
|
330
|
+
msgstr ""
|
|
331
|
+
|
|
293
332
|
msgid "Full Report"
|
|
294
333
|
msgstr "Ganzer Bericht"
|
|
295
334
|
|
|
296
335
|
msgid "General"
|
|
297
336
|
msgstr "Allgemein"
|
|
298
337
|
|
|
338
|
+
msgid "Has Errata?"
|
|
339
|
+
msgstr ""
|
|
340
|
+
|
|
299
341
|
msgid "Host"
|
|
300
342
|
msgstr "Rechner"
|
|
301
343
|
|
|
@@ -332,6 +374,9 @@ msgstr "Hostname"
|
|
|
332
374
|
msgid "Hosts Breakdown"
|
|
333
375
|
msgstr "Aufgliederung der Hosts"
|
|
334
376
|
|
|
377
|
+
msgid "Hosts Count"
|
|
378
|
+
msgstr ""
|
|
379
|
+
|
|
335
380
|
msgid "Hosts failing this rule"
|
|
336
381
|
msgstr "Regel schlägt auf Hosts fehl."
|
|
337
382
|
|
|
@@ -381,6 +426,15 @@ msgstr "Nicht eindeutig "
|
|
|
381
426
|
msgid "Inconclusive results"
|
|
382
427
|
msgstr "Ergebnisse sind nicht eindeutig"
|
|
383
428
|
|
|
429
|
+
msgid "Is %s param set to be overriden?"
|
|
430
|
+
msgstr ""
|
|
431
|
+
|
|
432
|
+
msgid "Is foreman_ansible present?"
|
|
433
|
+
msgstr ""
|
|
434
|
+
|
|
435
|
+
msgid "Is theforeman.foreman_scap_client present?"
|
|
436
|
+
msgstr ""
|
|
437
|
+
|
|
384
438
|
msgid "It may sometimes be required to adjust the security policy to your specific needs. "
|
|
385
439
|
msgstr "Es könnte angebracht sein die Sicherheits-Richtlinien den eigenen Anforderungen anzupassen."
|
|
386
440
|
|
|
@@ -393,6 +447,12 @@ msgstr "Neuste Berichte für Richtlinie: %s"
|
|
|
393
447
|
msgid "List ARF reports"
|
|
394
448
|
msgstr "ARF-Berichte auflisten"
|
|
395
449
|
|
|
450
|
+
msgid "List OVAL Policies"
|
|
451
|
+
msgstr ""
|
|
452
|
+
|
|
453
|
+
msgid "List OVAL contents"
|
|
454
|
+
msgstr ""
|
|
455
|
+
|
|
396
456
|
msgid "List Policies"
|
|
397
457
|
msgstr "Richtlinien auflisten"
|
|
398
458
|
|
|
@@ -417,6 +477,9 @@ msgstr "Nachricht"
|
|
|
417
477
|
msgid "More details"
|
|
418
478
|
msgstr "Weitere Details"
|
|
419
479
|
|
|
480
|
+
msgid "Name"
|
|
481
|
+
msgstr ""
|
|
482
|
+
|
|
420
483
|
msgid "Never audited"
|
|
421
484
|
msgstr "Nie geprüft"
|
|
422
485
|
|
|
@@ -441,6 +504,18 @@ msgstr "Nein"
|
|
|
441
504
|
msgid "No ARF reports for this policy"
|
|
442
505
|
msgstr "Keine Arf-Berichte für diese Richtlinie"
|
|
443
506
|
|
|
507
|
+
msgid "No CVEs found."
|
|
508
|
+
msgstr ""
|
|
509
|
+
|
|
510
|
+
msgid "No OVAL Contents found."
|
|
511
|
+
msgstr ""
|
|
512
|
+
|
|
513
|
+
msgid "No OVAL Policies found"
|
|
514
|
+
msgstr ""
|
|
515
|
+
|
|
516
|
+
msgid "No OVAL Policy found"
|
|
517
|
+
msgstr ""
|
|
518
|
+
|
|
444
519
|
msgid "No OpenSCAP Proxy selected."
|
|
445
520
|
msgstr "Kein OpenSCAP Proxy ausgewählt."
|
|
446
521
|
|
|
@@ -450,6 +525,9 @@ msgstr "Kein OpenSCAP-Proxy für %{class} mit der Kennung %{id} gefunden"
|
|
|
450
525
|
msgid "No Tailoring file assigned for policy with id %s"
|
|
451
526
|
msgstr ""
|
|
452
527
|
|
|
528
|
+
msgid "No Vulnerabilities found"
|
|
529
|
+
msgstr ""
|
|
530
|
+
|
|
453
531
|
msgid "No available proxy to validate. Returned with error: %s"
|
|
454
532
|
msgstr "Kein Proxy zum Validieren verfügbar. Fehler: %s"
|
|
455
533
|
|
|
@@ -513,6 +591,48 @@ msgstr "Anzahl der Ereignisse"
|
|
|
513
591
|
msgid "Number of a day in month, note that not all months have same count of days"
|
|
514
592
|
msgstr "Tag des Monats, beachten Sie, dass nicht alle Monate gleich viele Tage haben"
|
|
515
593
|
|
|
594
|
+
msgid "OVAL Content"
|
|
595
|
+
msgstr ""
|
|
596
|
+
|
|
597
|
+
msgid "OVAL Contents"
|
|
598
|
+
msgstr ""
|
|
599
|
+
|
|
600
|
+
msgid "OVAL Contents table"
|
|
601
|
+
msgstr ""
|
|
602
|
+
|
|
603
|
+
msgid "OVAL Policies"
|
|
604
|
+
msgstr ""
|
|
605
|
+
|
|
606
|
+
msgid "OVAL Policies Table"
|
|
607
|
+
msgstr ""
|
|
608
|
+
|
|
609
|
+
msgid "OVAL Policy description"
|
|
610
|
+
msgstr ""
|
|
611
|
+
|
|
612
|
+
msgid "OVAL Policy name"
|
|
613
|
+
msgstr ""
|
|
614
|
+
|
|
615
|
+
msgid "OVAL Policy schedule cron line (only if period == \"custom\")"
|
|
616
|
+
msgstr ""
|
|
617
|
+
|
|
618
|
+
msgid "OVAL Policy schedule day of month (only if period == \"monthly\")"
|
|
619
|
+
msgstr ""
|
|
620
|
+
|
|
621
|
+
msgid "OVAL Policy schedule period (weekly, monthly, custom)"
|
|
622
|
+
msgstr ""
|
|
623
|
+
|
|
624
|
+
msgid "OVAL Policy schedule weekday (only if period == \"weekly\")"
|
|
625
|
+
msgstr ""
|
|
626
|
+
|
|
627
|
+
msgid "OVAL content name"
|
|
628
|
+
msgstr ""
|
|
629
|
+
|
|
630
|
+
msgid "OVAL policy successfully configured with %s."
|
|
631
|
+
msgstr ""
|
|
632
|
+
|
|
633
|
+
msgid "OVAL scan"
|
|
634
|
+
msgstr ""
|
|
635
|
+
|
|
516
636
|
msgid "Once SCAP content is present, you can create a policy, assign select host groups and schedule to run."
|
|
517
637
|
msgstr ""
|
|
518
638
|
|
|
@@ -528,6 +648,9 @@ msgstr "OpenSCAP-Proxy"
|
|
|
528
648
|
msgid "Organizations"
|
|
529
649
|
msgstr "Organisationen"
|
|
530
650
|
|
|
651
|
+
msgid "Original file name of the OVAL content file"
|
|
652
|
+
msgstr ""
|
|
653
|
+
|
|
531
654
|
msgid "Original file name of the XML file"
|
|
532
655
|
msgstr "Ursprünglicher Dateiname der XML-Datei"
|
|
533
656
|
|
|
@@ -551,6 +674,12 @@ msgstr "Erfolgreich|E"
|
|
|
551
674
|
msgid "Please Confirm"
|
|
552
675
|
msgstr "Bitte bestätigen"
|
|
553
676
|
|
|
677
|
+
msgid "Please make sure you understand them by reading our"
|
|
678
|
+
msgstr ""
|
|
679
|
+
|
|
680
|
+
msgid "Please specify import type, received: %{received}, expected one of: %{expected}"
|
|
681
|
+
msgstr ""
|
|
682
|
+
|
|
554
683
|
msgid "Policies"
|
|
555
684
|
msgstr "Richtlinien"
|
|
556
685
|
|
|
@@ -566,6 +695,9 @@ msgstr "Richtlinie %s"
|
|
|
566
695
|
msgid "Policy Attributes"
|
|
567
696
|
msgstr "Richtlinien Eigenschaften"
|
|
568
697
|
|
|
698
|
+
msgid "Policy OVAL content ID"
|
|
699
|
+
msgstr ""
|
|
700
|
+
|
|
569
701
|
msgid "Policy SCAP content ID"
|
|
570
702
|
msgstr ""
|
|
571
703
|
|
|
@@ -608,6 +740,9 @@ msgstr "Puppet-Klasse"
|
|
|
608
740
|
msgid "Rationale"
|
|
609
741
|
msgstr "Begründung"
|
|
610
742
|
|
|
743
|
+
msgid "Ref Id"
|
|
744
|
+
msgstr ""
|
|
745
|
+
|
|
611
746
|
msgid "References"
|
|
612
747
|
msgstr "Verweise"
|
|
613
748
|
|
|
@@ -644,6 +779,9 @@ msgstr "Ergebnis"
|
|
|
644
779
|
msgid "Rule Results"
|
|
645
780
|
msgstr ""
|
|
646
781
|
|
|
782
|
+
msgid "Run OVAL scan"
|
|
783
|
+
msgstr ""
|
|
784
|
+
|
|
647
785
|
msgid "Run OpenSCAP scan"
|
|
648
786
|
msgstr "Führe OpenSCAP Scan aus"
|
|
649
787
|
|
|
@@ -668,8 +806,8 @@ msgstr "SCAP-Inhalte"
|
|
|
668
806
|
msgid "SCAP policies summary"
|
|
669
807
|
msgstr "SCAP-Richtlinienzusammenfassung"
|
|
670
808
|
|
|
671
|
-
msgid "
|
|
672
|
-
msgstr "
|
|
809
|
+
msgid "Scan All Hostgroups"
|
|
810
|
+
msgstr ""
|
|
673
811
|
|
|
674
812
|
msgid "Schedule"
|
|
675
813
|
msgstr "Plan"
|
|
@@ -707,6 +845,12 @@ msgstr ""
|
|
|
707
845
|
msgid "Show an ARF report"
|
|
708
846
|
msgstr "ARF-Bericht anzeigen"
|
|
709
847
|
|
|
848
|
+
msgid "Show an OVAL Policy"
|
|
849
|
+
msgstr ""
|
|
850
|
+
|
|
851
|
+
msgid "Show an OVAL content"
|
|
852
|
+
msgstr ""
|
|
853
|
+
|
|
710
854
|
msgid "Show an SCAP content"
|
|
711
855
|
msgstr "Einen SCAP-Inhalt anzeigen"
|
|
712
856
|
|
|
@@ -752,6 +896,12 @@ msgstr "Zusammenfassungsbericht des OpenSCAP vom Foreman"
|
|
|
752
896
|
msgid "Summary report from Foreman server at %{foreman_url}"
|
|
753
897
|
msgstr "Zusammenfassungbericht vom Foreman-Server unter %{foreman_url}"
|
|
754
898
|
|
|
899
|
+
msgid "Sync contents that have remote source URL"
|
|
900
|
+
msgstr ""
|
|
901
|
+
|
|
902
|
+
msgid "Table of CVEs for OVAL policy"
|
|
903
|
+
msgstr ""
|
|
904
|
+
|
|
755
905
|
msgid "Tailoring File"
|
|
756
906
|
msgstr ""
|
|
757
907
|
|
|
@@ -775,6 +925,9 @@ msgstr ""
|
|
|
775
925
|
msgid "The following %{key_name} were missing for %{item_name}: %{key_names}. Make sure they are imported before proceeding."
|
|
776
926
|
msgstr ""
|
|
777
927
|
|
|
928
|
+
msgid "The following Ansible Variables were not found: %{missing_vars}, please import them before running this action again."
|
|
929
|
+
msgstr ""
|
|
930
|
+
|
|
778
931
|
msgid "The following Smart Proxies need to be updated to unlock the feature: %s. "
|
|
779
932
|
msgstr "Die folgenden Smart-Proxys müssen aktualisiert werden um das Feature freizuschalten: %s."
|
|
780
933
|
|
|
@@ -784,6 +937,9 @@ msgstr ""
|
|
|
784
937
|
msgid "The identifier of the host"
|
|
785
938
|
msgstr ""
|
|
786
939
|
|
|
940
|
+
msgid "There are significant differences in deployment options."
|
|
941
|
+
msgstr ""
|
|
942
|
+
|
|
787
943
|
msgid "This feature is temporarily disabled. "
|
|
788
944
|
msgstr "Dieses Feature ist temporär deaktiviert."
|
|
789
945
|
|
|
@@ -804,6 +960,12 @@ msgid_plural "Total of %{hosts} hosts"
|
|
|
804
960
|
msgstr[0] ""
|
|
805
961
|
msgstr[1] ""
|
|
806
962
|
|
|
963
|
+
msgid "Type of the upload"
|
|
964
|
+
msgstr ""
|
|
965
|
+
|
|
966
|
+
msgid "URL of the OVAL content file"
|
|
967
|
+
msgstr ""
|
|
968
|
+
|
|
807
969
|
msgid "Unable to get HTML version of requested report from Smart Proxy"
|
|
808
970
|
msgstr "Bericht des Smart-Proxy in HTML konnte nicht abgerufen werden"
|
|
809
971
|
|
|
@@ -816,12 +978,21 @@ msgstr "Zuweisung der Compliance-Richtline aufheben"
|
|
|
816
978
|
msgid "Unknown Compliance status"
|
|
817
979
|
msgstr "Compliance-Status unbekannt"
|
|
818
980
|
|
|
981
|
+
msgid "Unknown OVAL status"
|
|
982
|
+
msgstr ""
|
|
983
|
+
|
|
819
984
|
msgid "Update a Policy"
|
|
820
985
|
msgstr "Richtlinie aktualisieren "
|
|
821
986
|
|
|
822
987
|
msgid "Update a Tailoring file"
|
|
823
988
|
msgstr ""
|
|
824
989
|
|
|
990
|
+
msgid "Update an OVAL Policy"
|
|
991
|
+
msgstr ""
|
|
992
|
+
|
|
993
|
+
msgid "Update an OVAL content"
|
|
994
|
+
msgstr ""
|
|
995
|
+
|
|
825
996
|
msgid "Update an SCAP content"
|
|
826
997
|
msgstr "Einen SCAP-Inhalt aktualisieren "
|
|
827
998
|
|
|
@@ -843,24 +1014,39 @@ msgstr ""
|
|
|
843
1014
|
msgid "Upload an ARF report"
|
|
844
1015
|
msgstr "Einen Arf-Bericht hochladen"
|
|
845
1016
|
|
|
1017
|
+
msgid "Upload an OVAL report - a list of CVEs for given host"
|
|
1018
|
+
msgstr ""
|
|
1019
|
+
|
|
846
1020
|
msgid "Upload new SCAP content file"
|
|
847
1021
|
msgstr "Neue Datei für SCAP-Inhalt hochladen"
|
|
848
1022
|
|
|
849
1023
|
msgid "Upload new Tailoring File"
|
|
850
1024
|
msgstr ""
|
|
851
1025
|
|
|
1026
|
+
msgid "Upload scap contents in bulk"
|
|
1027
|
+
msgstr ""
|
|
1028
|
+
|
|
852
1029
|
msgid "View Report"
|
|
853
1030
|
msgstr "Bericht anzeigen"
|
|
854
1031
|
|
|
855
1032
|
msgid "View full report"
|
|
856
1033
|
msgstr "Ganzen Bericht anzeigen"
|
|
857
1034
|
|
|
1035
|
+
msgid "Was %s configured successfully?"
|
|
1036
|
+
msgstr ""
|
|
1037
|
+
|
|
1038
|
+
msgid "Was %{model_name} %{name} configured successfully?"
|
|
1039
|
+
msgstr ""
|
|
1040
|
+
|
|
858
1041
|
msgid "XCCDF Profile"
|
|
859
1042
|
msgstr "XCCDF-Profil"
|
|
860
1043
|
|
|
861
1044
|
msgid "XCCDF Profile in Tailoring File"
|
|
862
1045
|
msgstr ""
|
|
863
1046
|
|
|
1047
|
+
msgid "XML containing OVAL content"
|
|
1048
|
+
msgstr ""
|
|
1049
|
+
|
|
864
1050
|
msgid "XML containing SCAP content"
|
|
865
1051
|
msgstr "XML, welches SCAP-Inhalte enthält"
|
|
866
1052
|
|
|
@@ -891,6 +1077,15 @@ msgstr "besteht nicht aus 5 Teilen, die durch Leerzeichen abgetrennt sind"
|
|
|
891
1077
|
msgid "does not have the selected SCAP content profile"
|
|
892
1078
|
msgstr ""
|
|
893
1079
|
|
|
1080
|
+
msgid "foreman_ansible plugin not found, please install it before running this action again."
|
|
1081
|
+
msgstr ""
|
|
1082
|
+
|
|
1083
|
+
msgid "hostgroups"
|
|
1084
|
+
msgstr ""
|
|
1085
|
+
|
|
1086
|
+
msgid "hosts"
|
|
1087
|
+
msgstr ""
|
|
1088
|
+
|
|
894
1089
|
msgid "invalid type %s"
|
|
895
1090
|
msgstr "ungültiger Typ %s"
|
|
896
1091
|
|
|
@@ -915,5 +1110,8 @@ msgstr ""
|
|
|
915
1110
|
msgid "must have Openscap feature"
|
|
916
1111
|
msgstr "Muss ein OpenSCAP Feature haben"
|
|
917
1112
|
|
|
1113
|
+
msgid "theforeman.foreman_scap_client Ansible Role not found, please import it before running this action again."
|
|
1114
|
+
msgstr ""
|
|
1115
|
+
|
|
918
1116
|
msgid "these Compliance reports"
|
|
919
1117
|
msgstr "diese Compliance-Berichte"
|