foreman_remote_execution 11.1.0 → 11.1.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (43) hide show
  1. checksums.yaml +4 -4
  2. data/.packit.yaml +1 -1
  3. data/app/assets/javascripts/foreman_remote_execution/locale/de/foreman_remote_execution.js +1581 -1
  4. data/app/assets/javascripts/foreman_remote_execution/locale/en/foreman_remote_execution.js +1569 -1
  5. data/app/assets/javascripts/foreman_remote_execution/locale/en_GB/foreman_remote_execution.js +1569 -1
  6. data/app/assets/javascripts/foreman_remote_execution/locale/es/foreman_remote_execution.js +1585 -1
  7. data/app/assets/javascripts/foreman_remote_execution/locale/fr/foreman_remote_execution.js +1586 -1
  8. data/app/assets/javascripts/foreman_remote_execution/locale/ja/foreman_remote_execution.js +1582 -1
  9. data/app/assets/javascripts/foreman_remote_execution/locale/ko/foreman_remote_execution.js +1574 -1
  10. data/app/assets/javascripts/foreman_remote_execution/locale/pt_BR/foreman_remote_execution.js +1585 -1
  11. data/app/assets/javascripts/foreman_remote_execution/locale/ru/foreman_remote_execution.js +1577 -1
  12. data/app/assets/javascripts/foreman_remote_execution/locale/zh_CN/foreman_remote_execution.js +1582 -1
  13. data/app/assets/javascripts/foreman_remote_execution/locale/zh_TW/foreman_remote_execution.js +1575 -1
  14. data/app/controllers/ui_job_wizard_controller.rb +4 -1
  15. data/app/helpers/remote_execution_helper.rb +4 -5
  16. data/app/models/job_invocation_composer.rb +1 -0
  17. data/app/views/templates/script/convert2rhel_analyze.erb +4 -6
  18. data/lib/foreman_remote_execution/engine.rb +6 -2
  19. data/lib/foreman_remote_execution/version.rb +1 -1
  20. data/locale/action_names.rb +2 -0
  21. data/locale/de/LC_MESSAGES/foreman_remote_execution.mo +0 -0
  22. data/locale/de/foreman_remote_execution.po +53 -14
  23. data/locale/en/foreman_remote_execution.po +53 -14
  24. data/locale/en_GB/foreman_remote_execution.po +53 -14
  25. data/locale/es/LC_MESSAGES/foreman_remote_execution.mo +0 -0
  26. data/locale/es/foreman_remote_execution.po +54 -15
  27. data/locale/foreman_remote_execution.pot +190 -140
  28. data/locale/fr/LC_MESSAGES/foreman_remote_execution.mo +0 -0
  29. data/locale/fr/foreman_remote_execution.po +54 -15
  30. data/locale/ja/LC_MESSAGES/foreman_remote_execution.mo +0 -0
  31. data/locale/ja/foreman_remote_execution.po +54 -15
  32. data/locale/ko/LC_MESSAGES/foreman_remote_execution.mo +0 -0
  33. data/locale/ko/foreman_remote_execution.po +53 -14
  34. data/locale/pt_BR/LC_MESSAGES/foreman_remote_execution.mo +0 -0
  35. data/locale/pt_BR/foreman_remote_execution.po +54 -15
  36. data/locale/ru/LC_MESSAGES/foreman_remote_execution.mo +0 -0
  37. data/locale/ru/foreman_remote_execution.po +53 -14
  38. data/locale/zh_CN/LC_MESSAGES/foreman_remote_execution.mo +0 -0
  39. data/locale/zh_CN/foreman_remote_execution.po +54 -15
  40. data/locale/zh_TW/LC_MESSAGES/foreman_remote_execution.mo +0 -0
  41. data/locale/zh_TW/foreman_remote_execution.po +53 -14
  42. data/webpack/JobWizard/steps/HostsAndInputs/hostgroups.gql +1 -1
  43. metadata +2 -2
@@ -64,7 +64,10 @@ class UiJobWizardController < ApplicationController
64
64
  job = JobInvocation.authorized.find(params[:id])
65
65
  composer = JobInvocationComposer.from_job_invocation(job, params).params
66
66
  job_template_inputs = JobTemplate.authorized.find(composer[:template_invocations][0][:template_id]).template_inputs_with_foreign
