foreman_openscap 7.1.1 → 8.0.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/assets/javascripts/foreman_openscap/locale/cs_CZ/foreman_openscap.js +517 -421
- data/app/assets/javascripts/foreman_openscap/locale/de/foreman_openscap.js +907 -814
- data/app/assets/javascripts/foreman_openscap/locale/en/foreman_openscap.js +517 -421
- data/app/assets/javascripts/foreman_openscap/locale/en_GB/foreman_openscap.js +549 -453
- data/app/assets/javascripts/foreman_openscap/locale/es/foreman_openscap.js +911 -818
- data/app/assets/javascripts/foreman_openscap/locale/fr/foreman_openscap.js +911 -818
- data/app/assets/javascripts/foreman_openscap/locale/gl/foreman_openscap.js +556 -460
- data/app/assets/javascripts/foreman_openscap/locale/it/foreman_openscap.js +601 -505
- data/app/assets/javascripts/foreman_openscap/locale/ja/foreman_openscap.js +909 -816
- data/app/assets/javascripts/foreman_openscap/locale/ka/foreman_openscap.js +96 -0
- data/app/assets/javascripts/foreman_openscap/locale/ko/foreman_openscap.js +704 -611
- data/app/assets/javascripts/foreman_openscap/locale/pt_BR/foreman_openscap.js +911 -818
- data/app/assets/javascripts/foreman_openscap/locale/ru/foreman_openscap.js +706 -613
- data/app/assets/javascripts/foreman_openscap/locale/sv_SE/foreman_openscap.js +556 -460
- data/app/assets/javascripts/foreman_openscap/locale/zh_CN/foreman_openscap.js +909 -816
- data/app/assets/javascripts/foreman_openscap/locale/zh_TW/foreman_openscap.js +704 -611
- data/app/assets/javascripts/foreman_openscap/reports.js +5 -0
- data/app/controllers/arf_reports_controller.rb +23 -2
- data/app/helpers/arf_reports_helper.rb +17 -4
- data/app/models/foreman_openscap/arf_report.rb +11 -2
- data/app/views/arf_reports/_output.html.erb +5 -1
- data/app/views/job_templates/run_openscap_remediation_-_ansible_default.erb +27 -0
- data/app/views/job_templates/run_openscap_remediation_-_script_default.erb +24 -0
- data/config/routes.rb +1 -0
- data/db/migrate/20230912122310_add_fixes_to_message.rb +5 -0
- data/lib/foreman_openscap/engine.rb +18 -2
- data/lib/foreman_openscap/version.rb +1 -1
- data/lib/tasks/foreman_openscap_tasks.rake +5 -16
- data/locale/cs_CZ/foreman_openscap.edit.po +145 -17
- data/locale/cs_CZ/foreman_openscap.po +96 -0
- data/locale/de/foreman_openscap.edit.po +248 -282
- data/locale/de/foreman_openscap.po +96 -0
- data/locale/en/foreman_openscap.edit.po +145 -17
- data/locale/en/foreman_openscap.po +96 -0
- data/locale/en_GB/foreman_openscap.edit.po +145 -17
- data/locale/en_GB/foreman_openscap.po +96 -0
- data/locale/es/foreman_openscap.edit.po +241 -279
- data/locale/es/foreman_openscap.po +96 -0
- data/locale/foreman_openscap.pot +164 -12
- data/locale/fr/foreman_openscap.edit.po +330 -363
- data/locale/fr/foreman_openscap.po +96 -0
- data/locale/gl/foreman_openscap.edit.po +145 -17
- data/locale/gl/foreman_openscap.po +96 -0
- data/locale/it/foreman_openscap.edit.po +145 -17
- data/locale/it/foreman_openscap.po +96 -0
- data/locale/ja/foreman_openscap.edit.po +314 -347
- data/locale/ja/foreman_openscap.po +96 -0
- data/locale/ka/foreman_openscap.edit.po +289 -328
- data/locale/ka/foreman_openscap.po +96 -0
- data/locale/ka/foreman_openscap.po.time_stamp +0 -0
- data/locale/ko/foreman_openscap.edit.po +146 -18
- data/locale/ko/foreman_openscap.po +96 -0
- data/locale/pt_BR/foreman_openscap.edit.po +247 -279
- data/locale/pt_BR/foreman_openscap.po +96 -0
- data/locale/ru/foreman_openscap.edit.po +146 -18
- data/locale/ru/foreman_openscap.po +96 -0
- data/locale/sv_SE/foreman_openscap.edit.po +145 -17
- data/locale/sv_SE/foreman_openscap.po +96 -0
- data/locale/zh_CN/foreman_openscap.edit.po +314 -347
- data/locale/zh_CN/foreman_openscap.po +96 -0
- data/locale/zh_TW/foreman_openscap.edit.po +146 -18
- data/locale/zh_TW/foreman_openscap.po +96 -0
- data/webpack/components/EmptyState.js +6 -2
- data/webpack/components/OpenscapRemediationWizard/OpenscapRemediationSelectors.js +16 -0
- data/webpack/components/OpenscapRemediationWizard/OpenscapRemediationWizardContext.js +4 -0
- data/webpack/components/OpenscapRemediationWizard/ViewSelectedHostsLink.js +38 -0
- data/webpack/components/OpenscapRemediationWizard/WizardHeader.js +43 -0
- data/webpack/components/OpenscapRemediationWizard/constants.js +14 -0
- data/webpack/components/OpenscapRemediationWizard/helpers.js +33 -0
- data/webpack/components/OpenscapRemediationWizard/index.js +160 -0
- data/webpack/components/OpenscapRemediationWizard/steps/Finish.js +131 -0
- data/webpack/components/OpenscapRemediationWizard/steps/ReviewHosts.js +217 -0
- data/webpack/components/OpenscapRemediationWizard/steps/ReviewRemediation.js +176 -0
- data/webpack/components/OpenscapRemediationWizard/steps/ReviewRemediation.scss +4 -0
- data/webpack/components/OpenscapRemediationWizard/steps/SnippetSelect.js +160 -0
- data/webpack/components/OpenscapRemediationWizard/steps/index.js +4 -0
- data/webpack/index.js +8 -3
- data/webpack/testHelper.js +6 -5
- metadata +20 -3
|
@@ -61,6 +61,12 @@ msgstr ""
|
|
|
61
61
|
msgid "<b>Foreman</b> OpenSCAP summary"
|
|
62
62
|
msgstr ""
|
|
63
63
|
|
|
64
|
+
msgid "A reboot is required after applying remediation."
|
|
65
|
+
msgstr ""
|
|
66
|
+
|
|
67
|
+
msgid "A reboot might be required after applying remediation."
|
|
68
|
+
msgstr ""
|
|
69
|
+
|
|
64
70
|
msgid "A summary of reports for OpenSCAP policies"
|
|
65
71
|
msgstr ""
|
|
66
72
|
|
|
@@ -112,6 +118,9 @@ msgstr ""
|
|
|
112
118
|
msgid "Back"
|
|
113
119
|
msgstr ""
|
|
114
120
|
|
|
121
|
+
msgid "By default, remediation is applied to the current host. Optionally, remediate any additional hosts that fail the rule."
|
|
122
|
+
msgstr ""
|
|
123
|
+
|
|
115
124
|
msgid "CVEs"
|
|
116
125
|
msgstr ""
|
|
117
126
|
|
|
@@ -157,6 +166,9 @@ msgstr ""
|
|
|
157
166
|
msgid "Choose weekday"
|
|
158
167
|
msgstr ""
|
|
159
168
|
|
|
169
|
+
msgid "Close"
|
|
170
|
+
msgstr ""
|
|
171
|
+
|
|
160
172
|
msgid "Compliance"
|
|
161
173
|
msgstr ""
|
|
162
174
|
|
|
@@ -190,6 +202,9 @@ msgstr ""
|
|
|
190
202
|
msgid "Content"
|
|
191
203
|
msgstr ""
|
|
192
204
|
|
|
205
|
+
msgid "Copy to clipboard"
|
|
206
|
+
msgstr ""
|
|
207
|
+
|
|
193
208
|
msgid "Could not find host identified by: %s"
|
|
194
209
|
msgstr ""
|
|
195
210
|
|
|
@@ -301,9 +316,15 @@ msgstr ""
|
|
|
301
316
|
msgid "Directory to upload when using \"directory\" upload type"
|
|
302
317
|
msgstr ""
|
|
303
318
|
|
|
319
|
+
msgid "Do not implement any of the recommended remedial actions or scripts without first testing them in a non-production environment."
|
|
320
|
+
msgstr ""
|
|
321
|
+
|
|
304
322
|
msgid "Documentation"
|
|
305
323
|
msgstr ""
|
|
306
324
|
|
|
325
|
+
msgid "Done"
|
|
326
|
+
msgstr ""
|
|
327
|
+
|
|
307
328
|
msgid "Download"
|
|
308
329
|
msgstr ""
|
|
309
330
|
|
|
@@ -504,6 +525,9 @@ msgstr ""
|
|
|
504
525
|
msgid "It may sometimes be required to adjust the security policy to your specific needs. "
|
|
505
526
|
msgstr ""
|
|
506
527
|
|
|
528
|
+
msgid "Job details"
|
|
529
|
+
msgstr ""
|
|
530
|
+
|
|
507
531
|
msgid "Latest Compliance Reports"
|
|
508
532
|
msgstr ""
|
|
509
533
|
|
|
@@ -537,9 +561,15 @@ msgstr ""
|
|
|
537
561
|
msgid "Locations"
|
|
538
562
|
msgstr ""
|
|
539
563
|
|
|
564
|
+
msgid "Manual"
|
|
565
|
+
msgstr ""
|
|
566
|
+
|
|
540
567
|
msgid "Message"
|
|
541
568
|
msgstr ""
|
|
542
569
|
|
|
570
|
+
msgid "Method"
|
|
571
|
+
msgstr ""
|
|
572
|
+
|
|
543
573
|
msgid "Monthly, day of month: %s"
|
|
544
574
|
msgstr ""
|
|
545
575
|
|
|
@@ -675,6 +705,9 @@ msgstr ""
|
|
|
675
705
|
msgid "Number of a day in month, note that not all months have same count of days"
|
|
676
706
|
msgstr ""
|
|
677
707
|
|
|
708
|
+
msgid "OS"
|
|
709
|
+
msgstr ""
|
|
710
|
+
|
|
678
711
|
msgid "OVAL Content"
|
|
679
712
|
msgstr ""
|
|
680
713
|
|
|
@@ -774,6 +807,9 @@ msgstr ""
|
|
|
774
807
|
msgid "Other"
|
|
775
808
|
msgstr ""
|
|
776
809
|
|
|
810
|
+
msgid "Other hosts failing this rule"
|
|
811
|
+
msgstr ""
|
|
812
|
+
|
|
777
813
|
msgid "Othered"
|
|
778
814
|
msgstr ""
|
|
779
815
|
|
|
@@ -866,6 +902,9 @@ msgstr ""
|
|
|
866
902
|
msgid "Rationale"
|
|
867
903
|
msgstr ""
|
|
868
904
|
|
|
905
|
+
msgid "Reboot the system(s)"
|
|
906
|
+
msgstr ""
|
|
907
|
+
|
|
869
908
|
msgid "Red Hat %s default content"
|
|
870
909
|
msgstr ""
|
|
871
910
|
|
|
@@ -875,9 +914,21 @@ msgstr ""
|
|
|
875
914
|
msgid "References"
|
|
876
915
|
msgstr ""
|
|
877
916
|
|
|
917
|
+
msgid "Remediate %s rule"
|
|
918
|
+
msgstr ""
|
|
919
|
+
|
|
920
|
+
msgid "Remediation"
|
|
921
|
+
msgstr ""
|
|
922
|
+
|
|
923
|
+
msgid "Remediation might render the system non-functional."
|
|
924
|
+
msgstr ""
|
|
925
|
+
|
|
878
926
|
msgid "Remote action:"
|
|
879
927
|
msgstr ""
|
|
880
928
|
|
|
929
|
+
msgid "Remote job"
|
|
930
|
+
msgstr ""
|
|
931
|
+
|
|
881
932
|
msgid "Report Metrics"
|
|
882
933
|
msgstr ""
|
|
883
934
|
|
|
@@ -914,12 +965,33 @@ msgstr ""
|
|
|
914
965
|
msgid "Result"
|
|
915
966
|
msgstr ""
|
|
916
967
|
|
|
968
|
+
msgid "Review hosts"
|
|
969
|
+
msgstr ""
|
|
970
|
+
|
|
971
|
+
msgid "Review remediation"
|
|
972
|
+
msgstr ""
|
|
973
|
+
|
|
974
|
+
msgid "Review the remediation snippet and apply it to the host manually."
|
|
975
|
+
msgstr ""
|
|
976
|
+
|
|
977
|
+
msgid "Review the remediation snippet that will be applied to selected host(s)."
|
|
978
|
+
msgstr ""
|
|
979
|
+
|
|
917
980
|
msgid "Rule Results"
|
|
918
981
|
msgstr ""
|
|
919
982
|
|
|
983
|
+
msgid "Run"
|
|
984
|
+
msgstr ""
|
|
985
|
+
|
|
920
986
|
msgid "Run OVAL scan"
|
|
921
987
|
msgstr ""
|
|
922
988
|
|
|
989
|
+
msgid "Run OpenSCAP remediation with Ansible"
|
|
990
|
+
msgstr ""
|
|
991
|
+
|
|
992
|
+
msgid "Run OpenSCAP remediation with Shell"
|
|
993
|
+
msgstr ""
|
|
994
|
+
|
|
923
995
|
msgid "Run OpenSCAP scan"
|
|
924
996
|
msgstr ""
|
|
925
997
|
|
|
@@ -962,6 +1034,12 @@ msgstr ""
|
|
|
962
1034
|
msgid "Select all items in this page"
|
|
963
1035
|
msgstr ""
|
|
964
1036
|
|
|
1037
|
+
msgid "Select remediation method"
|
|
1038
|
+
msgstr ""
|
|
1039
|
+
|
|
1040
|
+
msgid "Select snippet"
|
|
1041
|
+
msgstr ""
|
|
1042
|
+
|
|
965
1043
|
msgid "Severity"
|
|
966
1044
|
msgstr ""
|
|
967
1045
|
|
|
@@ -1004,6 +1082,9 @@ msgstr ""
|
|
|
1004
1082
|
msgid "Smart Class Parameters"
|
|
1005
1083
|
msgstr ""
|
|
1006
1084
|
|
|
1085
|
+
msgid "Snippet"
|
|
1086
|
+
msgstr ""
|
|
1087
|
+
|
|
1007
1088
|
msgid "Something went wrong while selecting compliance reports - %s"
|
|
1008
1089
|
msgstr ""
|
|
1009
1090
|
|
|
@@ -1022,6 +1103,9 @@ msgstr ""
|
|
|
1022
1103
|
msgid "Submit"
|
|
1023
1104
|
msgstr ""
|
|
1024
1105
|
|
|
1106
|
+
msgid "Successfully copied to clipboard!"
|
|
1107
|
+
msgstr ""
|
|
1108
|
+
|
|
1025
1109
|
msgid "Successfully deleted %s compliance reports"
|
|
1026
1110
|
msgstr ""
|
|
1027
1111
|
|
|
@@ -1084,9 +1168,15 @@ msgstr ""
|
|
|
1084
1168
|
msgid "The identifier of the host"
|
|
1085
1169
|
msgstr ""
|
|
1086
1170
|
|
|
1171
|
+
msgid "The job has started on selected host(s), you can check the status on the job details page."
|
|
1172
|
+
msgstr ""
|
|
1173
|
+
|
|
1087
1174
|
msgid "There are significant differences in deployment options."
|
|
1088
1175
|
msgstr ""
|
|
1089
1176
|
|
|
1177
|
+
msgid "There is no job to remediate with. Please remediate manually."
|
|
1178
|
+
msgstr ""
|
|
1179
|
+
|
|
1090
1180
|
msgid "There was a following error when deleting %(name)s: %(error)s"
|
|
1091
1181
|
msgstr ""
|
|
1092
1182
|
|
|
@@ -1209,6 +1299,9 @@ msgstr ""
|
|
|
1209
1299
|
msgid "View full report"
|
|
1210
1300
|
msgstr ""
|
|
1211
1301
|
|
|
1302
|
+
msgid "View selected hosts"
|
|
1303
|
+
msgstr ""
|
|
1304
|
+
|
|
1212
1305
|
msgid "Was %s configured successfully?"
|
|
1213
1306
|
msgstr ""
|
|
1214
1307
|
|
|
@@ -1239,6 +1332,9 @@ msgstr ""
|
|
|
1239
1332
|
msgid "You are not authorized to view the page. "
|
|
1240
1333
|
msgstr ""
|
|
1241
1334
|
|
|
1335
|
+
msgid "You can remediate by running a remote job or you can display a snippet for manual remediation."
|
|
1336
|
+
msgstr ""
|
|
1337
|
+
|
|
1242
1338
|
msgid "You can specify custom cron line, e.g. \"0 3 * * *\", separate each of 5 values by space"
|
|
1243
1339
|
msgstr ""
|
|
1244
1340
|
|