foreman_openscap 4.1.3 → 4.3.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (193) hide show
  1. checksums.yaml +4 -4
  2. data/app/assets/stylesheets/foreman_openscap/policy.css +5 -0
  3. data/app/controllers/api/v2/compliance/oval_contents_controller.rb +72 -0
  4. data/app/controllers/api/v2/compliance/oval_policies_controller.rb +111 -0
  5. data/app/controllers/api/v2/compliance/oval_reports_controller.rb +47 -0
  6. data/app/controllers/concerns/foreman/controller/parameters/oval_content.rb +22 -0
  7. data/app/controllers/concerns/foreman/controller/parameters/oval_policy.rb +22 -0
  8. data/app/controllers/concerns/foreman_openscap/hosts_controller_extensions.rb +1 -1
  9. data/app/graphql/types/cve.rb +17 -0
  10. data/app/graphql/types/oval_content.rb +17 -0
  11. data/app/graphql/types/oval_policy.rb +21 -0
  12. data/app/helpers/arf_reports_helper.rb +7 -24
  13. data/app/helpers/policies_helper.rb +4 -17
  14. data/app/mailers/foreman_openscap/policy_mailer.rb +2 -2
  15. data/app/models/concerns/foreman_openscap/compliance_status_scoped_search.rb +1 -1
  16. data/app/models/concerns/foreman_openscap/data_stream_content.rb +0 -17
  17. data/app/models/concerns/foreman_openscap/host_extensions.rb +11 -11
  18. data/app/models/concerns/foreman_openscap/hostgroup_extensions.rb +3 -5
  19. data/app/models/concerns/foreman_openscap/inherited_policies.rb +11 -0
  20. data/app/models/concerns/foreman_openscap/oval_facet_host_extensions.rb +38 -0
  21. data/app/models/concerns/foreman_openscap/oval_facet_hostgroup_extensions.rb +15 -0
  22. data/app/models/concerns/foreman_openscap/policy_common.rb +75 -0
  23. data/app/models/concerns/foreman_openscap/scap_file_content.rb +24 -0
  24. data/app/models/foreman_openscap/arf_report.rb +2 -2
  25. data/app/models/foreman_openscap/cve.rb +23 -0
  26. data/app/models/foreman_openscap/host/oval_facet.rb +14 -0
  27. data/app/models/foreman_openscap/host_cve.rb +7 -0
  28. data/app/models/foreman_openscap/hostgroup/oval_facet.rb +14 -0
  29. data/app/models/foreman_openscap/hostgroup_oval_facet_oval_policy.rb +6 -0
  30. data/app/models/foreman_openscap/oval_content.rb +26 -0
  31. data/app/models/foreman_openscap/oval_facet_oval_policy.rb +6 -0
  32. data/app/models/foreman_openscap/oval_policy.rb +54 -0
  33. data/app/models/foreman_openscap/oval_status.rb +45 -0
  34. data/app/models/foreman_openscap/policy.rb +10 -73
  35. data/app/models/foreman_openscap/scap_content.rb +1 -0
  36. data/app/models/foreman_openscap/tailoring_file.rb +1 -0
  37. data/app/services/foreman_openscap/client_config/ansible.rb +39 -6
  38. data/app/services/foreman_openscap/client_config/base.rb +5 -1
  39. data/app/services/foreman_openscap/client_config/puppet.rb +2 -1
  40. data/app/services/foreman_openscap/config_name_service.rb +1 -1
  41. data/app/services/foreman_openscap/hostgroup_overrider.rb +2 -24
  42. data/app/services/foreman_openscap/hostgroup_overrider_common.rb +28 -0
  43. data/app/services/foreman_openscap/lookup_key_overrider.rb +30 -62
  44. data/app/services/foreman_openscap/lookup_key_overrides_common.rb +63 -0
  45. data/app/services/foreman_openscap/oval/check_collection.rb +45 -0
  46. data/app/services/foreman_openscap/oval/configure.rb +80 -0
  47. data/app/services/foreman_openscap/oval/cves.rb +41 -0
  48. data/app/services/foreman_openscap/oval/setup.rb +93 -0
  49. data/app/services/foreman_openscap/oval/setup_check.rb +55 -0
  50. data/app/services/foreman_openscap/oval/sync_oval_contents.rb +42 -0
  51. data/app/views/api/v2/compliance/oval_contents/base.json.rabl +6 -0
  52. data/app/views/api/v2/compliance/oval_contents/create.json.rabl +3 -0
  53. data/app/views/api/v2/compliance/oval_contents/destroy.json.rabl +3 -0
  54. data/app/views/api/v2/compliance/oval_contents/index.json.rabl +3 -0
  55. data/app/views/api/v2/compliance/oval_contents/show.json.rabl +3 -0
  56. data/app/views/api/v2/compliance/oval_contents/sync.json.rabl +3 -0
  57. data/app/views/api/v2/compliance/oval_contents/sync_result.json.rabl +11 -0
  58. data/app/views/api/v2/compliance/oval_contents/update.json.rabl +3 -0
  59. data/app/views/api/v2/compliance/oval_policies/create.json.rabl +3 -0
  60. data/app/views/api/v2/compliance/oval_policies/index.json.rabl +3 -0
  61. data/app/views/api/v2/compliance/oval_policies/main.json.rabl +15 -0
  62. data/app/views/api/v2/compliance/oval_policies/show.json.rabl +3 -0
  63. data/app/views/api/v2/compliance/policies/base.json.rabl +2 -2
  64. data/app/views/api/v2/compliance/policies_common/_attrs.json.rabl +2 -0
  65. data/app/views/arf_reports/_output.html.erb +9 -1
  66. data/app/views/arf_reports/show.html.erb +1 -1
  67. data/app/views/arf_reports/show_html.html.erb +1 -0
  68. data/app/views/compliance_hosts/show.html.erb +1 -8
  69. data/app/views/job_templates/run_oval_scans.erb +24 -0
  70. data/app/views/policies/edit.html.erb +3 -2
  71. data/app/views/policies/show.html.erb +3 -1
  72. data/app/views/policies/steps/_deployment_options_form.html.erb +2 -2
  73. data/app/views/scap_contents/edit.html.erb +2 -12
  74. data/app/views/tailoring_files/edit.html.erb +2 -10
  75. data/config/initializers/inflections.rb +12 -0
  76. data/config/routes.rb +19 -0
  77. data/db/migrate/20201019074925_create_oval_policy.rb +13 -0
  78. data/db/migrate/20201020113801_create_oval_facet.rb +14 -0
  79. data/db/migrate/20201021084109_create_hostgroup_oval_facet.rb +14 -0
  80. data/db/migrate/20201106080924_create_oval_content.rb +12 -0
  81. data/db/migrate/20201116110256_add_oval_content_to_oval_policy.rb +5 -0
  82. data/db/migrate/20201120080329_create_cves.rb +13 -0
  83. data/db/migrate/20201217130800_add_has_errata_to_cve.rb +8 -0
  84. data/db/migrate/20201217161511_add_url_to_oval_content.rb +5 -0
  85. data/db/migrate/20210409095625_add_oval_policy_reference_to_cve.rb +7 -0
  86. data/db/seeds.d/75-job_templates.rb +3 -2
  87. data/lib/foreman_openscap/bulk_upload.rb +2 -2
  88. data/lib/foreman_openscap/engine.rb +67 -9
  89. data/lib/foreman_openscap/version.rb +1 -1
  90. data/lib/tasks/foreman_openscap_tasks.rake +14 -9
  91. data/locale/de/LC_MESSAGES/foreman_openscap.mo +0 -0
  92. data/locale/de/foreman_openscap.edit.po +0 -0
  93. data/locale/de/foreman_openscap.po +215 -17
  94. data/locale/en_GB/LC_MESSAGES/foreman_openscap.mo +0 -0
  95. data/locale/en_GB/foreman_openscap.edit.po +0 -0
  96. data/locale/en_GB/foreman_openscap.po +213 -15
  97. data/locale/es/LC_MESSAGES/foreman_openscap.mo +0 -0
  98. data/locale/es/foreman_openscap.edit.po +0 -0
  99. data/locale/es/foreman_openscap.po +239 -41
  100. data/locale/foreman_openscap.pot +395 -112
  101. data/locale/fr/LC_MESSAGES/foreman_openscap.mo +0 -0
  102. data/locale/fr/foreman_openscap.edit.po +0 -0
  103. data/locale/fr/foreman_openscap.po +243 -45
  104. data/locale/gl/LC_MESSAGES/foreman_openscap.mo +0 -0
  105. data/locale/gl/foreman_openscap.edit.po +0 -0
  106. data/locale/gl/foreman_openscap.po +213 -15
  107. data/locale/it/LC_MESSAGES/foreman_openscap.mo +0 -0
  108. data/locale/it/foreman_openscap.edit.po +0 -0
  109. data/locale/it/foreman_openscap.po +213 -15
  110. data/locale/ja/LC_MESSAGES/foreman_openscap.mo +0 -0
  111. data/locale/ja/foreman_openscap.edit.po +0 -0
  112. data/locale/ja/foreman_openscap.po +262 -66
  113. data/locale/ko/LC_MESSAGES/foreman_openscap.mo +0 -0
  114. data/locale/ko/foreman_openscap.edit.po +0 -0
  115. data/locale/ko/foreman_openscap.po +214 -16
  116. data/locale/pt_BR/LC_MESSAGES/foreman_openscap.mo +0 -0
  117. data/locale/pt_BR/foreman_openscap.edit.po +0 -0
  118. data/locale/pt_BR/foreman_openscap.po +252 -54
  119. data/locale/ru/LC_MESSAGES/foreman_openscap.mo +0 -0
  120. data/locale/ru/foreman_openscap.edit.po +0 -0
  121. data/locale/ru/foreman_openscap.po +214 -16
  122. data/locale/sv_SE/LC_MESSAGES/foreman_openscap.mo +0 -0
  123. data/locale/sv_SE/foreman_openscap.edit.po +0 -0
  124. data/locale/sv_SE/foreman_openscap.po +213 -15
  125. data/locale/zh_CN/LC_MESSAGES/foreman_openscap.mo +0 -0
  126. data/locale/zh_CN/foreman_openscap.edit.po +0 -0
  127. data/locale/zh_CN/foreman_openscap.po +369 -169
  128. data/locale/zh_TW/LC_MESSAGES/foreman_openscap.mo +0 -0
  129. data/locale/zh_TW/foreman_openscap.edit.po +0 -0
  130. data/locale/zh_TW/foreman_openscap.po +214 -16
  131. data/package.json +48 -0
  132. data/test/factories/compliance_host_factory.rb +12 -0
  133. data/test/factories/oval_content_factory.rb +7 -0
  134. data/test/factories/oval_policy_factory.rb +9 -0
  135. data/test/files/oval_contents/ansible-2.9.oval.xml.bz2 +0 -0
  136. data/test/fixtures/cve_fixtures.rb +104 -0
  137. data/test/functional/api/v2/compliance/oval_contents_controller_test.rb +39 -0
  138. data/test/functional/api/v2/compliance/oval_policies_controller_test.rb +141 -0
  139. data/test/functional/api/v2/compliance/oval_reports_controller_test.rb +32 -0
  140. data/test/graphql/queries/oval_contents_query_test.rb +35 -0
  141. data/test/graphql/queries/oval_policies_query_test.rb +35 -0
  142. data/test/test_plugin_helper.rb +4 -0
  143. data/test/unit/oval_host_test.rb +45 -0
  144. data/test/unit/oval_policy_test.rb +133 -0
  145. data/test/unit/oval_status_test.rb +47 -0
  146. data/test/unit/services/oval/cves_test.rb +81 -0
  147. data/test/unit/services/oval/setup_test.rb +87 -0
  148. data/webpack/components/EmptyState.js +67 -0
  149. data/webpack/components/IndexLayout.js +35 -0
  150. data/webpack/components/IndexLayout.scss +3 -0
  151. data/webpack/components/IndexTable/IndexTableHelper.js +9 -0
  152. data/webpack/components/IndexTable/index.js +65 -0
  153. data/webpack/components/RuleSeverity/RuleSeverity.scss +3 -0
  154. data/webpack/components/RuleSeverity/RuleSeverity.test.js +13 -0
  155. data/webpack/components/RuleSeverity/__snapshots__/RuleSeverity.test.js.snap +41 -0
  156. data/webpack/components/RuleSeverity/i_severity-critical.svg +61 -0
  157. data/webpack/components/RuleSeverity/i_severity-high.svg +61 -0
  158. data/webpack/components/RuleSeverity/i_severity-low.svg +62 -0
  159. data/webpack/components/RuleSeverity/i_severity-med.svg +62 -0
  160. data/webpack/components/RuleSeverity/i_unknown.svg +33 -0
  161. data/webpack/components/RuleSeverity/index.js +33 -0
  162. data/webpack/components/withLoading.js +68 -0
  163. data/webpack/global_index.js +5 -0
  164. data/webpack/graphql/queries/cves.gql +18 -0
  165. data/webpack/graphql/queries/ovalContents.gql +11 -0
  166. data/webpack/graphql/queries/ovalPolicies.gql +12 -0
  167. data/webpack/graphql/queries/ovalPolicy.gql +21 -0
  168. data/webpack/helpers/commonHelper.js +1 -0
  169. data/webpack/helpers/globalIdHelper.js +13 -0
  170. data/webpack/helpers/pageParamsHelper.js +31 -0
  171. data/webpack/helpers/pathsHelper.js +22 -0
  172. data/webpack/helpers/tableHelper.js +9 -0
  173. data/webpack/index.js +8 -0
  174. data/webpack/routes/OvalContents/OvalContentsIndex/OvalContentsIndex.js +45 -0
  175. data/webpack/routes/OvalContents/OvalContentsIndex/OvalContentsTable.js +38 -0
  176. data/webpack/routes/OvalContents/OvalContentsIndex/__tests__/OvalContentsIndex.fixtures.js +106 -0
  177. data/webpack/routes/OvalContents/OvalContentsIndex/__tests__/OvalContentsIndex.test.js +75 -0
  178. data/webpack/routes/OvalContents/OvalContentsIndex/index.js +7 -0
  179. data/webpack/routes/OvalPolicies/OvalPoliciesIndex/OvalPoliciesIndex.js +46 -0
  180. data/webpack/routes/OvalPolicies/OvalPoliciesIndex/OvalPoliciesTable.js +44 -0
  181. data/webpack/routes/OvalPolicies/OvalPoliciesIndex/__tests__/OvalPoliciesIndex.fixtures.js +61 -0
  182. data/webpack/routes/OvalPolicies/OvalPoliciesIndex/__tests__/OvalPoliciesIndex.test.js +78 -0
  183. data/webpack/routes/OvalPolicies/OvalPoliciesIndex/index.js +7 -0
  184. data/webpack/routes/OvalPolicies/OvalPoliciesShow/CvesTab.js +48 -0
  185. data/webpack/routes/OvalPolicies/OvalPoliciesShow/CvesTable.js +63 -0
  186. data/webpack/routes/OvalPolicies/OvalPoliciesShow/OvalPoliciesShow.js +78 -0
  187. data/webpack/routes/OvalPolicies/OvalPoliciesShow/OvalPoliciesShowHelper.js +39 -0
  188. data/webpack/routes/OvalPolicies/OvalPoliciesShow/__tests__/OvalPoliciesShow.fixtures.js +78 -0
  189. data/webpack/routes/OvalPolicies/OvalPoliciesShow/__tests__/OvalPoliciesShow.test.js +112 -0
  190. data/webpack/routes/OvalPolicies/OvalPoliciesShow/index.js +35 -0
  191. data/webpack/routes/routes.js +28 -0
  192. data/webpack/testHelper.js +64 -0
  193. metadata +144 -3
@@ -1,3 +1,3 @@
1
1
  module ForemanOpenscap
2
- VERSION = "4.1.3".freeze
2
+ VERSION = "4.3.3".freeze
3
3
  end
@@ -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
- Rake::Task[:test].enhance do
94
- Rake::Task['test:foreman_openscap'].invoke
95
- end
96
-
97
- load 'tasks/jenkins.rake'
98
- if Rake::Task.task_defined?(:'jenkins:unit')
99
- Rake::Task["jenkins:unit"].enhance do
100
- Rake::Task['test:foreman_openscap'].invoke
101
- Rake::Task['foreman_openscap:rubocop'].invoke
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
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-03-02 20:59+0000\n"
15
- "Last-Translator: Crited <Alexander.Stoll@netways.de>\n"
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 Compliance Policy"
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 "Scap Contents"
672
- msgstr "SCAP-Inhalte"
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"