67
- inputs = Hash[job_template_inputs.map { |input| ["inputs[#{input[:name]}]", {:advanced => input[:advanced], :value => (composer[:template_invocations][0][:input_values].find { |value| value[:template_input_id] == input[:id] }).try(:[], :value)}] }]
67
+ job_template_inputs_hash = Hash[job_template_inputs.map { |input| ["inputs[#{input[:name]}]", {:advanced => input[:advanced], :value => (composer[:template_invocations][0][:input_values].find { |value| value[:template_input_id] == input[:id] }).try(:[], :value)}] }]
68
+ provider_inputs = composer[:template_invocations][0][:provider_input_values]
69
+ provider_inputs_hash = Hash[provider_inputs.map { |input| ["inputs[#{input[:name]}]", {:advanced => true, :value => input[:value]}] }]
70
+ inputs = job_template_inputs_hash.merge(provider_inputs_hash)
68
71
  job_organization = Taxonomy.find_by(id: job.task.input[:current_organization_id])
69
72
  job_location = Taxonomy.find_by(id: job.task.input[:current_location_id])
70
73
  render :json => {
@@ -33,8 +33,7 @@ module RemoteExecutionHelper
33
33
  links << { title: _('Host detail'),
34
34
  action: { href: current_host_details_path(host), 'data-method': 'get', id: "#{host.name}-actions-detail" } }
35
35
  end
36
-
37
- if authorized_for(hash_for_rerun_job_invocation_path(id: job_invocation, host_ids: [ host.id ], authorizer: job_hosts_authorizer))
36
+ if authorized_for(controller: :job_invocations, action: :create) && (!host.infrastructure_host? || User.current.can?(:execute_jobs_on_infrastructure_hosts))
38
37
  links << { title: (_('Rerun on %s') % host.name),
39
38
  action: { href: rerun_job_invocation_path(job_invocation, host_ids: [ host.id ]),
40
39
  'data-method': 'get', id: "#{host.name}-actions-rerun" } }
@@ -56,7 +55,7 @@ module RemoteExecutionHelper
56
55
  def job_invocations_buttons
57
56
  [
58
57
  documentation_button_rex('3.2ExecutingaJob'),
59
- display_link_if_authorized(_('Run Job'), hash_for_new_job_invocation_path, {:class => "btn btn-primary"}),
58
+ authorized_for(controller: :job_invocations, action: :create) ? link_to(_('Run Job'), hash_for_new_job_invocation_path, {:class => "btn btn-primary"}) : '',
60
59
  ]
61
60
  end
62
61
 
@@ -70,12 +69,12 @@ module RemoteExecutionHelper
70
69
  title: _('Create report for this job'),
71
70
  disabled: task.pending?)
72
71
  end
73
- if authorized_for(hash_for_new_job_invocation_path)
72
+ if authorized_for(controller: :job_invocations, action: :create)
74
73
  buttons << link_to(_('Rerun'), rerun_job_invocation_path(:id => job_invocation.id),
75
74
  :class => 'btn btn-default',
76
75
  :title => _('Rerun the job'))
77
76
  end
78
- if authorized_for(hash_for_new_job_invocation_path)
77
+ if authorized_for(controller: :job_invocations, action: :create)
79
78
  buttons << link_to(_('Rerun failed'), rerun_job_invocation_path(:id => job_invocation.id, :failed_only => 1),
80
79
  :class => 'btn btn-default',
81
80
  :disabled => job_invocation.failed_hosts.none?,
@@ -271,6 +271,7 @@ class JobInvocationComposer
271
271
  job_invocation.pattern_template_invocations.map do |template_invocation|
272
272
  params = template_invocation.attributes.slice('template_id', 'effective_user')
273
273
  params['input_values'] = template_invocation.input_values.map { |v| v.attributes.slice('template_input_id', 'value') }
274
+ params['provider_input_values'] = template_invocation.provider_input_values.map { |v| v.attributes.slice('name', 'value') }
274
275
  params
275
276
  end
276
277
  end
@@ -31,17 +31,15 @@ export CONVERT2RHEL_DISABLE_TELEMETRY=1
31
31
 
32
32
  /usr/bin/convert2rhel analyze -y
33
33
 
34
- if ! grep -q ERROR /var/log/convert2rhel/convert2rhel-pre-conversion.json; then
34
+ # Workaround for https://issues.redhat.com/browse/RHELC-1280
35
+ subscription-manager facts --update
36
+
37
+ if grep -q ERROR /var/log/convert2rhel/convert2rhel-pre-conversion.json; then
35
38
  echo "Error: Some error(s) have been found."
36
39
  echo "Exiting ..."
37
40
  exit 1
38
41
  fi
39
42
 
40
- if ! grep -q SKIP /var/log/convert2rhel/convert2rhel-pre-conversion.json; then
41
- echo "Warning: Some check(s) have been skipped."
42
- echo "Exiting ..."
43
- exit 1
44
- fi
45
43
  <% else %>
46
44
  echo 'Unsupported OS, it must be from the Red Hat family.'
47
45
  exit 1
@@ -177,8 +177,11 @@ module ForemanRemoteExecution
177
177
  :'api/v2/job_templates' => [:update],
178
178
  :'api/v2/template_inputs' => [:create, :update, :destroy],
179
179
  :'api/v2/foreign_input_sets' => [:create, :update, :destroy]}, :resource_type => 'JobTemplate'
