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
|
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: Korean (http://www.transifex.com/foreman/foreman/language/ko/)\n"
|
|
14
14
|
"MIME-Version: 1.0\n"
|
|
15
15
|
"Content-Type: text/plain; charset=UTF-8\n"
|
|
@@ -31,9 +31,6 @@ msgid_plural "%s compliance reports by policy"
|
|
|
31
31
|
msgstr[0] ""
|
|
32
32
|
msgstr[1] ""
|
|
33
33
|
|
|
34
|
-
msgid "%s compliance reports by policy"
|
|
35
|
-
msgstr ""
|
|
36
|
-
|
|
37
34
|
msgid "%s latest report"
|
|
38
35
|
msgstr "%s 최신 보고서"
|
|
39
36
|
|
|
@@ -43,6 +40,12 @@ msgstr "기간별 %s 보고서"
|
|
|
43
40
|
msgid "%s spool errors detected, inspect the appropriate file directly on proxy"
|
|
44
41
|
msgstr ""
|
|
45
42
|
|
|
43
|
+
msgid "%s vulnerabilities found"
|
|
44
|
+
msgstr ""
|
|
45
|
+
|
|
46
|
+
msgid "%s vulnerabilities with available patch found"
|
|
47
|
+
msgstr ""
|
|
48
|
+
|
|
46
49
|
msgid "%{type} was selected to deploy policy to clients, but %{type} is not available. Are you missing a plugin?"
|
|
47
50
|
msgstr ""
|
|
48
51
|
|
|
@@ -73,9 +76,27 @@ msgstr ""
|
|
|
73
76
|
msgid "Apply policy to hosts"
|
|
74
77
|
msgstr ""
|
|
75
78
|
|
|
79
|
+
msgid "Are required variables for theforeman.foreman_scap_client present?"
|
|
80
|
+
msgstr ""
|
|
81
|
+
|
|
82
|
+
msgid "Array of host IDs"
|
|
83
|
+
msgstr ""
|
|
84
|
+
|
|
85
|
+
msgid "Array of hostgroup IDs"
|
|
86
|
+
msgstr ""
|
|
87
|
+
|
|
76
88
|
msgid "Assign Compliance Policy"
|
|
77
89
|
msgstr "컴플라이언스 정책 할당"
|
|
78
90
|
|
|
91
|
+
msgid "Assign hostgroups to an OVAL Policy"
|
|
92
|
+
msgstr ""
|
|
93
|
+
|
|
94
|
+
msgid "Assign hosts to an OVAL Policy"
|
|
95
|
+
msgstr ""
|
|
96
|
+
|
|
97
|
+
msgid "Assign openscap_proxy to %s before proceeding."
|
|
98
|
+
msgstr ""
|
|
99
|
+
|
|
79
100
|
msgid "Back"
|
|
80
101
|
msgstr "뒤로(_B)"
|
|
81
102
|
|
|
@@ -118,9 +139,6 @@ msgstr "요일 선택"
|
|
|
118
139
|
msgid "Compliance"
|
|
119
140
|
msgstr "컴플라이언스 "
|
|
120
141
|
|
|
121
|
-
msgid "Compliance Hosts"
|
|
122
|
-
msgstr ""
|
|
123
|
-
|
|
124
142
|
msgid "Compliance Policies"
|
|
125
143
|
msgstr "컴플라이언스 정책"
|
|
126
144
|
|
|
@@ -148,12 +166,18 @@ msgstr "정책에 부합"
|
|
|
148
166
|
msgid "Could not find host identified by: %s"
|
|
149
167
|
msgstr ""
|
|
150
168
|
|
|
169
|
+
msgid "Could not update Ansible Variables with override: true"
|
|
170
|
+
msgstr ""
|
|
171
|
+
|
|
151
172
|
msgid "Could not validate %s. Please make sure you have appropriate proxy version to use this functionality"
|
|
152
173
|
msgstr ""
|
|
153
174
|
|
|
154
175
|
msgid "Could not validate %{file_type}. Error %{error}"
|
|
155
176
|
msgstr ""
|
|
156
177
|
|
|
178
|
+
msgid "Create OVAL content"
|
|
179
|
+
msgstr ""
|
|
180
|
+
|
|
157
181
|
msgid "Create SCAP content"
|
|
158
182
|
msgstr "SCAP 컨텐츠 생성"
|
|
159
183
|
|
|
@@ -163,6 +187,9 @@ msgstr ""
|
|
|
163
187
|
msgid "Create a Tailoring file"
|
|
164
188
|
msgstr ""
|
|
165
189
|
|
|
190
|
+
msgid "Create an OVAL Policy"
|
|
191
|
+
msgstr ""
|
|
192
|
+
|
|
166
193
|
msgid "Dashboard"
|
|
167
194
|
msgstr "대시보드 "
|
|
168
195
|
|
|
@@ -184,6 +211,9 @@ msgstr ""
|
|
|
184
211
|
msgid "Delete an ARF Report"
|
|
185
212
|
msgstr ""
|
|
186
213
|
|
|
214
|
+
msgid "Delete an OVAL Policy"
|
|
215
|
+
msgstr ""
|
|
216
|
+
|
|
187
217
|
msgid "Delete compliance policy %s with all of its reports?"
|
|
188
218
|
msgstr ""
|
|
189
219
|
|
|
@@ -205,6 +235,9 @@ msgstr ""
|
|
|
205
235
|
msgid "Deletes a Tailoring file"
|
|
206
236
|
msgstr ""
|
|
207
237
|
|
|
238
|
+
msgid "Deletes an OVAL content"
|
|
239
|
+
msgstr ""
|
|
240
|
+
|
|
208
241
|
msgid "Deletes an SCAP content"
|
|
209
242
|
msgstr "SCAP 컨텐츠 삭제"
|
|
210
243
|
|
|
@@ -214,6 +247,12 @@ msgstr ""
|
|
|
214
247
|
msgid "Description"
|
|
215
248
|
msgstr "설명"
|
|
216
249
|
|
|
250
|
+
msgid "Details for Compliance Policy %s"
|
|
251
|
+
msgstr ""
|
|
252
|
+
|
|
253
|
+
msgid "Directory to upload when using \"directory\" upload type"
|
|
254
|
+
msgstr ""
|
|
255
|
+
|
|
217
256
|
msgid "Documentation"
|
|
218
257
|
msgstr ""
|
|
219
258
|
|
|
@@ -238,18 +277,15 @@ msgstr ""
|
|
|
238
277
|
msgid "Download bzipped ARF report"
|
|
239
278
|
msgstr ""
|
|
240
279
|
|
|
241
|
-
msgid "Edit
|
|
242
|
-
msgstr "컴플라이언스 정책 편집"
|
|
243
|
-
|
|
244
|
-
msgid "Edit SCAP Content"
|
|
245
|
-
msgstr "SCAP 컨텐츠 편집"
|
|
246
|
-
|
|
247
|
-
msgid "Edit Tailoring File"
|
|
280
|
+
msgid "Edit %s"
|
|
248
281
|
msgstr ""
|
|
249
282
|
|
|
250
283
|
msgid "Effective Profile"
|
|
251
284
|
msgstr ""
|
|
252
285
|
|
|
286
|
+
msgid "Error!"
|
|
287
|
+
msgstr ""
|
|
288
|
+
|
|
253
289
|
msgid "Failed"
|
|
254
290
|
msgstr "실패"
|
|
255
291
|
|
|
@@ -287,12 +323,18 @@ msgstr "F"
|
|
|
287
323
|
msgid "File Upload"
|
|
288
324
|
msgstr "파일 업로드"
|
|
289
325
|
|
|
326
|
+
msgid "File paths to upload when using \"files\" upload type"
|
|
327
|
+
msgstr ""
|
|
328
|
+
|
|
290
329
|
msgid "Full Report"
|
|
291
330
|
msgstr ""
|
|
292
331
|
|
|
293
332
|
msgid "General"
|
|
294
333
|
msgstr "일반"
|
|
295
334
|
|
|
335
|
+
msgid "Has Errata?"
|
|
336
|
+
msgstr ""
|
|
337
|
+
|
|
296
338
|
msgid "Host"
|
|
297
339
|
msgstr "호스트"
|
|
298
340
|
|
|
@@ -329,6 +371,9 @@ msgstr "호스트 이름 "
|
|
|
329
371
|
msgid "Hosts Breakdown"
|
|
330
372
|
msgstr "호스트 분류"
|
|
331
373
|
|
|
374
|
+
msgid "Hosts Count"
|
|
375
|
+
msgstr ""
|
|
376
|
+
|
|
332
377
|
msgid "Hosts failing this rule"
|
|
333
378
|
msgstr ""
|
|
334
379
|
|
|
@@ -378,6 +423,15 @@ msgstr "판단할 수 없음"
|
|
|
378
423
|
msgid "Inconclusive results"
|
|
379
424
|
msgstr "판단할 수 없는 결과"
|
|
380
425
|
|
|
426
|
+
msgid "Is %s param set to be overriden?"
|
|
427
|
+
msgstr ""
|
|
428
|
+
|
|
429
|
+
msgid "Is foreman_ansible present?"
|
|
430
|
+
msgstr ""
|
|
431
|
+
|
|
432
|
+
msgid "Is theforeman.foreman_scap_client present?"
|
|
433
|
+
msgstr ""
|
|
434
|
+
|
|
381
435
|
msgid "It may sometimes be required to adjust the security policy to your specific needs. "
|
|
382
436
|
msgstr ""
|
|
383
437
|
|
|
@@ -390,6 +444,12 @@ msgstr "정책에 대한 최신 보고서: %s"
|
|
|
390
444
|
msgid "List ARF reports"
|
|
391
445
|
msgstr ""
|
|
392
446
|
|
|
447
|
+
msgid "List OVAL Policies"
|
|
448
|
+
msgstr ""
|
|
449
|
+
|
|
450
|
+
msgid "List OVAL contents"
|
|
451
|
+
msgstr ""
|
|
452
|
+
|
|
393
453
|
msgid "List Policies"
|
|
394
454
|
msgstr ""
|
|
395
455
|
|
|
@@ -414,6 +474,9 @@ msgstr "메시지"
|
|
|
414
474
|
msgid "More details"
|
|
415
475
|
msgstr "더 자세히"
|
|
416
476
|
|
|
477
|
+
msgid "Name"
|
|
478
|
+
msgstr ""
|
|
479
|
+
|
|
417
480
|
msgid "Never audited"
|
|
418
481
|
msgstr "감사되지 않음"
|
|
419
482
|
|
|
@@ -438,6 +501,18 @@ msgstr "제공되지 않음"
|
|
|
438
501
|
msgid "No ARF reports for this policy"
|
|
439
502
|
msgstr "이 정책에 대한 ARF 보고서가 없습니다."
|
|
440
503
|
|
|
504
|
+
msgid "No CVEs found."
|
|
505
|
+
msgstr ""
|
|
506
|
+
|
|
507
|
+
msgid "No OVAL Contents found."
|
|
508
|
+
msgstr ""
|
|
509
|
+
|
|
510
|
+
msgid "No OVAL Policies found"
|
|
511
|
+
msgstr ""
|
|
512
|
+
|
|
513
|
+
msgid "No OVAL Policy found"
|
|
514
|
+
msgstr ""
|
|
515
|
+
|
|
441
516
|
msgid "No OpenSCAP Proxy selected."
|
|
442
517
|
msgstr ""
|
|
443
518
|
|
|
@@ -447,6 +522,9 @@ msgstr ""
|
|
|
447
522
|
msgid "No Tailoring file assigned for policy with id %s"
|
|
448
523
|
msgstr ""
|
|
449
524
|
|
|
525
|
+
msgid "No Vulnerabilities found"
|
|
526
|
+
msgstr ""
|
|
527
|
+
|
|
450
528
|
msgid "No available proxy to validate. Returned with error: %s"
|
|
451
529
|
msgstr "검증하는 데 사용할 수 있는 프록시가 없습니다. 오류가 반환되었습니다: %s"
|
|
452
530
|
|
|
@@ -510,6 +588,48 @@ msgstr "이벤트 수 "
|
|
|
510
588
|
msgid "Number of a day in month, note that not all months have same count of days"
|
|
511
589
|
msgstr "달의 일수입니다. 모든 달의 일수가 동일하지는 않습니다."
|
|
512
590
|
|
|
591
|
+
msgid "OVAL Content"
|
|
592
|
+
msgstr ""
|
|
593
|
+
|
|
594
|
+
msgid "OVAL Contents"
|
|
595
|
+
msgstr ""
|
|
596
|
+
|
|
597
|
+
msgid "OVAL Contents table"
|
|
598
|
+
msgstr ""
|
|
599
|
+
|
|
600
|
+
msgid "OVAL Policies"
|
|
601
|
+
msgstr ""
|
|
602
|
+
|
|
603
|
+
msgid "OVAL Policies Table"
|
|
604
|
+
msgstr ""
|
|
605
|
+
|
|
606
|
+
msgid "OVAL Policy description"
|
|
607
|
+
msgstr ""
|
|
608
|
+
|
|
609
|
+
msgid "OVAL Policy name"
|
|
610
|
+
msgstr ""
|
|
611
|
+
|
|
612
|
+
msgid "OVAL Policy schedule cron line (only if period == \"custom\")"
|
|
613
|
+
msgstr ""
|
|
614
|
+
|
|
615
|
+
msgid "OVAL Policy schedule day of month (only if period == \"monthly\")"
|
|
616
|
+
msgstr ""
|
|
617
|
+
|
|
618
|
+
msgid "OVAL Policy schedule period (weekly, monthly, custom)"
|
|
619
|
+
msgstr ""
|
|
620
|
+
|
|
621
|
+
msgid "OVAL Policy schedule weekday (only if period == \"weekly\")"
|
|
622
|
+
msgstr ""
|
|
623
|
+
|
|
624
|
+
msgid "OVAL content name"
|
|
625
|
+
msgstr ""
|
|
626
|
+
|
|
627
|
+
msgid "OVAL policy successfully configured with %s."
|
|
628
|
+
msgstr ""
|
|
629
|
+
|
|
630
|
+
msgid "OVAL scan"
|
|
631
|
+
msgstr ""
|
|
632
|
+
|
|
513
633
|
msgid "Once SCAP content is present, you can create a policy, assign select host groups and schedule to run."
|
|
514
634
|
msgstr ""
|
|
515
635
|
|
|
@@ -525,6 +645,9 @@ msgstr ""
|
|
|
525
645
|
msgid "Organizations"
|
|
526
646
|
msgstr "조직 "
|
|
527
647
|
|
|
648
|
+
msgid "Original file name of the OVAL content file"
|
|
649
|
+
msgstr ""
|
|
650
|
+
|
|
528
651
|
msgid "Original file name of the XML file"
|
|
529
652
|
msgstr ""
|
|
530
653
|
|
|
@@ -548,6 +671,12 @@ msgstr "통과됨|P"
|
|
|
548
671
|
msgid "Please Confirm"
|
|
549
672
|
msgstr "확인해 주십시오 "
|
|
550
673
|
|
|
674
|
+
msgid "Please make sure you understand them by reading our"
|
|
675
|
+
msgstr ""
|
|
676
|
+
|
|
677
|
+
msgid "Please specify import type, received: %{received}, expected one of: %{expected}"
|
|
678
|
+
msgstr ""
|
|
679
|
+
|
|
551
680
|
msgid "Policies"
|
|
552
681
|
msgstr "정책"
|
|
553
682
|
|
|
@@ -563,6 +692,9 @@ msgstr "정책 %s"
|
|
|
563
692
|
msgid "Policy Attributes"
|
|
564
693
|
msgstr ""
|
|
565
694
|
|
|
695
|
+
msgid "Policy OVAL content ID"
|
|
696
|
+
msgstr ""
|
|
697
|
+
|
|
566
698
|
msgid "Policy SCAP content ID"
|
|
567
699
|
msgstr ""
|
|
568
700
|
|
|
@@ -605,6 +737,9 @@ msgstr "Puppet 클래스 "
|
|
|
605
737
|
msgid "Rationale"
|
|
606
738
|
msgstr "근거"
|
|
607
739
|
|
|
740
|
+
msgid "Ref Id"
|
|
741
|
+
msgstr ""
|
|
742
|
+
|
|
608
743
|
msgid "References"
|
|
609
744
|
msgstr "참조"
|
|
610
745
|
|
|
@@ -641,6 +776,9 @@ msgstr "결과"
|
|
|
641
776
|
msgid "Rule Results"
|
|
642
777
|
msgstr ""
|
|
643
778
|
|
|
779
|
+
msgid "Run OVAL scan"
|
|
780
|
+
msgstr ""
|
|
781
|
+
|
|
644
782
|
msgid "Run OpenSCAP scan"
|
|
645
783
|
msgstr ""
|
|
646
784
|
|
|
@@ -665,7 +803,7 @@ msgstr "SCAP 컨텐츠"
|
|
|
665
803
|
msgid "SCAP policies summary"
|
|
666
804
|
msgstr ""
|
|
667
805
|
|
|
668
|
-
msgid "
|
|
806
|
+
msgid "Scan All Hostgroups"
|
|
669
807
|
msgstr ""
|
|
670
808
|
|
|
671
809
|
msgid "Schedule"
|
|
@@ -704,6 +842,12 @@ msgstr ""
|
|
|
704
842
|
msgid "Show an ARF report"
|
|
705
843
|
msgstr ""
|
|
706
844
|
|
|
845
|
+
msgid "Show an OVAL Policy"
|
|
846
|
+
msgstr ""
|
|
847
|
+
|
|
848
|
+
msgid "Show an OVAL content"
|
|
849
|
+
msgstr ""
|
|
850
|
+
|
|
707
851
|
msgid "Show an SCAP content"
|
|
708
852
|
msgstr "SCAP 컨텐츠 표시"
|
|
709
853
|
|
|
@@ -749,6 +893,12 @@ msgstr ""
|
|
|
749
893
|
msgid "Summary report from Foreman server at %{foreman_url}"
|
|
750
894
|
msgstr "%{foreman_url}의 Foreman 서버에서 가져온 요약"
|
|
751
895
|
|
|
896
|
+
msgid "Sync contents that have remote source URL"
|
|
897
|
+
msgstr ""
|
|
898
|
+
|
|
899
|
+
msgid "Table of CVEs for OVAL policy"
|
|
900
|
+
msgstr ""
|
|
901
|
+
|
|
752
902
|
msgid "Tailoring File"
|
|
753
903
|
msgstr ""
|
|
754
904
|
|
|
@@ -772,6 +922,9 @@ msgstr ""
|
|
|
772
922
|
msgid "The following %{key_name} were missing for %{item_name}: %{key_names}. Make sure they are imported before proceeding."
|
|
773
923
|
msgstr ""
|
|
774
924
|
|
|
925
|
+
msgid "The following Ansible Variables were not found: %{missing_vars}, please import them before running this action again."
|
|
926
|
+
msgstr ""
|
|
927
|
+
|
|
775
928
|
msgid "The following Smart Proxies need to be updated to unlock the feature: %s. "
|
|
776
929
|
msgstr ""
|
|
777
930
|
|
|
@@ -781,6 +934,9 @@ msgstr ""
|
|
|
781
934
|
msgid "The identifier of the host"
|
|
782
935
|
msgstr ""
|
|
783
936
|
|
|
937
|
+
msgid "There are significant differences in deployment options."
|
|
938
|
+
msgstr ""
|
|
939
|
+
|
|
784
940
|
msgid "This feature is temporarily disabled. "
|
|
785
941
|
msgstr ""
|
|
786
942
|
|
|
@@ -801,6 +957,12 @@ msgid_plural "Total of %{hosts} hosts"
|
|
|
801
957
|
msgstr[0] ""
|
|
802
958
|
msgstr[1] ""
|
|
803
959
|
|
|
960
|
+
msgid "Type of the upload"
|
|
961
|
+
msgstr ""
|
|
962
|
+
|
|
963
|
+
msgid "URL of the OVAL content file"
|
|
964
|
+
msgstr ""
|
|
965
|
+
|
|
804
966
|
msgid "Unable to get HTML version of requested report from Smart Proxy"
|
|
805
967
|
msgstr ""
|
|
806
968
|
|
|
@@ -813,12 +975,21 @@ msgstr "컴플라이언스 정책 할당 취소"
|
|
|
813
975
|
msgid "Unknown Compliance status"
|
|
814
976
|
msgstr "알 수 없는 컴플라이언스 상태"
|
|
815
977
|
|
|
978
|
+
msgid "Unknown OVAL status"
|
|
979
|
+
msgstr ""
|
|
980
|
+
|
|
816
981
|
msgid "Update a Policy"
|
|
817
982
|
msgstr ""
|
|
818
983
|
|
|
819
984
|
msgid "Update a Tailoring file"
|
|
820
985
|
msgstr ""
|
|
821
986
|
|
|
987
|
+
msgid "Update an OVAL Policy"
|
|
988
|
+
msgstr ""
|
|
989
|
+
|
|
990
|
+
msgid "Update an OVAL content"
|
|
991
|
+
msgstr ""
|
|
992
|
+
|
|
822
993
|
msgid "Update an SCAP content"
|
|
823
994
|
msgstr "SCAP 컨텐츠 업데이트"
|
|
824
995
|
|
|
@@ -840,24 +1011,39 @@ msgstr ""
|
|
|
840
1011
|
msgid "Upload an ARF report"
|
|
841
1012
|
msgstr "ARF 보고서 업로드"
|
|
842
1013
|
|
|
1014
|
+
msgid "Upload an OVAL report - a list of CVEs for given host"
|
|
1015
|
+
msgstr ""
|
|
1016
|
+
|
|
843
1017
|
msgid "Upload new SCAP content file"
|
|
844
1018
|
msgstr "새 SCAP 컨텐츠 파일 업로드"
|
|
845
1019
|
|
|
846
1020
|
msgid "Upload new Tailoring File"
|
|
847
1021
|
msgstr ""
|
|
848
1022
|
|
|
1023
|
+
msgid "Upload scap contents in bulk"
|
|
1024
|
+
msgstr ""
|
|
1025
|
+
|
|
849
1026
|
msgid "View Report"
|
|
850
1027
|
msgstr "보고서 보기"
|
|
851
1028
|
|
|
852
1029
|
msgid "View full report"
|
|
853
1030
|
msgstr "전체 보고서 보기"
|
|
854
1031
|
|
|
1032
|
+
msgid "Was %s configured successfully?"
|
|
1033
|
+
msgstr ""
|
|
1034
|
+
|
|
1035
|
+
msgid "Was %{model_name} %{name} configured successfully?"
|
|
1036
|
+
msgstr ""
|
|
1037
|
+
|
|
855
1038
|
msgid "XCCDF Profile"
|
|
856
1039
|
msgstr "XCCDF 프로파일 "
|
|
857
1040
|
|
|
858
1041
|
msgid "XCCDF Profile in Tailoring File"
|
|
859
1042
|
msgstr ""
|
|
860
1043
|
|
|
1044
|
+
msgid "XML containing OVAL content"
|
|
1045
|
+
msgstr ""
|
|
1046
|
+
|
|
861
1047
|
msgid "XML containing SCAP content"
|
|
862
1048
|
msgstr ""
|
|
863
1049
|
|
|
@@ -888,6 +1074,15 @@ msgstr ""
|
|
|
888
1074
|
msgid "does not have the selected SCAP content profile"
|
|
889
1075
|
msgstr ""
|
|
890
1076
|
|
|
1077
|
+
msgid "foreman_ansible plugin not found, please install it before running this action again."
|
|
1078
|
+
msgstr ""
|
|
1079
|
+
|
|
1080
|
+
msgid "hostgroups"
|
|
1081
|
+
msgstr ""
|
|
1082
|
+
|
|
1083
|
+
msgid "hosts"
|
|
1084
|
+
msgstr ""
|
|
1085
|
+
|
|
891
1086
|
msgid "invalid type %s"
|
|
892
1087
|
msgstr "잘못된 유형 %s"
|
|
893
1088
|
|
|
@@ -912,5 +1107,8 @@ msgstr ""
|
|
|
912
1107
|
msgid "must have Openscap feature"
|
|
913
1108
|
msgstr ""
|
|
914
1109
|
|
|
1110
|
+
msgid "theforeman.foreman_scap_client Ansible Role not found, please import it before running this action again."
|
|
1111
|
+
msgstr ""
|
|
1112
|
+
|
|
915
1113
|
msgid "these Compliance reports"
|
|
916
1114
|
msgstr ""
|