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.
Files changed (135) hide show
  1. checksums.yaml +4 -4
  2. data/app/controllers/api/v2/compliance/oval_contents_controller.rb +72 -0
  3. data/app/controllers/api/v2/compliance/oval_policies_controller.rb +111 -0
  4. data/app/controllers/api/v2/compliance/oval_reports_controller.rb +47 -0
  5. data/app/controllers/concerns/foreman/controller/parameters/oval_content.rb +22 -0
  6. data/app/controllers/concerns/foreman/controller/parameters/oval_policy.rb +22 -0
  7. data/app/controllers/concerns/foreman_openscap/hosts_controller_extensions.rb +1 -1
  8. data/app/graphql/types/cve.rb +17 -0
  9. data/app/graphql/types/oval_content.rb +17 -0
  10. data/app/graphql/types/oval_policy.rb +21 -0
  11. data/app/helpers/arf_reports_helper.rb +0 -14
  12. data/app/mailers/foreman_openscap/policy_mailer.rb +2 -2
  13. data/app/models/concerns/foreman_openscap/compliance_status_scoped_search.rb +1 -1
  14. data/app/models/concerns/foreman_openscap/data_stream_content.rb +0 -17
  15. data/app/models/concerns/foreman_openscap/host_extensions.rb +11 -11
  16. data/app/models/concerns/foreman_openscap/hostgroup_extensions.rb +3 -5
  17. data/app/models/concerns/foreman_openscap/inherited_policies.rb +11 -0
  18. data/app/models/concerns/foreman_openscap/oval_facet_host_extensions.rb +38 -0
  19. data/app/models/concerns/foreman_openscap/oval_facet_hostgroup_extensions.rb +15 -0
  20. data/app/models/concerns/foreman_openscap/policy_common.rb +75 -0
  21. data/app/models/concerns/foreman_openscap/scap_file_content.rb +24 -0
  22. data/app/models/foreman_openscap/cve.rb +23 -0
  23. data/app/models/foreman_openscap/host/oval_facet.rb +14 -0
  24. data/app/models/foreman_openscap/host_cve.rb +7 -0
  25. data/app/models/foreman_openscap/hostgroup/oval_facet.rb +14 -0
  26. data/app/models/foreman_openscap/hostgroup_oval_facet_oval_policy.rb +6 -0
  27. data/app/models/foreman_openscap/oval_content.rb +26 -0
  28. data/app/models/foreman_openscap/oval_facet_oval_policy.rb +6 -0
  29. data/app/models/foreman_openscap/oval_policy.rb +54 -0
  30. data/app/models/foreman_openscap/oval_status.rb +45 -0
  31. data/app/models/foreman_openscap/policy.rb +7 -69
  32. data/app/models/foreman_openscap/scap_content.rb +1 -0
  33. data/app/models/foreman_openscap/tailoring_file.rb +1 -0
  34. data/app/services/foreman_openscap/client_config/ansible.rb +39 -6
  35. data/app/services/foreman_openscap/client_config/base.rb +5 -1
  36. data/app/services/foreman_openscap/client_config/puppet.rb +2 -1
  37. data/app/services/foreman_openscap/config_name_service.rb +1 -1
  38. data/app/services/foreman_openscap/hostgroup_overrider.rb +2 -24
  39. data/app/services/foreman_openscap/hostgroup_overrider_common.rb +28 -0
  40. data/app/services/foreman_openscap/lookup_key_overrider.rb +30 -62
  41. data/app/services/foreman_openscap/lookup_key_overrides_common.rb +63 -0
  42. data/app/services/foreman_openscap/oval/check_collection.rb +45 -0
  43. data/app/services/foreman_openscap/oval/configure.rb +80 -0
  44. data/app/services/foreman_openscap/oval/cves.rb +41 -0
  45. data/app/services/foreman_openscap/oval/setup.rb +93 -0
  46. data/app/services/foreman_openscap/oval/setup_check.rb +55 -0
  47. data/app/services/foreman_openscap/oval/sync_oval_contents.rb +42 -0
  48. data/app/views/api/v2/compliance/oval_contents/base.json.rabl +6 -0
  49. data/app/views/api/v2/compliance/oval_contents/create.json.rabl +3 -0
  50. data/app/views/api/v2/compliance/oval_contents/index.json.rabl +3 -0
  51. data/app/views/api/v2/compliance/oval_contents/show.json.rabl +3 -0
  52. data/app/views/api/v2/compliance/oval_contents/sync.json.rabl +3 -0
  53. data/app/views/api/v2/compliance/oval_contents/sync_result.json.rabl +11 -0
  54. data/app/views/api/v2/compliance/oval_contents/update.json.rabl +3 -0
  55. data/app/views/api/v2/compliance/oval_policies/create.json.rabl +3 -0
  56. data/app/views/api/v2/compliance/oval_policies/index.json.rabl +3 -0
  57. data/app/views/api/v2/compliance/oval_policies/main.json.rabl +15 -0
  58. data/app/views/api/v2/compliance/oval_policies/show.json.rabl +3 -0
  59. data/app/views/api/v2/compliance/policies/base.json.rabl +2 -2
  60. data/app/views/api/v2/compliance/policies_common/_attrs.json.rabl +2 -0
  61. data/app/views/arf_reports/_output.html.erb +9 -1
  62. data/app/views/job_templates/run_oval_scans.erb +24 -0
  63. data/app/views/policies/steps/_deployment_options_form.html.erb +2 -2
  64. data/config/initializers/inflections.rb +12 -0
  65. data/config/routes.rb +19 -0
  66. data/db/migrate/20201019074925_create_oval_policy.rb +13 -0
  67. data/db/migrate/20201020113801_create_oval_facet.rb +14 -0
  68. data/db/migrate/20201021084109_create_hostgroup_oval_facet.rb +14 -0
  69. data/db/migrate/20201106080924_create_oval_content.rb +12 -0
  70. data/db/migrate/20201116110256_add_oval_content_to_oval_policy.rb +5 -0
  71. data/db/migrate/20201120080329_create_cves.rb +13 -0
  72. data/db/migrate/20201202110213_update_puppet_port_param_type.rb +2 -6
  73. data/db/migrate/20201217130800_add_has_errata_to_cve.rb +8 -0
  74. data/db/migrate/20201217161511_add_url_to_oval_content.rb +5 -0
  75. data/db/migrate/20210409095625_add_oval_policy_reference_to_cve.rb +7 -0
  76. data/lib/foreman_openscap/engine.rb +67 -9
  77. data/lib/foreman_openscap/version.rb +1 -1
  78. data/lib/tasks/foreman_openscap_tasks.rake +14 -9
  79. data/locale/de/LC_MESSAGES/foreman_openscap.mo +0 -0
  80. data/locale/de/foreman_openscap.edit.po +0 -0
  81. data/locale/de/foreman_openscap.po +215 -17
  82. data/locale/en_GB/LC_MESSAGES/foreman_openscap.mo +0 -0
  83. data/locale/en_GB/foreman_openscap.edit.po +0 -0
  84. data/locale/en_GB/foreman_openscap.po +213 -15
  85. data/locale/es/LC_MESSAGES/foreman_openscap.mo +0 -0
  86. data/locale/es/foreman_openscap.edit.po +0 -0
  87. data/locale/es/foreman_openscap.po +239 -41
  88. data/locale/foreman_openscap.pot +395 -112
  89. data/locale/fr/LC_MESSAGES/foreman_openscap.mo +0 -0
  90. data/locale/fr/foreman_openscap.edit.po +0 -0
  91. data/locale/fr/foreman_openscap.po +243 -45
  92. data/locale/gl/LC_MESSAGES/foreman_openscap.mo +0 -0
  93. data/locale/gl/foreman_openscap.edit.po +0 -0
  94. data/locale/gl/foreman_openscap.po +213 -15
  95. data/locale/it/LC_MESSAGES/foreman_openscap.mo +0 -0
  96. data/locale/it/foreman_openscap.edit.po +0 -0
  97. data/locale/it/foreman_openscap.po +213 -15
  98. data/locale/ja/LC_MESSAGES/foreman_openscap.mo +0 -0
  99. data/locale/ja/foreman_openscap.edit.po +0 -0
  100. data/locale/ja/foreman_openscap.po +262 -66
  101. data/locale/ko/LC_MESSAGES/foreman_openscap.mo +0 -0
  102. data/locale/ko/foreman_openscap.edit.po +0 -0
  103. data/locale/ko/foreman_openscap.po +214 -16
  104. data/locale/pt_BR/LC_MESSAGES/foreman_openscap.mo +0 -0
  105. data/locale/pt_BR/foreman_openscap.edit.po +0 -0
  106. data/locale/pt_BR/foreman_openscap.po +252 -54
  107. data/locale/ru/LC_MESSAGES/foreman_openscap.mo +0 -0
  108. data/locale/ru/foreman_openscap.edit.po +0 -0
  109. data/locale/ru/foreman_openscap.po +214 -16
  110. data/locale/sv_SE/LC_MESSAGES/foreman_openscap.mo +0 -0
  111. data/locale/sv_SE/foreman_openscap.edit.po +0 -0
  112. data/locale/sv_SE/foreman_openscap.po +213 -15
  113. data/locale/zh_CN/LC_MESSAGES/foreman_openscap.mo +0 -0
  114. data/locale/zh_CN/foreman_openscap.edit.po +0 -0
  115. data/locale/zh_CN/foreman_openscap.po +369 -169
  116. data/locale/zh_TW/LC_MESSAGES/foreman_openscap.mo +0 -0
  117. data/locale/zh_TW/foreman_openscap.edit.po +0 -0
  118. data/locale/zh_TW/foreman_openscap.po +214 -16
  119. data/test/factories/compliance_host_factory.rb +12 -0
  120. data/test/factories/oval_content_factory.rb +7 -0
  121. data/test/factories/oval_policy_factory.rb +9 -0
  122. data/test/files/oval_contents/ansible-2.9.oval.xml.bz2 +0 -0
  123. data/test/fixtures/cve_fixtures.rb +104 -0
  124. data/test/functional/api/v2/compliance/oval_contents_controller_test.rb +39 -0
  125. data/test/functional/api/v2/compliance/oval_policies_controller_test.rb +141 -0
  126. data/test/functional/api/v2/compliance/oval_reports_controller_test.rb +32 -0
  127. data/test/graphql/queries/oval_contents_query_test.rb +35 -0
  128. data/test/graphql/queries/oval_policies_query_test.rb +35 -0
  129. data/test/test_plugin_helper.rb +4 -0
  130. data/test/unit/oval_host_test.rb +45 -0
  131. data/test/unit/oval_policy_test.rb +133 -0
  132. data/test/unit/oval_status_test.rb +47 -0
  133. data/test/unit/services/oval/cves_test.rb +81 -0
  134. data/test/unit/services/oval/setup_test.rb +87 -0
  135. metadata +97 -3
