foreman_openscap 0.7.1 → 0.7.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.
Files changed (85) hide show
  1. checksums.yaml +4 -4
  2. data/app/controllers/api/v2/compliance/arf_reports_controller.rb +1 -1
  3. data/app/controllers/api/v2/compliance/policies_controller.rb +2 -2
  4. data/app/controllers/api/v2/compliance/scap_contents_controller.rb +1 -1
  5. data/app/controllers/api/v2/compliance/tailoring_files_controller.rb +1 -1
  6. data/app/controllers/arf_reports_controller.rb +9 -9
  7. data/app/controllers/concerns/foreman/controller/parameters/policy.rb +1 -1
  8. data/app/controllers/openscap_proxies_controller.rb +5 -5
  9. data/app/controllers/policies_controller.rb +16 -17
  10. data/app/controllers/policy_dashboard_controller.rb +2 -1
  11. data/app/controllers/scap_contents_controller.rb +2 -2
  12. data/app/controllers/tailoring_files_controller.rb +4 -4
  13. data/app/helpers/arf_report_dashboard_helper.rb +2 -3
  14. data/app/helpers/arf_reports_helper.rb +1 -1
  15. data/app/helpers/compliance_hosts_helper.rb +1 -2
  16. data/app/helpers/policies_helper.rb +4 -4
  17. data/app/helpers/policy_dashboard_helper.rb +2 -3
  18. data/app/lib/proxy_api/available_proxy.rb +2 -2
  19. data/app/lib/proxy_api/openscap.rb +1 -1
  20. data/app/mailers/foreman_openscap/policy_mailer.rb +1 -1
  21. data/app/models/concerns/foreman_openscap/compliance_status_scoped_search.rb +7 -8
  22. data/app/models/concerns/foreman_openscap/host_extensions.rb +44 -25
  23. data/app/models/concerns/foreman_openscap/log_extensions.rb +1 -1
  24. data/app/models/concerns/foreman_openscap/openscap_proxy_core_extensions.rb +3 -3
  25. data/app/models/foreman_openscap/arf_report.rb +34 -12
  26. data/app/models/foreman_openscap/policy.rb +19 -17
  27. data/app/models/foreman_openscap/scap_content.rb +4 -2
  28. data/app/services/foreman_openscap/arf_report_status_calculator.rb +1 -1
  29. data/app/services/foreman_openscap/host_report_dashboard/data.rb +2 -2
  30. data/app/services/foreman_openscap/policy_dashboard/data.rb +4 -3
  31. data/app/validators/foreman_openscap/data_stream_validator.rb +2 -2
  32. data/app/views/policy_dashboard/_policy_status_widget.html.erb +5 -5
  33. data/config/routes.rb +6 -6
  34. data/db/migrate/20141015115511_add_arf_report_unique_constraint.rb +1 -1
  35. data/db/migrate/20141113221054_create_scaptimony_scap_content_profiles.rb +1 -1
  36. data/db/migrate/20141116170632_remove_xccdf_profile_from_scaptimony_policies.rb +1 -1
  37. data/db/migrate/20141121120326_create_scaptimony_arf_report_breakdowns.rb +15 -15
  38. data/db/migrate/20141121164042_replace_arf_report_breakdown_view.rb +15 -15
  39. data/db/migrate/20141206211151_create_scaptimony_assets_policies.rb +1 -1
  40. data/db/migrate/20150115155947_add_scaptimony_scap_content_digest.rb +1 -1
  41. data/db/migrate/20150821100137_migrate_from_scaptimony.rb +1 -1
  42. data/db/migrate/20160830113437_remove_deleted_policy.rb +1 -1
  43. data/db/migrate/20160925213031_change_scap_widget_names.rb +8 -8
  44. data/db/migrate/20161223153249_add_permissions_to_arf_report.rb +4 -4
  45. data/db/seeds.d/75-job_templates.rb +6 -1
  46. data/db/seeds.d/openscap_feature.rb +1 -1
  47. data/lib/foreman_openscap/data_migration.rb +1 -2
  48. data/lib/foreman_openscap/engine.rb +33 -34
  49. data/lib/foreman_openscap/helper.rb +5 -7
  50. data/lib/foreman_openscap/message_cleaner.rb +32 -0
  51. data/lib/foreman_openscap/version.rb +1 -1
  52. data/lib/tasks/foreman_openscap_tasks.rake +12 -0
  53. data/locale/de/foreman_openscap.po +205 -43
  54. data/locale/en_GB/foreman_openscap.po +205 -43
  55. data/locale/es/foreman_openscap.po +205 -43
  56. data/locale/foreman_openscap.pot +418 -185
  57. data/locale/fr/foreman_openscap.po +205 -43
  58. data/locale/gl/foreman_openscap.po +205 -43
  59. data/locale/it/foreman_openscap.po +205 -43
  60. data/locale/ja/foreman_openscap.po +205 -43
  61. data/locale/ko/foreman_openscap.po +205 -43
  62. data/locale/pt_BR/foreman_openscap.po +205 -43
  63. data/locale/ru/foreman_openscap.po +205 -43
  64. data/locale/sv_SE/foreman_openscap.po +205 -43
  65. data/locale/zh_CN/foreman_openscap.po +205 -43
  66. data/locale/zh_TW/foreman_openscap.po +205 -43
  67. data/test/factories/arf_report_factory.rb +2 -2
  68. data/test/factories/asset_factory.rb +5 -0
  69. data/test/factories/compliance_host_factory.rb +4 -4
  70. data/test/factories/compliance_log_factory.rb +9 -4
  71. data/test/files/arf_report/arf_report.json +1 -0
  72. data/test/files/arf_report/arf_report_msg_desc_changed.json +1 -0
  73. data/test/files/arf_report/arf_report_msg_value_changed.json +1 -0
  74. data/test/functional/api/v2/compliance/arf_reports_controller_test.rb +111 -1
  75. data/test/functional/api/v2/compliance/policies_controller_test.rb +1 -1
  76. data/test/functional/api/v2/compliance/tailoring_files_controller_test.rb +4 -4
  77. data/test/test_plugin_helper.rb +4 -4
  78. data/test/unit/arf_report_test.rb +5 -5
  79. data/test/unit/concerns/host_extensions_test.rb +64 -4
  80. data/test/unit/message_cleaner_test.rb +31 -0
  81. data/test/unit/policy_mailer_test.rb +1 -2
  82. data/test/unit/scap_content_test.rb +3 -5
  83. data/test/unit/services/report_dashboard/data_test.rb +1 -1
  84. data/test/unit/services/tailoring_files_proxy_check_test.rb +4 -4
  85. metadata +12 -6
