foreman_openscap 0.12.1 → 0.12.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.
- checksums.yaml +4 -4
- data/app/controllers/api/v2/compliance/arf_reports_controller.rb +6 -3
- data/lib/foreman_openscap/version.rb +1 -1
- data/locale/action_names.rb +4 -63
- data/locale/de/foreman_openscap.edit.po +106 -302
- data/locale/de/foreman_openscap.po +29 -176
- data/locale/en_GB/foreman_openscap.edit.po +106 -302
- data/locale/en_GB/foreman_openscap.po +29 -176
- data/locale/es/foreman_openscap.edit.po +106 -302
- data/locale/es/foreman_openscap.po +29 -176
- data/locale/foreman_openscap.pot +117 -308
- data/locale/fr/foreman_openscap.edit.po +106 -302
- data/locale/fr/foreman_openscap.po +29 -176
- data/locale/gl/foreman_openscap.edit.po +106 -302
- data/locale/gl/foreman_openscap.po +29 -176
- data/locale/it/foreman_openscap.edit.po +106 -302
- data/locale/it/foreman_openscap.po +29 -176
- data/locale/ja/foreman_openscap.edit.po +106 -302
- data/locale/ja/foreman_openscap.po +29 -176
- data/locale/ko/foreman_openscap.edit.po +106 -302
- data/locale/ko/foreman_openscap.po +29 -176
- data/locale/pt_BR/foreman_openscap.edit.po +106 -302
- data/locale/pt_BR/foreman_openscap.po +29 -176
- data/locale/ru/foreman_openscap.edit.po +106 -302
- data/locale/ru/foreman_openscap.po +29 -176
- data/locale/sv_SE/foreman_openscap.edit.po +106 -302
- data/locale/sv_SE/foreman_openscap.po +29 -176
- data/locale/zh_CN/foreman_openscap.edit.po +106 -302
- data/locale/zh_CN/foreman_openscap.po +29 -176
- data/locale/zh_TW/foreman_openscap.edit.po +106 -302
- data/locale/zh_TW/foreman_openscap.po +29 -176
- data/test/functional/api/v2/compliance/arf_reports_controller_test.rb +3 -2
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 68ebb67af05276344df2b968dcc482172cb9f271
|
|
4
|
+
data.tar.gz: f4227ecd033423eb6ddd9c29c8b6f55b2373e4eb
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f44b2f5af70b32745e65a61c51c2a6494b745baed976c15d1b9a3990a4acbf85db0478cc585fccdf3dde50bd4b62f6c8c0726547e851c52d29189e7870e38d30
|
|
7
|
+
data.tar.gz: 6804f4234a8096a67c9b532d8530aee4acc12f2ee6118d9b7dadf3654aca758e09151a0098b52bd7770d206226f16832ae8509743a9c8583afaad852e3e45698
|
|
@@ -76,9 +76,7 @@ module Api
|
|
|
76
76
|
private
|
|
77
77
|
|
|
78
78
|
def respond_for_report(arf_report)
|
|
79
|
-
if arf_report.
|
|
80
|
-
upload_fail(_("Policy with id %s not found.") % params[:policy_id])
|
|
81
|
-
elsif arf_report.new_record?
|
|
79
|
+
if arf_report.new_record?
|
|
82
80
|
upload_fail arf_report.errors.full_messages.to_sentence
|
|
83
81
|
else
|
|
84
82
|
render :json => { :result => :ok, :id => arf_report.id.to_s }
|
|
@@ -91,6 +89,11 @@ module Api
|
|
|
91
89
|
end
|
|
92
90
|
|
|
93
91
|
def find_resources_before_create
|
|
92
|
+
unless ForemanOpenscap::Policy.where(:id => params[:policy_id]).any?
|
|
93
|
+
upload_fail(_("Policy with id %s not found.") % params[:policy_id])
|
|
94
|
+
return
|
|
95
|
+
end
|
|
96
|
+
|
|
94
97
|
@asset = ForemanOpenscap::Helper::get_asset(params[:cname], params[:policy_id])
|
|
95
98
|
|
|
96
99
|
unless @asset
|
data/locale/action_names.rb
CHANGED
|
@@ -1,69 +1,10 @@
|
|
|
1
1
|
# Autogenerated!
|
|
2
|
-
_("Action with sub plans")
|
|
3
|
-
_("Import facts")
|
|
4
2
|
_("Import Puppet classes")
|
|
5
3
|
_("Remote action:")
|
|
6
|
-
_("
|
|
7
|
-
_("
|
|
4
|
+
_("Action with sub plans")
|
|
5
|
+
_("Import facts")
|
|
8
6
|
_("Delete host")
|
|
9
7
|
_("Update host")
|
|
10
8
|
_("Update node")
|
|
11
|
-
_("
|
|
12
|
-
_("
|
|
13
|
-
_("Delete Activation Key")
|
|
14
|
-
_("Update")
|
|
15
|
-
_("Configure capsule")
|
|
16
|
-
_("Create repos")
|
|
17
|
-
_("Synchronize smart proxy")
|
|
18
|
-
_("Delete")
|
|
19
|
-
_("Errata mail")
|
|
20
|
-
_("Incremental Update of Content View Version(s) ")
|
|
21
|
-
_("Promote")
|
|
22
|
-
_("Promotion to Environment")
|
|
23
|
-
_("Publish")
|
|
24
|
-
_("Remove Versions and Associations")
|
|
25
|
-
_("Remove from Environment")
|
|
26
|
-
_("Remove Version")
|
|
27
|
-
_("Export")
|
|
28
|
-
_("Fetch pxe files")
|
|
29
|
-
_("Filtered index content")
|
|
30
|
-
_("Upload into")
|
|
31
|
-
_("Index content")
|
|
32
|
-
_("Index errata")
|
|
33
|
-
_("Index module streams")
|
|
34
|
-
_("Index package groups")
|
|
35
|
-
_("Remove Content")
|
|
36
|
-
_("Synchronize")
|
|
37
|
-
_("Upload errata into")
|
|
38
|
-
_("Create Package Group")
|
|
39
|
-
_("Disable")
|
|
40
|
-
_("Enable")
|
|
41
|
-
_("Run Sync Plan")
|
|
42
|
-
_("Incremental Update")
|
|
43
|
-
_("Republish Version Repositories")
|
|
44
|
-
_("Delete Lifecycle Environment")
|
|
45
|
-
_("Publish Lifecycle Environment Repositories")
|
|
46
|
-
_("Attach subscriptions")
|
|
47
|
-
_("Auto attach subscriptions")
|
|
48
|
-
_("Destroy Content Host")
|
|
49
|
-
_("Install Applicable Errata")
|
|
50
|
-
_("Install erratum")
|
|
51
|
-
_("Hypervisors")
|
|
52
|
-
_("Hypervisors update")
|
|
53
|
-
_("Install package")
|
|
54
|
-
_("Install package group")
|
|
55
|
-
_("Remove package")
|
|
56
|
-
_("Update package")
|
|
57
|
-
_("Remove package group")
|
|
58
|
-
_("Remove subscriptions")
|
|
59
|
-
_("Update for host")
|
|
60
|
-
_("Update Content Overrides")
|
|
61
|
-
_("Update release version for host")
|
|
62
|
-
_("Package Profile Update")
|
|
63
|
-
_("Auto-attach subscriptions")
|
|
64
|
-
_("Destroy")
|
|
65
|
-
_("Product Create")
|
|
66
|
-
_("Delete Product")
|
|
67
|
-
_("Reindex subscriptions")
|
|
68
|
-
_("Delete Package Group")
|
|
69
|
-
_("Report")
|
|
9
|
+
_("Create client")
|
|
10
|
+
_("Delete client")
|
|
@@ -41,11 +41,19 @@ msgstr ""
|
|
|
41
41
|
msgid "Download ARF report in HTML"
|
|
42
42
|
msgstr ""
|
|
43
43
|
|
|
44
|
-
#: ../app/controllers/api/v2/compliance/arf_reports_controller.rb:
|
|
44
|
+
#: ../app/controllers/api/v2/compliance/arf_reports_controller.rb:93
|
|
45
|
+
msgid "Policy with id %s not found."
|
|
46
|
+
msgstr ""
|
|
47
|
+
|
|
48
|
+
#: ../app/controllers/api/v2/compliance/arf_reports_controller.rb:100
|
|
49
|
+
msgid "Could not find host identified by: %s"
|
|
50
|
+
msgstr ""
|
|
51
|
+
|
|
52
|
+
#: ../app/controllers/api/v2/compliance/arf_reports_controller.rb:105
|
|
45
53
|
msgid "Failed to upload Arf Report, OpenSCAP proxy name or url not found in params when uploading for %s and host is missing openscap_proxy"
|
|
46
54
|
msgstr ""
|
|
47
55
|
|
|
48
|
-
#: ../app/controllers/api/v2/compliance/arf_reports_controller.rb:
|
|
56
|
+
#: ../app/controllers/api/v2/compliance/arf_reports_controller.rb:117
|
|
49
57
|
msgid "No proxy found for %{name} or %{url}"
|
|
50
58
|
msgstr ""
|
|
51
59
|
|
|
@@ -105,27 +113,31 @@ msgstr ""
|
|
|
105
113
|
msgid "Tailoring file profile ID"
|
|
106
114
|
msgstr ""
|
|
107
115
|
|
|
108
|
-
#: ../app/controllers/api/v2/compliance/policies_controller.rb:
|
|
116
|
+
#: ../app/controllers/api/v2/compliance/policies_controller.rb:52
|
|
117
|
+
msgid "How the policy should be deployed"
|
|
118
|
+
msgstr ""
|
|
119
|
+
|
|
120
|
+
#: ../app/controllers/api/v2/compliance/policies_controller.rb:57
|
|
109
121
|
msgid "Create a Policy"
|
|
110
122
|
msgstr ""
|
|
111
123
|
|
|
112
|
-
#: ../app/controllers/api/v2/compliance/policies_controller.rb:
|
|
124
|
+
#: ../app/controllers/api/v2/compliance/policies_controller.rb:66
|
|
113
125
|
msgid "Update a Policy"
|
|
114
126
|
msgstr ""
|
|
115
127
|
|
|
116
|
-
#: ../app/controllers/api/v2/compliance/policies_controller.rb:
|
|
128
|
+
#: ../app/controllers/api/v2/compliance/policies_controller.rb:74
|
|
117
129
|
msgid "Delete a Policy"
|
|
118
130
|
msgstr ""
|
|
119
131
|
|
|
120
|
-
#: ../app/controllers/api/v2/compliance/policies_controller.rb:
|
|
132
|
+
#: ../app/controllers/api/v2/compliance/policies_controller.rb:81
|
|
121
133
|
msgid "Show a policy's SCAP content"
|
|
122
134
|
msgstr ""
|
|
123
135
|
|
|
124
|
-
#: ../app/controllers/api/v2/compliance/policies_controller.rb:
|
|
136
|
+
#: ../app/controllers/api/v2/compliance/policies_controller.rb:91
|
|
125
137
|
msgid "Show a policy's Tailoring file"
|
|
126
138
|
msgstr ""
|
|
127
139
|
|
|
128
|
-
#: ../app/controllers/api/v2/compliance/policies_controller.rb:
|
|
140
|
+
#: ../app/controllers/api/v2/compliance/policies_controller.rb:101
|
|
129
141
|
msgid "No Tailoring file assigned for policy with id %s"
|
|
130
142
|
msgstr ""
|
|
131
143
|
|
|
@@ -241,31 +253,31 @@ msgstr ""
|
|
|
241
253
|
msgid "No OpenSCAP Proxy selected."
|
|
242
254
|
msgstr ""
|
|
243
255
|
|
|
244
|
-
#: ../app/controllers/policies_controller.rb:
|
|
256
|
+
#: ../app/controllers/policies_controller.rb:84
|
|
245
257
|
msgid "Updated hosts: Assigned with compliance policy: %s"
|
|
246
258
|
msgstr ""
|
|
247
259
|
|
|
248
|
-
#: ../app/controllers/policies_controller.rb:
|
|
260
|
+
#: ../app/controllers/policies_controller.rb:88
|
|
249
261
|
msgid "No compliance policy selected."
|
|
250
262
|
msgstr ""
|
|
251
263
|
|
|
252
|
-
#: ../app/controllers/policies_controller.rb:
|
|
264
|
+
#: ../app/controllers/policies_controller.rb:100
|
|
253
265
|
msgid "Updated hosts: Unassigned from compliance policy '%s'"
|
|
254
266
|
msgstr ""
|
|
255
267
|
|
|
256
|
-
#: ../app/controllers/policies_controller.rb:
|
|
268
|
+
#: ../app/controllers/policies_controller.rb:102
|
|
257
269
|
msgid "No valid policy ID provided"
|
|
258
270
|
msgstr ""
|
|
259
271
|
|
|
260
|
-
#: ../app/controllers/policies_controller.rb:
|
|
272
|
+
#: ../app/controllers/policies_controller.rb:122
|
|
261
273
|
msgid "No hosts were found."
|
|
262
274
|
msgstr ""
|
|
263
275
|
|
|
264
|
-
#: ../app/controllers/policies_controller.rb:
|
|
276
|
+
#: ../app/controllers/policies_controller.rb:126
|
|
265
277
|
msgid "No hosts selected"
|
|
266
278
|
msgstr ""
|
|
267
279
|
|
|
268
|
-
#: ../app/controllers/policies_controller.rb:
|
|
280
|
+
#: ../app/controllers/policies_controller.rb:131
|
|
269
281
|
msgid "Something went wrong while selecting hosts - %s"
|
|
270
282
|
msgstr ""
|
|
271
283
|
|
|
@@ -380,47 +392,51 @@ msgstr ""
|
|
|
380
392
|
msgid "Host is deleted"
|
|
381
393
|
msgstr ""
|
|
382
394
|
|
|
383
|
-
#: ../app/helpers/
|
|
395
|
+
#: ../app/helpers/foreman_openscap_helper.rb:2
|
|
396
|
+
msgid "documentation"
|
|
397
|
+
msgstr ""
|
|
398
|
+
|
|
399
|
+
#: ../app/helpers/policies_helper.rb:56
|
|
384
400
|
msgid "Choose existing SCAP Content"
|
|
385
401
|
msgstr ""
|
|
386
402
|
|
|
387
|
-
#: ../app/helpers/policies_helper.rb:
|
|
403
|
+
#: ../app/helpers/policies_helper.rb:57 ../app/helpers/policies_helper.rb:62 ../app/models/foreman_openscap/policy.rb:100 ../app/views/policies/_form.html.erb:10 ../app/views/scap_contents/welcome.html.erb:1 ../app/views/scap_contents/welcome.html.erb:6
|
|
388
404
|
msgid "SCAP Content"
|
|
389
405
|
msgstr ""
|
|
390
406
|
|
|
391
|
-
#: ../app/helpers/policies_helper.rb:
|
|
407
|
+
#: ../app/helpers/policies_helper.rb:72 ../app/helpers/policies_helper.rb:79
|
|
392
408
|
msgid "XCCDF Profile"
|
|
393
409
|
msgstr ""
|
|
394
410
|
|
|
395
|
-
#: ../app/helpers/policies_helper.rb:
|
|
411
|
+
#: ../app/helpers/policies_helper.rb:78
|
|
396
412
|
msgid "Default XCCDF profile"
|
|
397
413
|
msgstr ""
|
|
398
414
|
|
|
399
|
-
#: ../app/helpers/policies_helper.rb:
|
|
415
|
+
#: ../app/helpers/policies_helper.rb:87
|
|
400
416
|
msgid "Choose Tailoring File"
|
|
401
417
|
msgstr ""
|
|
402
418
|
|
|
403
|
-
#: ../app/helpers/policies_helper.rb:
|
|
419
|
+
#: ../app/helpers/policies_helper.rb:88 ../app/views/policies/_list.html.erb:6
|
|
404
420
|
msgid "Tailoring File"
|
|
405
421
|
msgstr ""
|
|
406
422
|
|
|
407
|
-
#: ../app/helpers/policies_helper.rb:
|
|
423
|
+
#: ../app/helpers/policies_helper.rb:97
|
|
408
424
|
msgid "XCCDF Profile in Tailoring File"
|
|
409
425
|
msgstr ""
|
|
410
426
|
|
|
411
|
-
#: ../app/helpers/policies_helper.rb:
|
|
427
|
+
#: ../app/helpers/policies_helper.rb:98
|
|
412
428
|
msgid "This profile will be used to override the one from scap content"
|
|
413
429
|
msgstr ""
|
|
414
430
|
|
|
415
|
-
#: ../app/helpers/policies_helper.rb:
|
|
431
|
+
#: ../app/helpers/policies_helper.rb:109 ../app/views/arf_reports/_list.html.erb:53
|
|
416
432
|
msgid "Submit"
|
|
417
433
|
msgstr ""
|
|
418
434
|
|
|
419
|
-
#: ../app/helpers/policies_helper.rb:
|
|
435
|
+
#: ../app/helpers/policies_helper.rb:114 ../app/views/arf_reports/_list.html.erb:52
|
|
420
436
|
msgid "Cancel"
|
|
421
437
|
msgstr ""
|
|
422
438
|
|
|
423
|
-
#: ../app/helpers/policies_helper.rb:
|
|
439
|
+
#: ../app/helpers/policies_helper.rb:145 ../lib/foreman_openscap/engine.rb:138
|
|
424
440
|
msgid "Policies"
|
|
425
441
|
msgstr ""
|
|
426
442
|
|
|
@@ -472,14 +488,10 @@ msgstr ""
|
|
|
472
488
|
msgid "is not included in SCAP_RESULT"
|
|
473
489
|
msgstr ""
|
|
474
490
|
|
|
475
|
-
#: ../app/models/concerns/foreman_openscap/openscap_proxy_core_extensions.rb:
|
|
491
|
+
#: ../app/models/concerns/foreman_openscap/openscap_proxy_core_extensions.rb:68
|
|
476
492
|
msgid "must have Openscap feature"
|
|
477
493
|
msgstr ""
|
|
478
494
|
|
|
479
|
-
#: ../app/models/concerns/foreman_openscap/openscap_proxy_core_extensions.rb:71
|
|
480
|
-
msgid "Puppet class 'foreman_scap_client' not found, make sure it is imported from Puppet master"
|
|
481
|
-
msgstr ""
|
|
482
|
-
|
|
483
495
|
#: ../app/models/concerns/foreman_openscap/openscap_proxy_extensions.rb:8
|
|
484
496
|
msgid "No OpenSCAP proxy found for %{class} with id %{id}"
|
|
485
497
|
msgstr ""
|
|
@@ -500,7 +512,7 @@ msgstr ""
|
|
|
500
512
|
msgid "Unknown Compliance status"
|
|
501
513
|
msgstr ""
|
|
502
514
|
|
|
503
|
-
#: ../app/models/foreman_openscap/policy.rb:
|
|
515
|
+
#: ../app/models/foreman_openscap/policy.rb:27 ../app/models/foreman_openscap/policy.rb:265
|
|
504
516
|
msgid "is not a valid value"
|
|
505
517
|
msgstr ""
|
|
506
518
|
|
|
@@ -512,19 +524,23 @@ msgstr ""
|
|
|
512
524
|
msgid "Cannot generate HTML guide, no valid OpenSCAP proxy server found."
|
|
513
525
|
msgstr ""
|
|
514
526
|
|
|
527
|
+
#: ../app/models/foreman_openscap/policy.rb:100 ../app/views/policies/_form.html.erb:8
|
|
528
|
+
msgid "Deployment Options"
|
|
529
|
+
msgstr ""
|
|
530
|
+
|
|
515
531
|
#: ../app/models/foreman_openscap/policy.rb:100
|
|
516
|
-
msgid "
|
|
532
|
+
msgid "Policy Attributes"
|
|
517
533
|
msgstr ""
|
|
518
534
|
|
|
519
|
-
#: ../app/models/foreman_openscap/policy.rb:100 ../app/views/policies/_form.html.erb:
|
|
535
|
+
#: ../app/models/foreman_openscap/policy.rb:100 ../app/views/policies/_form.html.erb:11
|
|
520
536
|
msgid "Schedule"
|
|
521
537
|
msgstr ""
|
|
522
538
|
|
|
523
|
-
#: ../app/models/foreman_openscap/policy.rb:101 ../app/views/policies/_form.html.erb:
|
|
539
|
+
#: ../app/models/foreman_openscap/policy.rb:101 ../app/views/policies/_form.html.erb:13 ../app/views/scap_contents/_form.html.erb:11 ../app/views/tailoring_files/_form.html.erb:11
|
|
524
540
|
msgid "Locations"
|
|
525
541
|
msgstr ""
|
|
526
542
|
|
|
527
|
-
#: ../app/models/foreman_openscap/policy.rb:102 ../app/views/policies/_form.html.erb:
|
|
543
|
+
#: ../app/models/foreman_openscap/policy.rb:102 ../app/views/policies/_form.html.erb:16 ../app/views/scap_contents/_form.html.erb:14 ../app/views/tailoring_files/_form.html.erb:14
|
|
528
544
|
msgid "Organizations"
|
|
529
545
|
msgstr ""
|
|
530
546
|
|
|
@@ -532,39 +548,27 @@ msgstr ""
|
|
|
532
548
|
msgid "Hostgroups"
|
|
533
549
|
msgstr ""
|
|
534
550
|
|
|
535
|
-
#: ../app/models/foreman_openscap/policy.rb:
|
|
536
|
-
msgid "Required Puppet class %{class} is not found, please ensure it imported first."
|
|
537
|
-
msgstr ""
|
|
538
|
-
|
|
539
|
-
#: ../app/models/foreman_openscap/policy.rb:277
|
|
540
|
-
msgid "Puppet class %{class} does not have %{parameter} class parameter."
|
|
541
|
-
msgstr ""
|
|
542
|
-
|
|
543
|
-
#: ../app/models/foreman_openscap/policy.rb:286
|
|
544
|
-
msgid "%{parameter} class parameter for class %{class} could not be configured."
|
|
545
|
-
msgstr ""
|
|
546
|
-
|
|
547
|
-
#: ../app/models/foreman_openscap/policy.rb:298
|
|
551
|
+
#: ../app/models/foreman_openscap/policy.rb:259
|
|
548
552
|
msgid "does not consist of 5 parts separated by space"
|
|
549
553
|
msgstr ""
|
|
550
554
|
|
|
551
|
-
#: ../app/models/foreman_openscap/policy.rb:
|
|
555
|
+
#: ../app/models/foreman_openscap/policy.rb:271
|
|
552
556
|
msgid "must be between 1 and 31"
|
|
553
557
|
msgstr ""
|
|
554
558
|
|
|
555
|
-
#: ../app/models/foreman_openscap/policy.rb:
|
|
559
|
+
#: ../app/models/foreman_openscap/policy.rb:276
|
|
556
560
|
msgid "must be present when tailoring file profile present"
|
|
557
561
|
msgstr ""
|
|
558
562
|
|
|
559
|
-
#: ../app/models/foreman_openscap/policy.rb:
|
|
563
|
+
#: ../app/models/foreman_openscap/policy.rb:277
|
|
560
564
|
msgid "must be present when tailoring file present"
|
|
561
565
|
msgstr ""
|
|
562
566
|
|
|
563
|
-
#: ../app/models/foreman_openscap/policy.rb:
|
|
567
|
+
#: ../app/models/foreman_openscap/policy.rb:282
|
|
564
568
|
msgid "does not come from selected tailoring file"
|
|
565
569
|
msgstr ""
|
|
566
570
|
|
|
567
|
-
#: ../app/models/foreman_openscap/policy.rb:
|
|
571
|
+
#: ../app/models/foreman_openscap/policy.rb:288
|
|
568
572
|
msgid "does not have the selected SCAP content profile"
|
|
569
573
|
msgstr ""
|
|
570
574
|
|
|
@@ -572,6 +576,38 @@ msgstr ""
|
|
|
572
576
|
msgid "invalid type %s"
|
|
573
577
|
msgstr ""
|
|
574
578
|
|
|
579
|
+
#: ../app/services/foreman_openscap/client_config/ansible.rb:32
|
|
580
|
+
msgid "Ansible role"
|
|
581
|
+
msgstr ""
|
|
582
|
+
|
|
583
|
+
#: ../app/services/foreman_openscap/client_config/ansible.rb:33
|
|
584
|
+
msgid "Ansible variables"
|
|
585
|
+
msgstr ""
|
|
586
|
+
|
|
587
|
+
#: ../app/services/foreman_openscap/client_config/puppet.rb:32
|
|
588
|
+
msgid "Puppet class"
|
|
589
|
+
msgstr ""
|
|
590
|
+
|
|
591
|
+
#: ../app/services/foreman_openscap/client_config/puppet.rb:33
|
|
592
|
+
msgid "Smart Class Parameters"
|
|
593
|
+
msgstr ""
|
|
594
|
+
|
|
595
|
+
#: ../app/services/foreman_openscap/lookup_key_overrider.rb:13
|
|
596
|
+
msgid "%{type} was selected to deploy policy to clients, but %{type} is not available. Are you missing a plugin?"
|
|
597
|
+
msgstr ""
|
|
598
|
+
|
|
599
|
+
#: ../app/services/foreman_openscap/lookup_key_overrider.rb:27
|
|
600
|
+
msgid "Required %{msg_name} %{class} was not found, please ensure it is imported first."
|
|
601
|
+
msgstr ""
|
|
602
|
+
|
|
603
|
+
#: ../app/services/foreman_openscap/lookup_key_overrider.rb:57
|
|
604
|
+
msgid "The following %{key_name} were missing for %{item_name}: %{key_names}. Make sure they are imported before proceeding."
|
|
605
|
+
msgstr ""
|
|
606
|
+
|
|
607
|
+
#: ../app/services/foreman_openscap/lookup_key_overrider.rb:89
|
|
608
|
+
msgid "Failed to save when overriding parameters for %{config_tool}, cause: %{errors}"
|
|
609
|
+
msgstr ""
|
|
610
|
+
|
|
575
611
|
#: ../app/services/foreman_openscap/openscap_proxy_version_check.rb:39
|
|
576
612
|
msgid "This feature is temporarily disabled. "
|
|
577
613
|
msgstr ""
|
|
@@ -696,7 +732,7 @@ msgstr ""
|
|
|
696
732
|
msgid "Host"
|
|
697
733
|
msgstr ""
|
|
698
734
|
|
|
699
|
-
#: ../app/views/arf_reports/delete_multiple.html.erb:27
|
|
735
|
+
#: ../app/views/arf_reports/delete_multiple.html.erb:27
|
|
700
736
|
msgid "Delete"
|
|
701
737
|
msgstr ""
|
|
702
738
|
|
|
@@ -848,27 +884,27 @@ msgstr ""
|
|
|
848
884
|
msgid "Select OpenSCAP Proxy"
|
|
849
885
|
msgstr ""
|
|
850
886
|
|
|
851
|
-
#: ../app/views/policies/_form.html.erb:
|
|
887
|
+
#: ../app/views/policies/_form.html.erb:9
|
|
852
888
|
msgid "General"
|
|
853
889
|
msgstr ""
|
|
854
890
|
|
|
855
|
-
#: ../app/views/policies/_form.html.erb:
|
|
891
|
+
#: ../app/views/policies/_form.html.erb:18
|
|
856
892
|
msgid "Host Groups"
|
|
857
893
|
msgstr ""
|
|
858
894
|
|
|
859
|
-
#: ../app/views/policies/_form.html.erb:
|
|
895
|
+
#: ../app/views/policies/_form.html.erb:45 ../app/views/policies/steps/_schedule_form.html.erb:6
|
|
860
896
|
msgid "Choose period"
|
|
861
897
|
msgstr ""
|
|
862
898
|
|
|
863
|
-
#: ../app/views/policies/_form.html.erb:
|
|
899
|
+
#: ../app/views/policies/_form.html.erb:47 ../app/views/policies/steps/_schedule_form.html.erb:8
|
|
864
900
|
msgid "Choose weekday"
|
|
865
901
|
msgstr ""
|
|
866
902
|
|
|
867
|
-
#: ../app/views/policies/_form.html.erb:
|
|
903
|
+
#: ../app/views/policies/_form.html.erb:48 ../app/views/policies/steps/_schedule_form.html.erb:9
|
|
868
904
|
msgid "Number of a day in month, note that not all months have same count of days"
|
|
869
905
|
msgstr ""
|
|
870
906
|
|
|
871
|
-
#: ../app/views/policies/_form.html.erb:
|
|
907
|
+
#: ../app/views/policies/_form.html.erb:49 ../app/views/policies/steps/_schedule_form.html.erb:10
|
|
872
908
|
msgid "You can specify custom cron line, e.g. \"0 3 * * *\", separate each of 5 values by space"
|
|
873
909
|
msgstr ""
|
|
874
910
|
|
|
@@ -1151,269 +1187,37 @@ msgid "Run OpenSCAP scan"
|
|
|
1151
1187
|
msgstr ""
|
|
1152
1188
|
|
|
1153
1189
|
#: action_names.rb:2
|
|
1154
|
-
msgid "
|
|
1190
|
+
msgid "Import Puppet classes"
|
|
1155
1191
|
msgstr ""
|
|
1156
1192
|
|
|
1157
1193
|
#: action_names.rb:3
|
|
1158
|
-
msgid "
|
|
1194
|
+
msgid "Remote action:"
|
|
1159
1195
|
msgstr ""
|
|
1160
1196
|
|
|
1161
1197
|
#: action_names.rb:4
|
|
1162
|
-
msgid "
|
|
1198
|
+
msgid "Action with sub plans"
|
|
1163
1199
|
msgstr ""
|
|
1164
1200
|
|
|
1165
1201
|
#: action_names.rb:5
|
|
1166
|
-
msgid "
|
|
1202
|
+
msgid "Import facts"
|
|
1167
1203
|
msgstr ""
|
|
1168
1204
|
|
|
1169
1205
|
#: action_names.rb:6
|
|
1170
|
-
msgid "
|
|
1206
|
+
msgid "Delete host"
|
|
1171
1207
|
msgstr ""
|
|
1172
1208
|
|
|
1173
1209
|
#: action_names.rb:7
|
|
1174
|
-
msgid "
|
|
1210
|
+
msgid "Update host"
|
|
1175
1211
|
msgstr ""
|
|
1176
1212
|
|
|
1177
1213
|
#: action_names.rb:8
|
|
1178
|
-
msgid "
|
|
1214
|
+
msgid "Update node"
|
|
1179
1215
|
msgstr ""
|
|
1180
1216
|
|
|
1181
1217
|
#: action_names.rb:9
|
|
1182
|
-
msgid "
|
|
1218
|
+
msgid "Create client"
|
|
1183
1219
|
msgstr ""
|
|
1184
1220
|
|
|
1185
1221
|
#: action_names.rb:10
|
|
1186
|
-
msgid "
|
|
1187
|
-
msgstr ""
|
|
1188
|
-
|
|
1189
|
-
#: action_names.rb:11
|
|
1190
|
-
msgid "Abstract async task"
|
|
1191
|
-
msgstr ""
|
|
1192
|
-
|
|
1193
|
-
#: action_names.rb:12
|
|
1194
|
-
msgid "Create"
|
|
1195
|
-
msgstr ""
|
|
1196
|
-
|
|
1197
|
-
#: action_names.rb:13
|
|
1198
|
-
msgid "Delete Activation Key"
|
|
1199
|
-
msgstr ""
|
|
1200
|
-
|
|
1201
|
-
#: action_names.rb:14
|
|
1202
|
-
msgid "Update"
|
|
1203
|
-
msgstr ""
|
|
1204
|
-
|
|
1205
|
-
#: action_names.rb:15
|
|
1206
|
-
msgid "Configure capsule"
|
|
1207
|
-
msgstr ""
|
|
1208
|
-
|
|
1209
|
-
#: action_names.rb:16
|
|
1210
|
-
msgid "Create repos"
|
|
1211
|
-
msgstr ""
|
|
1212
|
-
|
|
1213
|
-
#: action_names.rb:17
|
|
1214
|
-
msgid "Synchronize smart proxy"
|
|
1215
|
-
msgstr ""
|
|
1216
|
-
|
|
1217
|
-
#: action_names.rb:19
|
|
1218
|
-
msgid "Errata mail"
|
|
1219
|
-
msgstr ""
|
|
1220
|
-
|
|
1221
|
-
#: action_names.rb:20
|
|
1222
|
-
msgid "Incremental Update of Content View Version(s) "
|
|
1223
|
-
msgstr ""
|
|
1224
|
-
|
|
1225
|
-
#: action_names.rb:21
|
|
1226
|
-
msgid "Promote"
|
|
1227
|
-
msgstr ""
|
|
1228
|
-
|
|
1229
|
-
#: action_names.rb:22
|
|
1230
|
-
msgid "Promotion to Environment"
|
|
1231
|
-
msgstr ""
|
|
1232
|
-
|
|
1233
|
-
#: action_names.rb:23
|
|
1234
|
-
msgid "Publish"
|
|
1235
|
-
msgstr ""
|
|
1236
|
-
|
|
1237
|
-
#: action_names.rb:24
|
|
1238
|
-
msgid "Remove Versions and Associations"
|
|
1239
|
-
msgstr ""
|
|
1240
|
-
|
|
1241
|
-
#: action_names.rb:25
|
|
1242
|
-
msgid "Remove from Environment"
|
|
1243
|
-
msgstr ""
|
|
1244
|
-
|
|
1245
|
-
#: action_names.rb:26
|
|
1246
|
-
msgid "Remove Version"
|
|
1247
|
-
msgstr ""
|
|
1248
|
-
|
|
1249
|
-
#: action_names.rb:27
|
|
1250
|
-
msgid "Export"
|
|
1251
|
-
msgstr ""
|
|
1252
|
-
|
|
1253
|
-
#: action_names.rb:28
|
|
1254
|
-
msgid "Fetch pxe files"
|
|
1255
|
-
msgstr ""
|
|
1256
|
-
|
|
1257
|
-
#: action_names.rb:29
|
|
1258
|
-
msgid "Filtered index content"
|
|
1259
|
-
msgstr ""
|
|
1260
|
-
|
|
1261
|
-
#: action_names.rb:30
|
|
1262
|
-
msgid "Upload into"
|
|
1263
|
-
msgstr ""
|
|
1264
|
-
|
|
1265
|
-
#: action_names.rb:31
|
|
1266
|
-
msgid "Index content"
|
|
1267
|
-
msgstr ""
|
|
1268
|
-
|
|
1269
|
-
#: action_names.rb:32
|
|
1270
|
-
msgid "Index errata"
|
|
1271
|
-
msgstr ""
|
|
1272
|
-
|
|
1273
|
-
#: action_names.rb:33
|
|
1274
|
-
msgid "Index module streams"
|
|
1275
|
-
msgstr ""
|
|
1276
|
-
|
|
1277
|
-
#: action_names.rb:34
|
|
1278
|
-
msgid "Index package groups"
|
|
1279
|
-
msgstr ""
|
|
1280
|
-
|
|
1281
|
-
#: action_names.rb:35
|
|
1282
|
-
msgid "Remove Content"
|
|
1283
|
-
msgstr ""
|
|
1284
|
-
|
|
1285
|
-
#: action_names.rb:36
|
|
1286
|
-
msgid "Synchronize"
|
|
1287
|
-
msgstr ""
|
|
1288
|
-
|
|
1289
|
-
#: action_names.rb:37
|
|
1290
|
-
msgid "Upload errata into"
|
|
1291
|
-
msgstr ""
|
|
1292
|
-
|
|
1293
|
-
#: action_names.rb:38
|
|
1294
|
-
msgid "Create Package Group"
|
|
1295
|
-
msgstr ""
|
|
1296
|
-
|
|
1297
|
-
#: action_names.rb:39
|
|
1298
|
-
msgid "Disable"
|
|
1299
|
-
msgstr ""
|
|
1300
|
-
|
|
1301
|
-
#: action_names.rb:40
|
|
1302
|
-
msgid "Enable"
|
|
1303
|
-
msgstr ""
|
|
1304
|
-
|
|
1305
|
-
#: action_names.rb:41
|
|
1306
|
-
msgid "Run Sync Plan"
|
|
1307
|
-
msgstr ""
|
|
1308
|
-
|
|
1309
|
-
#: action_names.rb:42
|
|
1310
|
-
msgid "Incremental Update"
|
|
1311
|
-
msgstr ""
|
|
1312
|
-
|
|
1313
|
-
#: action_names.rb:43
|
|
1314
|
-
msgid "Republish Version Repositories"
|
|
1315
|
-
msgstr ""
|
|
1316
|
-
|
|
1317
|
-
#: action_names.rb:44
|
|
1318
|
-
msgid "Delete Lifecycle Environment"
|
|
1319
|
-
msgstr ""
|
|
1320
|
-
|
|
1321
|
-
#: action_names.rb:45
|
|
1322
|
-
msgid "Publish Lifecycle Environment Repositories"
|
|
1323
|
-
msgstr ""
|
|
1324
|
-
|
|
1325
|
-
#: action_names.rb:46
|
|
1326
|
-
msgid "Attach subscriptions"
|
|
1327
|
-
msgstr ""
|
|
1328
|
-
|
|
1329
|
-
#: action_names.rb:47
|
|
1330
|
-
msgid "Auto attach subscriptions"
|
|
1331
|
-
msgstr ""
|
|
1332
|
-
|
|
1333
|
-
#: action_names.rb:48
|
|
1334
|
-
msgid "Destroy Content Host"
|
|
1335
|
-
msgstr ""
|
|
1336
|
-
|
|
1337
|
-
#: action_names.rb:49
|
|
1338
|
-
msgid "Install Applicable Errata"
|
|
1339
|
-
msgstr ""
|
|
1340
|
-
|
|
1341
|
-
#: action_names.rb:50
|
|
1342
|
-
msgid "Install erratum"
|
|
1343
|
-
msgstr ""
|
|
1344
|
-
|
|
1345
|
-
#: action_names.rb:51
|
|
1346
|
-
msgid "Hypervisors"
|
|
1347
|
-
msgstr ""
|
|
1348
|
-
|
|
1349
|
-
#: action_names.rb:52
|
|
1350
|
-
msgid "Hypervisors update"
|
|
1351
|
-
msgstr ""
|
|
1352
|
-
|
|
1353
|
-
#: action_names.rb:53
|
|
1354
|
-
msgid "Install package"
|
|
1355
|
-
msgstr ""
|
|
1356
|
-
|
|
1357
|
-
#: action_names.rb:54
|
|
1358
|
-
msgid "Install package group"
|
|
1359
|
-
msgstr ""
|
|
1360
|
-
|
|
1361
|
-
#: action_names.rb:55
|
|
1362
|
-
msgid "Remove package"
|
|
1363
|
-
msgstr ""
|
|
1364
|
-
|
|
1365
|
-
#: action_names.rb:56
|
|
1366
|
-
msgid "Update package"
|
|
1367
|
-
msgstr ""
|
|
1368
|
-
|
|
1369
|
-
#: action_names.rb:57
|
|
1370
|
-
msgid "Remove package group"
|
|
1371
|
-
msgstr ""
|
|
1372
|
-
|
|
1373
|
-
#: action_names.rb:58
|
|
1374
|
-
msgid "Remove subscriptions"
|
|
1375
|
-
msgstr ""
|
|
1376
|
-
|
|
1377
|
-
#: action_names.rb:59
|
|
1378
|
-
msgid "Update for host"
|
|
1379
|
-
msgstr ""
|
|
1380
|
-
|
|
1381
|
-
#: action_names.rb:60
|
|
1382
|
-
msgid "Update Content Overrides"
|
|
1383
|
-
msgstr ""
|
|
1384
|
-
|
|
1385
|
-
#: action_names.rb:61
|
|
1386
|
-
msgid "Update release version for host"
|
|
1387
|
-
msgstr ""
|
|
1388
|
-
|
|
1389
|
-
#: action_names.rb:62
|
|
1390
|
-
msgid "Package Profile Update"
|
|
1391
|
-
msgstr ""
|
|
1392
|
-
|
|
1393
|
-
#: action_names.rb:63
|
|
1394
|
-
msgid "Auto-attach subscriptions"
|
|
1395
|
-
msgstr ""
|
|
1396
|
-
|
|
1397
|
-
#: action_names.rb:64
|
|
1398
|
-
msgid "Destroy"
|
|
1399
|
-
msgstr ""
|
|
1400
|
-
|
|
1401
|
-
#: action_names.rb:65
|
|
1402
|
-
msgid "Product Create"
|
|
1403
|
-
msgstr ""
|
|
1404
|
-
|
|
1405
|
-
#: action_names.rb:66
|
|
1406
|
-
msgid "Delete Product"
|
|
1407
|
-
msgstr ""
|
|
1408
|
-
|
|
1409
|
-
#: action_names.rb:67
|
|
1410
|
-
msgid "Reindex subscriptions"
|
|
1411
|
-
msgstr ""
|
|
1412
|
-
|
|
1413
|
-
#: action_names.rb:68
|
|
1414
|
-
msgid "Delete Package Group"
|
|
1415
|
-
msgstr ""
|
|
1416
|
-
|
|
1417
|
-
#: action_names.rb:69
|
|
1418
|
-
msgid "Report"
|
|
1222
|
+
msgid "Delete client"
|
|
1419
1223
|
msgstr ""
|