File without changes
@@ -7,8 +7,8 @@ msgid ""
7
7
  msgstr ""
8
8
  "Project-Id-Version: Foreman\n"
9
9
  "Report-Msgid-Bugs-To: \n"
10
- "PO-Revision-Date: 2020-03-02 20:59+0000\n"
11
- "Last-Translator: Lukáš Zapletal\n"
10
+ "PO-Revision-Date: 2020-05-12 09:50+0000\n"
11
+ "Last-Translator: Transifex Bot <>\n"
12
12
  "Language-Team: Swedish (Sweden) (http://www.transifex.com/foreman/foreman/lang"
13
13
  "uage/sv_SE/)\n"
14
14
  "MIME-Version: 1.0\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 ""
39
36
 
@@ -43,6 +40,12 @@ msgstr ""
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 "Tillbaka"
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 ""
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 "Instrumentbräda"
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 ""
210
243
 
@@ -214,6 +247,12 @@ msgstr ""
214
247
  msgid "Description"
215
248
  msgstr "Beskrivning"
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 "Dokumentation"
219
258
 
@@ -238,16 +277,13 @@ msgstr ""
238
277
  msgid "Download bzipped ARF report"
239
278
  msgstr ""
240
279
 
241
- msgid "Edit Compliance Policy"
280
+ msgid "Edit %s"
242
281
  msgstr ""