@@ -41,9 +41,6 @@ msgstr ""
41
41
  msgid "<b>Foreman</b> OpenSCAP summary"
42
42
  msgstr ""
43
43
 
44
- msgid "A compliance policy is defined by security professionals who specify desired settings (often in the form of a checklist) that are to be used in the computing environment. Compliance audit is a process of figuring out whether a given object follows all the rules written out in a compliance policy."
45
- msgstr ""
46
-
47
44
  msgid "A summary of reports for OpenSCAP policies"
48
45
  msgstr ""
49
46
 
@@ -74,6 +71,12 @@ msgstr ""
74
71
  msgid "Changed?"
75
72
  msgstr ""
76
73
 
74
+ msgid "Choose Tailoring File"
75
+ msgstr ""
76
+
77
+ msgid "Choose day in month"
78
+ msgstr ""
79
+
77
80
  msgid "Choose existing SCAP Content"
78
81
  msgstr ""
79
82
 
@@ -92,10 +95,10 @@ msgstr ""
92
95
  msgid "Compliance Reports"
93
96
  msgstr ""
94
97
 
95
- msgid "Compliance Status"
98
+ msgid "Compliance Reports Breakdown"
96
99
  msgstr ""
97
100
 
98
- msgid "Compliance policy configuration"
101
+ msgid "Compliance Status"
99
102
  msgstr ""
100
103
 
101
104
  msgid "Compliance policy: %s"
@@ -113,13 +116,22 @@ msgstr ""
113
116
  msgid "Compliant with the policy"
114
117
  msgstr ""
115
118
 
119
+ msgid "Content"
120
+ msgstr ""
121
+
122
+ msgid "Could not validate %s. Please make sure you have appropriate proxy version to use this functionality"
123
+ msgstr ""
124
+
116
125
  msgid "Create SCAP content"
117
126
  msgstr ""
118
127
 