180
- permission :edit_remote_execution_features, { :remote_execution_features => [:index, :show, :update],
181
- :'api/v2/remote_execution_features' => [:index, :show, :update, :available_remote_execution_features]}, :resource_type => 'RemoteExecutionFeature'
180
+ permission :view_remote_execution_features, { :remote_execution_features => [:index, :show],
181
+ :'api/v2/remote_execution_features' => [:index, :show, :available_remote_execution_features]},
182
+ :resource_type => 'RemoteExecutionFeature'
183
+ permission :edit_remote_execution_features, { :remote_execution_features => [:update],
184
+ :'api/v2/remote_execution_features' => [:update ]}, :resource_type => 'RemoteExecutionFeature'
182
185
  permission :destroy_job_templates, { :job_templates => [:destroy],
183
186
  :'api/v2/job_templates' => [:destroy] }, :resource_type => 'JobTemplate'
184
187
  permission :lock_job_templates, { :job_templates => [:lock, :unlock] }, :resource_type => 'JobTemplate'
@@ -204,6 +207,7 @@ module ForemanRemoteExecution
204
207
  :create_template_invocations,
205
208
  :view_hosts,
206
209
  :view_smart_proxies,
210
+ :view_remote_execution_features,
207
211
  ].freeze
208
212
  MANAGER_PERMISSIONS = USER_PERMISSIONS + [
209
213
  :cancel_job_invocations,
@@ -1,3 +1,3 @@
1
1
  module ForemanRemoteExecution
2
- VERSION = '11.1.0'.freeze
2
+ VERSION = '11.1.3'.freeze
3
3
  end
@@ -1,5 +1,7 @@
1
1
  # Autogenerated!
2
2
  _("Action with sub plans")
3
+ _("Check for long running tasks")
4
+ _("Deliver notifications about long running tasks")
3
5
  _("Import Puppet classes")
4
6
  _("Import facts")
5
7
  _("Remote action:")
@@ -132,6 +132,9 @@ msgstr "Um"
132
132
  msgid "At minute"
133
133
  msgstr ""
134
134
 
135
+ msgid "Back"
136
+ msgstr ""
137
+
135
138
  msgid "Back to Job"
136
139
  msgstr "Zurück zum Job"
137
140
 
@@ -141,6 +144,9 @@ msgstr "Lesezeichen"
141
144
  msgid "Can't find Job Invocation for an id %s"
142
145
  msgstr ""
143
146
 
147
+ msgid "Cancel"
148
+ msgstr ""
149
+
144
150
  msgid "Cancel Job"
145
151
  msgstr "Job abbrechen"
146
152
 
@@ -165,6 +171,9 @@ msgstr ""
165
171
  msgid "Category and template"
166
172
  msgstr ""
167
173
 
174
+ msgid "Check for long running tasks"
175
+ msgstr ""
176
+
168
177
  msgid "Choose a job template that is pre-selected in job invocation form"
169
178
  msgstr "Wählen Sie eine Jobvorlage, die im Jobaufrufformular vorausgewählt ist"
170
179
 
@@ -243,7 +252,10 @@ msgstr ""
243
252
  msgid "Cron line"
244
253
  msgstr "Cron-Zeile"
245
254
 
246
- msgid "Cron line format 'a b c d e', where:"
255
+ msgid "Cron line (extended)"
256
+ msgstr ""
257
+
258
+ msgid "Cron line format '1 2 3 4 5', where:"
247
259
  msgstr ""
248
260
 
249
261
  msgid "Cronline"
@@ -294,6 +306,9 @@ msgstr "Fremdeingabe-Satz löschen"
294
306
  msgid "Delete a job template"
295
307
  msgstr "Job-Vorlage löschen"
296
308
 
309
+ msgid "Deliver notifications about long running tasks"
310
+ msgstr ""
311
+
297
312
  msgid "Description"
298
313
  msgstr "Beschreibung"
299
314
 
@@ -309,12 +324,6 @@ msgstr ""
309
324
  msgid "Display advanced fields"
310
325
  msgstr "Erweiterte Felder einblenden"
311
326
 
312
- msgid "Distribute execution over N seconds. If this is set and proxy batch triggering is enabled, then tasks are triggered on the smart proxy in batches of size 1."
313
- msgstr "Verteilen Sie die Ausführung auf N Sekunden. Wenn dies gesetzt und die Proxy-Batch-Triggerung aktiviert ist, werden Aufgaben auf dem Smart Proxy in Batches der Größe 1 ausgelöst."
314
-
315
- msgid "Distribute tasks over N seconds"
316
- msgstr "Aufgaben über n Sekunden verteilen"
317
-
318
327
  msgid "Does not repeat"
319
328
  msgstr ""
320
329
 
@@ -441,6 +450,12 @@ msgstr "Fallback auf einen beliebigen Proxy"
441
450
  msgid "Feature input %{input_name} not defined in template %{template_name}"
442
451
  msgstr "Funktionseingabe %{input_name} nicht definiert in Vorlage %{template_name}"
443
452
 
453
+ msgid "Fill all required fields in all the steps"
454
+ msgstr ""
455
+
456
+ msgid "Fill all required fields in all the steps to start the job"
457
+ msgstr ""
458
+
444
459
  msgid "Filter by host collections"
445
460
  msgstr ""
446
461
 
@@ -564,6 +579,9 @@ msgstr "Der interne Proxy-Selektor kann nur verwendet werden, wenn Katello aktiv
564
579
  msgid "Interval in seconds, if the job is not picked up by a client within this interval it will be cancelled."
565
580
  msgstr ""
566
581
 
582
+ msgid "Interval in seconds, if the job is not picked up by a client within this interval it will be cancelled. Applies only to pull-mqtt based jobs"
583
+ msgstr ""
584
+
567
585
  msgid "Invalid date"
568
586
  msgstr ""
569
587
 
@@ -663,6 +681,9 @@ msgstr ""
663
681
  msgid "Learn more about this in the documentation."
664
682
  msgstr "Mehr dazu in der Dokumentation."
665
683
 
684
+ msgid "List available remote execution features for a host"
685
+ msgstr ""
686
+
666
687
  msgid "List foreign input sets"
667
688
  msgstr "Fremdeingabe-Sätze auflisten"
668
689
 
@@ -714,6 +735,9 @@ msgstr "Niemals"
714
735
  msgid "New Job Template"
715
736
  msgstr "Neue Job-Vorlage"
716
737
 
738
+ msgid "Next"
739
+ msgstr ""
740
+
717
741
  msgid "No (override)"
718
742
  msgstr "Nein (Überschreiben)"
719
743
 
@@ -962,6 +986,9 @@ msgstr "Führen Sie höchstens N Aufgaben gleichzeitig aus. Wenn dies gesetzt un
962
986
  msgid "Run job"
963
987
  msgstr "Job ausführen"
964
988
 
989
+ msgid "Run on selected hosts"
990
+ msgstr ""
991
+
965
992
  msgid "Running"
966
993
  msgstr "Läuft"
967
994
 
@@ -1061,9 +1088,6 @@ msgstr ""
1061
1088
  msgid "Set password for effective user (using sudo-like mechanisms)"
1062
1089
  msgstr ""
1063
1090
 
1064
- msgid "Set to distribute over"
1065
- msgstr "Verteilen über"
1066
-
1067
1091
  msgid "Setup remote execution pull mode. If set to `Yes`, pull provider client will be deployed on the registered host. The inherited value is based on the `host_registration_remote_execution_pull` parameter. It can be inherited e.g. from host group, operating system, organization. When overridden, the selected value will be stored on host parameter level."
1068
1092
  msgstr ""
1069
1093
 
@@ -1091,12 +1115,21 @@ msgstr "Details der Job-Vorlage anzeigen"
1091
1115
  msgid "Show remote execution feature"
1092
1116
  msgstr "Entfernte Ausführungsfunktionen anzeigen"
1093
1117
 
1118
+ msgid "Skip to review"
1119
+ msgstr ""
1120
+
1121
+ msgid "Skip to review step"
1122
+ msgstr ""
1123
+
1094
1124
  msgid "Snippet"
1095
1125
  msgstr "Snippet"
1096
1126
 
1097
1127
  msgid "Start"
1098
1128
  msgstr "Start"
1099
1129
 
1130
+ msgid "Start job"
1131
+ msgstr ""
1132
+
1100
1133
  msgid "Started"
1101
1134
  msgstr "Gestartet"
1102
1135
 
@@ -1124,6 +1157,9 @@ msgstr ""
1124
1157
  msgid "Status"
1125
1158
  msgstr "Status"
1126
1159
 
1160
+ msgid "Submit"
1161
+ msgstr ""
1162
+
1127
1163
  msgid "Subscribe to all my jobs"
1128
1164
  msgstr ""
1129
1165
 
@@ -1181,6 +1217,9 @@ msgstr "Vorlage mit ID '%{id}' nicht gefunden"
1181
1217
  msgid "Templates list failed with:"
1182
1218
  msgstr ""
1183
1219
 
1220
+ msgid "The cron line supports extended cron line syntax. For details please refer to the "
1221
+ msgstr ""
1222
+
1184
1223
  msgid "The dynamic query '%{query}' was not resolved yet. The list of hosts to which it would resolve now can be seen %{here}."
1185
1224
  msgstr "Die dynamische Anfrage '%{query}' wurde noch nicht aufgelöst. Die Liste von Hosts, zu denen sie sich auflösen würde, ist jetzt %{here} zu sehen."
1186
1225
 
@@ -1234,12 +1273,9 @@ msgstr "Diese Vorlage wird für die Erstellung der Beschreibung verwendet. <br/>
1234
1273
  msgid "Time in seconds from the start on the remote host after which the job should be killed."
1235
1274
  msgstr "Zeit in Sekunden ab dem Start auf dem Remote-Host, nach der der Job beendet werden soll."
1236
1275
 
1237
- msgid "Time in seconds within which the host has to pick up a job. If the job is not picked up within this limit, the job will be cancelled. Defaults to 1 day."
1276
+ msgid "Time in seconds within which the host has to pick up a job. If the job is not picked up within this limit, the job will be cancelled. Defaults to 1 day. Applies only to pull-mqtt based jobs."
1238
1277
  msgstr ""
1239
1278
 
1240
- msgid "Time span"
1241
- msgstr "Zeitspanne"
1242
-
1243
1279
  msgid "Time to pickup"
1244
1280
  msgstr ""
1245
1281
 
@@ -1432,6 +1468,9 @@ msgstr "abgebrochen"
1432
1468
  msgid "default_capsule method missing from SmartProxy"
1433
1469
  msgstr "default_capsule-Methode fehlt in SmartProxy"
1434
1470
 
1471
+ msgid "documentation"
1472
+ msgstr ""
1473
+
1435
1474
  msgid "effective user"
1436
1475
  msgstr "Effektiver Benutzer"
1437
1476
 
@@ -127,6 +127,9 @@ msgstr ""
127
127
  msgid "At minute"
128
128
  msgstr ""
129
129
 
130
+ msgid "Back"
131
+ msgstr ""
132
+
130
133
  msgid "Back to Job"
131
134
  msgstr ""
132
135
 
@@ -136,6 +139,9 @@ msgstr ""
136
139
  msgid "Can't find Job Invocation for an id %s"
137
140
  msgstr ""
138
141
 
142
+ msgid "Cancel"
143
+ msgstr ""
144
+
139
145
  msgid "Cancel Job"
140
146
  msgstr ""
141
147
 
@@ -160,6 +166,9 @@ msgstr ""
160
166
  msgid "Category and template"
161
167
  msgstr ""
162
168
 
169
+ msgid "Check for long running tasks"
170
+ msgstr ""
171
+
163
172
  msgid "Choose a job template that is pre-selected in job invocation form"
164
173
  msgstr ""
165
174
 
@@ -238,7 +247,10 @@ msgstr ""
238
247
  msgid "Cron line"
239
248
  msgstr ""
240
249
 
241
- msgid "Cron line format 'a b c d e', where:"
250
+ msgid "Cron line (extended)"
251
+ msgstr ""
252
+
253
+ msgid "Cron line format '1 2 3 4 5', where:"
242
254
  msgstr ""
243
255
 
244
256
  msgid "Cronline"
@@ -289,6 +301,9 @@ msgstr ""
289
301
  msgid "Delete a job template"
290
302
  msgstr ""
291
303
 
304
+ msgid "Deliver notifications about long running tasks"
305
+ msgstr ""
306
+
292
307
  msgid "Description"
293
308
  msgstr ""
294
309
 
@@ -304,12 +319,6 @@ msgstr ""
304
319
  msgid "Display advanced fields"
305
320
  msgstr ""
306
321
 
307
- msgid "Distribute execution over N seconds. If this is set and proxy batch triggering is enabled, then tasks are triggered on the smart proxy in batches of size 1."
308
- msgstr ""
309
-
310
- msgid "Distribute tasks over N seconds"
311
- msgstr ""
312
-
313
322
  msgid "Does not repeat"
314
323
  msgstr ""
315
324
 
@@ -436,6 +445,12 @@ msgstr ""
436
445
  msgid "Feature input %{input_name} not defined in template %{template_name}"
437
446
  msgstr ""
438
447
 
448
+ msgid "Fill all required fields in all the steps"
449
+ msgstr ""
450
+
451
+ msgid "Fill all required fields in all the steps to start the job"
452
+ msgstr ""
453
+
439
454
  msgid "Filter by host collections"
440
455
  msgstr ""
441
456
 
@@ -559,6 +574,9 @@ msgstr ""
559
574
  msgid "Interval in seconds, if the job is not picked up by a client within this interval it will be cancelled."
560
575
  msgstr ""
561
576
 
577
+ msgid "Interval in seconds, if the job is not picked up by a client within this interval it will be cancelled. Applies only to pull-mqtt based jobs"
578
+ msgstr ""
579
+
562
580
  msgid "Invalid date"
563
581
  msgstr ""
564
582
 
@@ -658,6 +676,9 @@ msgstr ""
658
676
  msgid "Learn more about this in the documentation."
659
677
  msgstr ""
660
678
 
679
+ msgid "List available remote execution features for a host"
680
+ msgstr ""
681
+
661
682
  msgid "List foreign input sets"
662
683
  msgstr ""
663
684
 
@@ -709,6 +730,9 @@ msgstr ""
709
730
  msgid "New Job Template"
710
731
  msgstr ""
711
732
 
733
+ msgid "Next"
734
+ msgstr ""
735
+
712
736
  msgid "No (override)"
713
737
  msgstr ""
714
738
 
@@ -955,6 +979,9 @@ msgstr ""
955
979
  msgid "Run job"
956
980
  msgstr ""
957
981
 
982
+ msgid "Run on selected hosts"
983
+ msgstr ""
984
+
958
985
  msgid "Running"
959
986
  msgstr ""
960
987
 
@@ -1054,9 +1081,6 @@ msgstr ""
1054
1081
  msgid "Set password for effective user (using sudo-like mechanisms)"
1055
1082
  msgstr ""
1056
1083
 
1057
- msgid "Set to distribute over"
1058
- msgstr ""
1059
-
1060
1084
  msgid "Setup remote execution pull mode. If set to `Yes`, pull provider client will be deployed on the registered host. The inherited value is based on the `host_registration_remote_execution_pull` parameter. It can be inherited e.g. from host group, operating system, organization. When overridden, the selected value will be stored on host parameter level."
1061
1085
  msgstr ""
1062
1086
 
@@ -1084,12 +1108,21 @@ msgstr ""
1084
1108
  msgid "Show remote execution feature"
1085
1109
  msgstr ""
1086
1110
 
1111
+ msgid "Skip to review"
1112
+ msgstr ""
1113
+
1114
+ msgid "Skip to review step"
1115
+ msgstr ""
1116
+
1087
1117
  msgid "Snippet"
1088
1118
  msgstr ""
1089
1119
 
1090
1120
  msgid "Start"
1091
1121
  msgstr ""
1092
1122
 
1123
+ msgid "Start job"
1124
+ msgstr ""
1125
+
1093
1126
  msgid "Started"
1094
1127
  msgstr ""
1095
1128
 
@@ -1117,6 +1150,9 @@ msgstr ""
1117
1150
  msgid "Status"
1118
1151
  msgstr ""
1119
1152
 
1153
+ msgid "Submit"
1154
+ msgstr ""
1155
+
1120
1156
  msgid "Subscribe to all my jobs"
1121
1157
  msgstr ""
1122
1158
 
@@ -1174,6 +1210,9 @@ msgstr ""
1174
1210
  msgid "Templates list failed with:"
1175
1211
  msgstr ""
1176
1212
 
1213
+ msgid "The cron line supports extended cron line syntax. For details please refer to the "
1214
+ msgstr ""
1215
+
1177
1216
  msgid "The dynamic query '%{query}' was not resolved yet. The list of hosts to which it would resolve now can be seen %{here}."
1178
1217
  msgstr ""
1179
1218
 
@@ -1227,10 +1266,7 @@ msgstr ""
1227
1266
  msgid "Time in seconds from the start on the remote host after which the job should be killed."
1228
1267
  msgstr ""
1229
1268
 
1230
- msgid "Time in seconds within which the host has to pick up a job. If the job is not picked up within this limit, the job will be cancelled. Defaults to 1 day."
1231
- msgstr ""
1232
-
1233
- msgid "Time span"
1269
+ msgid "Time in seconds within which the host has to pick up a job. If the job is not picked up within this limit, the job will be cancelled. Defaults to 1 day. Applies only to pull-mqtt based jobs."
1234
1270
  msgstr ""
1235
1271
 
1236
1272
  msgid "Time to pickup"
@@ -1425,6 +1461,9 @@ msgstr ""
1425
1461
  msgid "default_capsule method missing from SmartProxy"
1426
1462
  msgstr ""
1427
1463
 
1464
+ msgid "documentation"
1465
+ msgstr ""
1466
+
1428
1467
  msgid "effective user"
1429
1468
  msgstr ""
1430
1469
 
@@ -128,6 +128,9 @@ msgstr ""
128
128
  msgid "At minute"
129
129
  msgstr ""
130
130
 
131
+ msgid "Back"
132
+ msgstr ""
133
+
131
134
  msgid "Back to Job"
132
135
  msgstr ""
133
136
 
@@ -137,6 +140,9 @@ msgstr ""
137
140
  msgid "Can't find Job Invocation for an id %s"
138
141
  msgstr ""
139
142
 
143
+ msgid "Cancel"
144
+ msgstr ""
145
+
140
146
  msgid "Cancel Job"
141
147
  msgstr ""
142
148
 
@@ -161,6 +167,9 @@ msgstr ""
161
167
  msgid "Category and template"
162
168
  msgstr ""
163
169
 
170
+ msgid "Check for long running tasks"
171
+ msgstr ""
172
+
164
173
  msgid "Choose a job template that is pre-selected in job invocation form"
165
174
  msgstr ""
166
175
 
@@ -239,7 +248,10 @@ msgstr ""
239
248
  msgid "Cron line"
240
249
  msgstr "Cron line"
241
250
 
242
- msgid "Cron line format 'a b c d e', where:"
251
+ msgid "Cron line (extended)"
252
+ msgstr ""
253
+
254
+ msgid "Cron line format '1 2 3 4 5', where:"
243
255
  msgstr ""
244
256
 
245
257
  msgid "Cronline"
@@ -290,6 +302,9 @@ msgstr ""
290
302
  msgid "Delete a job template"
291
303
  msgstr ""
292
304
 
305
+ msgid "Deliver notifications about long running tasks"
306
+ msgstr ""
307
+
293
308
  msgid "Description"
294
309
  msgstr "Description"
295
310
 
@@ -305,12 +320,6 @@ msgstr ""
305
320
  msgid "Display advanced fields"
306
321
  msgstr ""
307
322
 
308
- msgid "Distribute execution over N seconds. If this is set and proxy batch triggering is enabled, then tasks are triggered on the smart proxy in batches of size 1."
309
- msgstr ""
310
-
311
- msgid "Distribute tasks over N seconds"
312
- msgstr ""
313
-
314
323
  msgid "Does not repeat"
315
324
  msgstr ""
316
325
 
@@ -437,6 +446,12 @@ msgstr ""
437
446
  msgid "Feature input %{input_name} not defined in template %{template_name}"
438
447
  msgstr ""
439
448
 
449
+ msgid "Fill all required fields in all the steps"
450
+ msgstr ""
451
+
452
+ msgid "Fill all required fields in all the steps to start the job"
453
+ msgstr ""
454
+
440
455
  msgid "Filter by host collections"
441
456
  msgstr ""
442
457
 
@@ -560,6 +575,9 @@ msgstr ""
560
575
  msgid "Interval in seconds, if the job is not picked up by a client within this interval it will be cancelled."
561
576
  msgstr ""
562
577
 
578
+ msgid "Interval in seconds, if the job is not picked up by a client within this interval it will be cancelled. Applies only to pull-mqtt based jobs"
579
+ msgstr ""
580
+
563
581
  msgid "Invalid date"
564
582
  msgstr ""
565
583
 
@@ -659,6 +677,9 @@ msgstr ""
659
677
  msgid "Learn more about this in the documentation."
660
678
  msgstr "Learn more about this in the documentation."
661
679
 
680
+ msgid "List available remote execution features for a host"
681
+ msgstr ""
682
+
662
683
  msgid "List foreign input sets"
663
684
  msgstr ""
664
685
 
@@ -710,6 +731,9 @@ msgstr ""
710
731
  msgid "New Job Template"
711
732
  msgstr ""
712
733
 
734
+ msgid "Next"
735
+ msgstr ""
736
+
713
737
  msgid "No (override)"
714
738
  msgstr ""
715
739
 
@@ -956,6 +980,9 @@ msgstr ""
956
980
  msgid "Run job"
957
981
  msgstr ""
958
982
 
983
+ msgid "Run on selected hosts"
984
+ msgstr ""
985
+
959
986
  msgid "Running"
960
987
  msgstr "Running"
961
988
 
@@ -1055,9 +1082,6 @@ msgstr ""
1055
1082
  msgid "Set password for effective user (using sudo-like mechanisms)"
1056
1083
  msgstr ""
1057
1084
 
1058
- msgid "Set to distribute over"
1059
- msgstr ""
1060
-
1061
1085
  msgid "Setup remote execution pull mode. If set to `Yes`, pull provider client will be deployed on the registered host. The inherited value is based on the `host_registration_remote_execution_pull` parameter. It can be inherited e.g. from host group, operating system, organization. When overridden, the selected value will be stored on host parameter level."
1062
1086
  msgstr ""
1063
1087
 
@@ -1085,12 +1109,21 @@ msgstr ""
1085
1109
  msgid "Show remote execution feature"
1086
1110
  msgstr ""
1087
1111
 
1112
+ msgid "Skip to review"
1113
+ msgstr ""
1114
+
1115
+ msgid "Skip to review step"
1116
+ msgstr ""
1117
+
1088
1118
  msgid "Snippet"
1089
1119
  msgstr ""
1090
1120
 
1091
1121
  msgid "Start"
1092
1122
  msgstr ""
1093
1123
 
1124
+ msgid "Start job"
1125
+ msgstr ""
1126
+
1094
1127
  msgid "Started"
1095
1128
  msgstr ""
1096
1129
 
@@ -1118,6 +1151,9 @@ msgstr ""
1118
1151
  msgid "Status"
1119
1152
  msgstr ""
1120
1153
 
1154
+ msgid "Submit"
1155
+ msgstr ""
1156
+
1121
1157
  msgid "Subscribe to all my jobs"
1122
1158
  msgstr ""
1123
1159
 
@@ -1175,6 +1211,9 @@ msgstr ""
1175
1211
  msgid "Templates list failed with:"
1176
1212
  msgstr ""
1177
1213
 
1214
+ msgid "The cron line supports extended cron line syntax. For details please refer to the "
1215
+ msgstr ""
1216
+
1178
1217
  msgid "The dynamic query '%{query}' was not resolved yet. The list of hosts to which it would resolve now can be seen %{here}."
1179
1218
  msgstr ""
1180
1219
 
@@ -1228,10 +1267,7 @@ msgstr ""
1228
1267
  msgid "Time in seconds from the start on the remote host after which the job should be killed."
1229
1268
  msgstr ""
1230
1269
 
1231
- msgid "Time in seconds within which the host has to pick up a job. If the job is not picked up within this limit, the job will be cancelled. Defaults to 1 day."
1232
- msgstr ""
1233
-
1234
- msgid "Time span"
1270
+ msgid "Time in seconds within which the host has to pick up a job. If the job is not picked up within this limit, the job will be cancelled. Defaults to 1 day. Applies only to pull-mqtt based jobs."
1235
1271
  msgstr ""
1236
1272
 
1237
1273
  msgid "Time to pickup"
@@ -1426,6 +1462,9 @@ msgstr ""
1426
1462
  msgid "default_capsule method missing from SmartProxy"
1427
1463
  msgstr ""
1428
1464
 
1465
+ msgid "documentation"
1466
+ msgstr ""
1467
+
1429
1468
  msgid "effective user"
1430
1469
  msgstr ""
1431
1470