243
282
 
244
- msgid "Edit SCAP Content"
283
+ msgid "Effective Profile"
245
284
  msgstr ""
246
285
 
247
- msgid "Edit Tailoring File"
248
- msgstr ""
249
-
250
- msgid "Effective Profile"
286
+ msgid "Error!"
251
287
  msgstr ""
252
288
 
253
289
  msgid "Failed"
@@ -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 "Värd"
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 ""
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 "Meddelande"
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 ""
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 ""
452
530
 
@@ -510,6 +588,48 @@ msgstr "Antal Event"
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 "Organisationer"
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 ""
548
671
  msgid "Please Confirm"
549
672
  msgstr "Vänligen bekräfta"
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 ""
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 "Puppetklass"
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 ""
665
803
  msgid "SCAP policies summary"
666
804
  msgstr ""
667
805
 
668
- msgid "Scap Contents"
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 ""
709
853
 
@@ -749,6 +893,12 @@ msgstr ""
749
893
  msgid "Summary report from Foreman server at %{foreman_url}"
750
894
  msgstr ""
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 ""
824
995
 
@@ -840,24 +1011,39 @@ msgstr ""
840
1011
  msgid "Upload an ARF report"
841
1012
  msgstr ""
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 ""
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 ""
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 "felaktig typ %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 ""