119
- msgid "Create a policy"
128
+ msgid "Create a Policy"
129
+ msgstr ""
130
+
131
+ msgid "Create a Tailoring file"
120
132
  msgstr ""
121
133
 
122
- msgid "Cron line does not consist of 5 parts separated by space"
134
+ msgid "Created"
123
135
  msgstr ""
124
136
 
125
137
  msgid "Date"
@@ -131,6 +143,12 @@ msgstr ""
131
143
  msgid "Delete"
132
144
  msgstr ""
133
145
 
146
+ msgid "Delete a Policy"
147
+ msgstr ""
148
+
149
+ msgid "Delete an ARF Report"
150
+ msgstr ""
151
+
134
152
  msgid "Delete compliance policy %s with all the reports?"
135
153
  msgstr ""
136
154
 
@@ -140,10 +158,10 @@ msgstr ""
140
158
  msgid "Delete reports"
141
159
  msgstr ""
142
160
 
143
- msgid "Deletes a policy"
161
+ msgid "Delete tailoring file %s?"
144
162
  msgstr ""
145
163
 
146
- msgid "Deletes an ARF Report"
164
+ msgid "Deletes a Tailoring file"
147
165
  msgstr ""
148
166
 
149
167
  msgid "Deletes an SCAP content"
@@ -155,9 +173,18 @@ msgstr ""
155
173
  msgid "Download"
156
174
  msgstr ""
157
175
 
176
+ msgid "Download ARF report in HTML"
177
+ msgstr ""
178
+
179
+ msgid "Download HTML"
180
+ msgstr ""
181
+
158
182
  msgid "Download XML in bzip"
159
183
  msgstr ""
160
184
 
185
+ msgid "Download bzipped ARF report"
186
+ msgstr ""
187
+
161
188
  msgid "Edit"
162
189
  msgstr ""
163
190
 
@@ -167,6 +194,12 @@ msgstr ""
167
194
  msgid "Edit SCAP Content"
168
195
  msgstr ""
169
196
 
197
+ msgid "Edit Tailoring File"
198
+ msgstr ""
199
+
200
+ msgid "Effective Profile"
201
+ msgstr ""
202
+
170
203
  msgid "Failed"
171
204
  msgstr ""
172
205
 
@@ -185,12 +218,22 @@ msgstr ""
185
218
  msgid "Failed to downloaded ARF report as bzip: %s"
186
219
  msgstr ""
187
220
 
221
+ msgid "Failed to downloaded ARF report in HTML: %s"
222
+ msgstr ""
223
+
224
+ #. TRANSLATORS: initial character of Failed
188
225
  msgid "Failed|F"
189
226
  msgstr ""
190
227
 
191
228
  msgid "File Upload"
192
229
  msgstr ""
193
230
 
231
+ msgid "Filename"
232
+ msgstr ""
233
+
234
+ msgid "Full Report"
235
+ msgstr ""
236
+
194
237
  msgid "General"
195
238
  msgstr ""
196
239
 
@@ -224,12 +267,17 @@ msgstr ""
224
267
  msgid "Hosts Breakdown"
225
268
  msgstr ""
226
269
 
227
- msgid "In Foreman, a compliance policy checklist is defined via %s, once SCAP content is present, you can create a policy, assign select host groups and schedule to run."
270
+ msgid "In Foreman, a compliance policy checklist is defined via %s."
228
271
  msgstr ""
229
272
 
230
273
  msgid ""
231
274
  "In Foreman, scap_contents represent the SCAP security guides on your hosts, and create SCAP profiles for you to assign to hosts / host groups\n"
232
- " via %s"
275
+ " via %s"
276
+ msgstr ""
277
+
278
+ msgid ""
279
+ "In Foreman, tailoring_files represent the custom modifications to default XCCDF profiles and they can be applied to hosts\n"
280
+ " via %s"
233
281
  msgstr ""
234
282
 
235
283
  msgid "Incompliant"
@@ -244,7 +292,13 @@ msgstr ""
244
292
  msgid "Inconclusive results"
245
293
  msgstr ""
246
294
 
247
- msgid "Latest compliance reports"
295
+ msgid "It may sometimes be required to adjust the security policy to your specific needs. "
296
+ msgstr ""
297
+
298
+ msgid "Last spool error"
299
+ msgstr ""
300
+
301
+ msgid "Latest Compliance Reports"
248
302
  msgstr ""
249
303
 
250
304
  msgid "Latest reports for policy: %s"
@@ -253,9 +307,15 @@ msgstr ""
253
307
  msgid "List ARF reports"
254
308
  msgstr ""
255
309
 
310
+ msgid "List Policies"
311
+ msgstr ""
312
+
256
313
  msgid "List SCAP contents"
257
314
  msgstr ""
258
315
 
316
+ msgid "List Tailoring files"
317
+ msgstr ""
318
+
259
319
  msgid "Loading..."
260
320
  msgstr ""
261
321
 
@@ -268,16 +328,22 @@ msgstr ""
268
328
  msgid "More details"
269
329
  msgstr ""
270
330
 
331
+ msgid "Name"
332
+ msgstr ""
333
+
271
334
  msgid "Never audited"
272
335
  msgstr ""
273
336
 
274
337
  msgid "New Compliance Policy"
275
338
  msgstr ""
276
339
 
277
- msgid "New Compliance policy"
340
+ msgid "New Policy"
341
+ msgstr ""
342
+
343
+ msgid "New SCAP Content"
278
344
  msgstr ""
279
345
 
280
- msgid "New SCAP content"
346
+ msgid "New Tailoring File"
281
347
  msgstr ""
282
348
 
283
349
  msgid "Next"
@@ -289,13 +355,10 @@ msgstr ""
289
355
  msgid "No ARF reports for this policy"
290
356
  msgstr ""
291
357
 
292
- msgid "No Available Proxy to validate SCAP content"
358
+ msgid "No OpenSCAP proxy found for %{class} with %{id}"
293
359
  msgstr ""
294
360
 
295
- msgid "No OpenSCAP proxy found for %s"
296
- msgstr ""
297
-
298
- msgid "No Proxy with OpenSCAP features"
361
+ msgid "No available proxy to validate SCAP data stream file"
299
362
  msgstr ""
300
363
 
301
364
  msgid "No available proxy to validate. Returned with error: %s"
@@ -316,6 +379,9 @@ msgstr ""
316
379
  msgid "No hosts were found."
317
380
  msgstr ""
318
381
 
382
+ msgid "No proxy with OpenSCAP features"
383
+ msgstr ""
384
+
319
385
  msgid "No report for this policy"
320
386
  msgstr ""
321
387
 
@@ -328,6 +394,12 @@ msgstr ""
328
394
  msgid "No valid policy ID provided"
329
395
  msgstr ""
330
396
 
397
+ msgid "None"
398
+ msgstr ""
399
+
400
+ msgid "None found"
401
+ msgstr ""
402
+
331
403
  msgid "None!"
332
404
  msgstr ""
333
405
 
@@ -346,30 +418,35 @@ msgstr ""
346
418
  msgid "Number of a day in month, note that not all months have same count of days"
347
419
  msgstr ""
348
420
 
349
- msgid "OpenSCAP Host reports widget"
421
+ msgid "Once SCAP content is present, you can create a policy, assign select host groups and schedule to run."
350
422
  msgstr ""
351
423
 
352
- msgid "OpenSCAP Proxy"
424
+ msgid "Openscap Proxy"
353
425
  msgstr ""
354
426
 
355
- msgid "OpenSCAP Reports breakdown widget"
427
+ msgid "Openscap policy summary"
356
428
  msgstr ""
357
429
 
358
430
  msgid "Organizations"
359
431
  msgstr ""
360
432
 
433
+ msgid "Original file name of the XML file"
434
+ msgstr ""
435
+
361
436
  msgid "Other"
362
437
  msgstr ""
363
438
 
364
439
  msgid "Othered"
365
440
  msgstr ""
366
441
 
442
+ #. TRANSLATORS: initial character of Othered which is an SCAP term
367
443
  msgid "Othered|O"
368
444
  msgstr ""
369
445
 
370
446
  msgid "Passed"
371
447
  msgstr ""
372
448
 
449
+ #. TRANSLATORS: initial character of Passed
373
450
  msgid "Passed|P"
374
451
  msgstr ""
375
452
 
@@ -382,9 +459,6 @@ msgstr ""
382
459
  msgid "Policies with hosts:"
383
460
  msgstr ""
384
461
 
385
- msgid "Policy"
386
- msgstr ""
387
-
388
462
  msgid "Policy %s"
389
463
  msgstr ""
390
464
 
@@ -397,19 +471,34 @@ msgstr ""
397
471
  msgid "Policy description"
398
472
  msgstr ""
399
473
 
474
+ msgid "Policy is missing"
475
+ msgstr ""
476
+
400
477
  msgid "Policy name"
401
478
  msgstr ""
402
479
 
403
- msgid "Policy schedule period"
480
+ msgid "Policy schedule cron line (only if period == \"custom\")"
481
+ msgstr ""
482
+
483
+ msgid "Policy schedule day of month (only if period == \"monthly\")"
404
484
  msgstr ""
405
485
 
406
- msgid "Policy schedule weekday"
486
+ msgid "Policy schedule period (weekly, monthly, custom)"
487
+ msgstr ""
488
+
489
+ msgid "Policy schedule weekday (only if period == \"weekly\")"
490
+ msgstr ""
491
+
492
+ msgid "Profile"
493
+ msgstr ""
494
+
495
+ msgid "Proxy failed to send a report from spool to Foreman. This indicates a corrupted report format. Report has been moved to directory for storing corrupted files on proxy for later inspection."
407
496
  msgstr ""
408
497
 
409
498
  msgid "Puppet class %{class} does not have %{parameter} class parameter."
410
499
  msgstr ""
411
500
 
412
- msgid "Puppet class 'foreman_scap_client' not found, make sure it is imported form Puppet master"
501
+ msgid "Puppet class 'foreman_scap_client' not found, make sure it is imported from Puppet master"
413
502
  msgstr ""
414
503
 
415
504
  msgid "Rationale"
@@ -433,6 +522,9 @@ msgstr ""
433
522
  msgid "Reports"
434
523
  msgstr ""
435
524
 
525
+ msgid "Request timed out. Please try increasing Settings -> proxy_request_timeout"
526
+ msgstr ""
527
+
436
528
  msgid "Required Puppet class %{class} is not found, please ensure it imported first."
437
529
  msgstr ""
438
530
 
@@ -442,6 +534,9 @@ msgstr ""
442
534
  msgid "Result"
443
535
  msgstr ""
444
536
 
537
+ msgid "Run OpenSCAP scan"
538
+ msgstr ""
539
+
445
540
  msgid "SCAP Content"
446
541
  msgstr ""
447
542
 
@@ -451,9 +546,6 @@ msgstr ""
451
546
  msgid "SCAP content"
452
547
  msgstr ""
453
548
 
454
- msgid "SCAP content configuration"
455
- msgstr ""
456
-
457
549
  msgid "SCAP content name"
458
550
  msgstr ""
459
551
 
@@ -481,15 +573,30 @@ msgstr ""
481
573
  msgid "Show Guide"
482
574
  msgstr ""
483
575
 
576
+ msgid "Show a Policy"
577
+ msgstr ""
578
+
579
+ msgid "Show a Tailoring file"
580
+ msgstr ""
581
+
582
+ msgid "Show a Tailoring file as XML"
583
+ msgstr ""
584
+
484
585
  msgid "Show a policy's SCAP content"
485
586
  msgstr ""
486
587
 
588
+ msgid "Show a policy's Tailoring file"
589
+ msgstr ""
590
+
487
591
  msgid "Show an ARF report"
488
592
  msgstr ""
489
593
 
490
594
  msgid "Show an SCAP content"
491
595
  msgstr ""
492
596
 
597
+ msgid "Show an SCAP content as XML"
598
+ msgstr ""
599
+
493
600
  msgid "Show log messages:"
494
601
  msgstr ""
495
602
 
@@ -499,9 +606,6 @@ msgstr ""
499
606
  msgid "Something went wrong while selecting hosts - %s"
500
607
  msgstr ""
501
608
 
502
- msgid "Source: Wikipedia %s"
503
- msgstr ""
504
-
505
609
  msgid "Status chart"
506
610
  msgstr ""
507
611
 
@@ -523,11 +627,36 @@ msgstr ""
523
627
  msgid "Summary report from Foreman server at %{foreman_url}"
524
628
  msgstr ""
525
629
 
630
+ msgid "Tailoring File"
631
+ msgstr ""
632
+
633
+ msgid "Tailoring Files"
634
+ msgstr ""
635
+
636
+ msgid "Tailoring file ID"
637
+ msgstr ""
638
+
639
+ msgid "Tailoring file name"
640
+ msgstr ""
641
+
642
+ msgid "Tailoring file profile ID"
643
+ msgstr ""
644
+
526
645
  msgid ""
527
646
  "The Security Content Automation Protocol (SCAP), combines a number of open standards that are used to enumerate software flaws and\n"
528
- " configuration issues related to security. They measure systems to find vulnerabilities and offer methods to score those findings in order\n"
529
- " to evaluate the possible impact. It is a method for using those open standards for automated vulnerability management, measurement,\n"
530
- " and policy compliance evaluation. "
647
+ " configuration issues related to security. "
648
+ msgstr ""
649
+
650
+ msgid "The following Smart Proxies need to be updated to unlock the feature: %s. "
651
+ msgstr ""
652
+
653
+ msgid "The following proxies could not be reached: %s. Please make sure they are available so Foreman can check their versions."
654
+ msgstr ""
655
+
656
+ msgid "This feature is temporarily disabled. "
657
+ msgstr ""
658
+
659
+ msgid "This profile will be used to override the one from scap content"
531
660
  msgstr ""
532
661
 
533
662
  msgid "Total"
@@ -556,7 +685,10 @@ msgstr ""
556
685
  msgid "Unsupported report status format"
557
686
  msgstr ""
558
687
 
559
- msgid "Update a policy"
688
+ msgid "Update a Policy"
689
+ msgstr ""
690
+
691
+ msgid "Update a Tailoring file"
560
692
  msgstr ""
561
693
 
562
694
  msgid "Update an SCAP content"
@@ -568,9 +700,15 @@ msgstr ""
568
700
  msgid "Updated hosts: Unassigned from compliance policy '%s'"
569
701
  msgstr ""
570
702
 
703
+ msgid "Upload DataStream Tailoring file"
704
+ msgstr ""
705
+
571
706
  msgid "Upload New SCAP Content"
572
707
  msgstr ""
573
708
 
709
+ msgid "Upload New Tailoring file"
710
+ msgstr ""
711
+
574
712
  msgid "Upload SCAP DataStream file"
575
713
  msgstr ""
576
714
 
@@ -580,6 +718,9 @@ msgstr ""
580
718
  msgid "Upload new SCAP content file"
581
719
  msgstr ""
582
720
 
721
+ msgid "Upload new Tailoring File"
722
+ msgstr ""
723
+
583
724
  msgid "View Report"
584
725
  msgstr ""
585
726
 
@@ -589,28 +730,49 @@ msgstr ""
589
730
  msgid "XCCDF Profile"
590
731
  msgstr ""
591
732
 
733
+ msgid "XCCDF Profile in Tailoring File"
734
+ msgstr ""
735
+
736
+ msgid "XML containing SCAP content"
737
+ msgstr ""
738
+
739
+ msgid "XML containing tailoring file"
740
+ msgstr ""
741
+
592
742
  msgid "Yes"
593
743
  msgstr ""
594
744
 
595
745
  msgid "You can specify custom cron line, e.g. \"0 3 * * *\", separate each of 5 values by space"
596
746
  msgstr ""
597
747
 
598
- msgid "You must fill cron line"
748
+ msgid "does not come from selected tailoring file"
599
749
  msgstr ""
600
750
 
601
- msgid "You must fill day of month"
751
+ msgid "does not consist of 5 parts separated by space"
602
752
  msgstr ""
603
753
 
604
- msgid "You must fill weekday"
754
+ msgid "invalid type %s"
605
755
  msgstr ""
606
756
 
607
- msgid "invalid type %s"
757
+ msgid "is not a valid value"
758
+ msgstr ""
759
+
760
+ msgid "is not included in SCAP_RESULT"
608
761
  msgstr ""
609
762
 
610
763
  msgid "items selected. Uncheck to Clear"
611
764
  msgstr ""
612
765
 
613
- msgid "read more"
766
+ msgid "must be between 1 and 31"
767
+ msgstr ""
768
+
769
+ msgid "must be present when tailoring file present"
770
+ msgstr ""
771
+
772
+ msgid "must be present when tailoring file profile present"
773
+ msgstr ""
774
+
775
+ msgid "must have Openscap feature"
614
776
  msgstr ""
615
777
 
616
778
  msgid "these Complianace reports"