foreman_remote_execution 11.1.3 → 12.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (77) hide show
  1. checksums.yaml +4 -4
  2. data/.rubocop.yml +1 -1
  3. data/.rubocop_todo.yml +0 -8
  4. data/.tx/config +2 -2
  5. data/app/assets/javascripts/foreman_remote_execution/locale/de/foreman_remote_execution.js +27 -21
  6. data/app/assets/javascripts/foreman_remote_execution/locale/en/foreman_remote_execution.js +24 -15
  7. data/app/assets/javascripts/foreman_remote_execution/locale/en_GB/foreman_remote_execution.js +27 -9
  8. data/app/assets/javascripts/foreman_remote_execution/locale/es/foreman_remote_execution.js +27 -24
  9. data/app/assets/javascripts/foreman_remote_execution/locale/fr/foreman_remote_execution.js +27 -24
  10. data/app/assets/javascripts/foreman_remote_execution/locale/ja/foreman_remote_execution.js +27 -24
  11. data/app/assets/javascripts/foreman_remote_execution/locale/ka/foreman_remote_execution.js +1587 -0
  12. data/app/assets/javascripts/foreman_remote_execution/locale/ko/foreman_remote_execution.js +27 -15
  13. data/app/assets/javascripts/foreman_remote_execution/locale/pt_BR/foreman_remote_execution.js +27 -24
  14. data/app/assets/javascripts/foreman_remote_execution/locale/ru/foreman_remote_execution.js +27 -15
  15. data/app/assets/javascripts/foreman_remote_execution/locale/zh_CN/foreman_remote_execution.js +27 -24
  16. data/app/assets/javascripts/foreman_remote_execution/locale/zh_TW/foreman_remote_execution.js +27 -15
  17. data/app/helpers/remote_execution_helper.rb +10 -4
  18. data/app/lib/actions/remote_execution/event_helpers.rb +42 -0
  19. data/app/lib/actions/remote_execution/run_host_job.rb +3 -16
  20. data/app/lib/actions/remote_execution/run_hosts_job.rb +7 -5
  21. data/app/models/concerns/api/v2/hosts_controller_extensions.rb +12 -0
  22. data/app/views/api/v2/job_invocations/base.json.rabl +14 -0
  23. data/config/routes.rb +2 -0
  24. data/db/migrate/20151215114631_add_host_id_to_template_invocation.rb +1 -1
  25. data/db/migrate/20151217092555_migrate_to_task_groups.rb +1 -1
  26. data/db/migrate/20160113162007_expand_all_template_invocations.rb +2 -2
  27. data/db/migrate/20160114125628_rename_job_name_to_job_category.rb +2 -2
  28. data/db/migrate/20200623073022_rename_sudo_password_to_effective_user_password.rb +2 -2
  29. data/db/migrate/20220321101835_rename_ssh_provider_to_script.rb +1 -1
  30. data/extra/cockpit/foreman-cockpit-session +1 -1
  31. data/foreman_remote_execution.gemspec +3 -1
  32. data/lib/foreman_remote_execution/engine.rb +14 -9
  33. data/lib/foreman_remote_execution/version.rb +1 -1
  34. data/locale/Makefile +3 -4
  35. data/locale/de/LC_MESSAGES/foreman_remote_execution.mo +0 -0
  36. data/locale/de/foreman_remote_execution.po +24 -15
  37. data/locale/en/foreman_remote_execution.po +24 -15
  38. data/locale/en_GB/LC_MESSAGES/foreman_remote_execution.mo +0 -0
  39. data/locale/en_GB/foreman_remote_execution.po +24 -15
  40. data/locale/es/LC_MESSAGES/foreman_remote_execution.mo +0 -0
  41. data/locale/es/foreman_remote_execution.po +24 -15
  42. data/locale/foreman_remote_execution.pot +82 -69
  43. data/locale/fr/LC_MESSAGES/foreman_remote_execution.mo +0 -0
  44. data/locale/fr/foreman_remote_execution.po +24 -15
  45. data/locale/ja/LC_MESSAGES/foreman_remote_execution.mo +0 -0
  46. data/locale/ja/foreman_remote_execution.po +24 -15
  47. data/locale/ka/LC_MESSAGES/foreman_remote_execution.mo +0 -0
  48. data/locale/ka/foreman_remote_execution.po +1576 -0
  49. data/locale/ko/LC_MESSAGES/foreman_remote_execution.mo +0 -0
  50. data/locale/ko/foreman_remote_execution.po +24 -15
  51. data/locale/pt_BR/LC_MESSAGES/foreman_remote_execution.mo +0 -0
  52. data/locale/pt_BR/foreman_remote_execution.po +24 -15
  53. data/locale/ru/LC_MESSAGES/foreman_remote_execution.mo +0 -0
  54. data/locale/ru/foreman_remote_execution.po +24 -15
  55. data/locale/zh_CN/LC_MESSAGES/foreman_remote_execution.mo +0 -0
  56. data/locale/zh_CN/foreman_remote_execution.po +24 -15
  57. data/locale/zh_TW/LC_MESSAGES/foreman_remote_execution.mo +0 -0
  58. data/locale/zh_TW/foreman_remote_execution.po +24 -15
  59. data/test/unit/actions/run_hosts_job_test.rb +1 -1
  60. data/test/unit/api_params_test.rb +2 -10
  61. data/webpack/JobInvocationDetail/JobInvocationActions.js +22 -0
  62. data/webpack/JobInvocationDetail/JobInvocationConstants.js +7 -0
  63. data/webpack/JobInvocationDetail/JobInvocationOverview.js +104 -0
  64. data/webpack/JobInvocationDetail/JobInvocationSelectors.js +5 -0
  65. data/webpack/JobInvocationDetail/index.js +77 -0
  66. data/webpack/JobWizard/JobWizardPageRerun.js +10 -25
  67. data/webpack/JobWizard/index.js +9 -18
  68. data/webpack/Routes/routes.js +6 -0
  69. data/webpack/react_app/components/FeaturesDropdown/actions.js +4 -2
  70. data/webpack/react_app/components/FeaturesDropdown/constants.js +5 -0
  71. data/webpack/react_app/components/FeaturesDropdown/index.js +53 -14
  72. data/webpack/react_app/components/FeaturesDropdown/index.scss +11 -0
  73. data/webpack/react_app/extend/Fills.js +6 -0
  74. metadata +24 -10
  75. data/webpack/react_app/components/FeaturesDropdown/constant.js +0 -3
  76. /data/test/graphql/mutations/job_invocations/{create.rb → create_test.rb} +0 -0
  77. /data/test/unit/{renderer_scope_input.rb → renderer_scope_input_test.rb} +0 -0
@@ -2,7 +2,7 @@ class RenameSudoPasswordToEffectiveUserPassword < ActiveRecord::Migration[6.0]
2
2
  def up
3
3
  rename_column :job_invocations, :sudo_password, :effective_user_password
4
4
 
5
- Parameter.where(name: 'remote_execution_sudo_password').each do |parameter|
5
+ Parameter.where(name: 'remote_execution_sudo_password').find_each do |parameter|
6
6
  record = Parameter.find_by(type: parameter.type, reference_id: parameter.reference_id, name: "remote_execution_effective_user_password")
7
7
  if record.nil?
8
8
  parameter.update(name: "remote_execution_effective_user_password")
@@ -19,7 +19,7 @@ class RenameSudoPasswordToEffectiveUserPassword < ActiveRecord::Migration[6.0]
19
19
  def down
20
20
  rename_column :job_invocations, :effective_user_password, :sudo_password
21
21
 
22
- Parameter.where(name: 'remote_execution_effective_user_password').each do |parameter|
22
+ Parameter.where(name: 'remote_execution_effective_user_password').find_each do |parameter|
23
23
  record = Parameter.find_by(type: parameter.type, reference_id: parameter.reference_id, name: "remote_execution_sudo_password")
24
24
  if record.nil?
25
25
  parameter.update(name: "remote_execution_sudo_password")
@@ -6,7 +6,7 @@ class RenameSshProviderToScript < ActiveRecord::Migration[6.0]
6
6
  setting = Setting.find_by(:name => 'remote_execution_form_job_template')
7
7
  default_template = nil
8
8
 
9
- Template.where(:provider_type => from).each do |t|
9
+ Template.where(:provider_type => from).find_each do |t|
10
10
  default_template = t if t.name == setting&.value
11
11
  t.provider_type = to
12
12
  t.name = t.name.gsub(from_re, new_label)
@@ -124,7 +124,7 @@ class ProxyBuffer
124
124
 
125
125
  def write_available!
126
126
  count = @dst_io.write_nonblock(@buffer)
127
- @buffer = @buffer[count..-1]
127
+ @buffer = @buffer[count..]
128
128
  rescue IO::WaitWritable
129
129
  0
130
130
  rescue IO::WaitReadable
@@ -22,9 +22,11 @@ Gem::Specification.new do |s|
22
22
  s.test_files = `git ls-files test`.split("\n")
23
23
  s.extra_rdoc_files = Dir['README*', 'LICENSE']
24
24
 
25
+ s.required_ruby_version = '>= 2.7', '< 4'
26
+
25
27
  s.add_dependency 'deface'
26
28
  s.add_dependency 'dynflow', '>= 1.0.2', '< 2.0.0'
27
- s.add_dependency 'foreman-tasks', '>= 8.2.0'
29
+ s.add_dependency 'foreman-tasks', '>= 8.3.0'
28
30
 
29
31
  s.add_development_dependency 'factory_bot_rails', '~> 4.8.0'
30
32
  s.add_development_dependency 'rdoc'
@@ -47,7 +47,7 @@ module ForemanRemoteExecution
47
47
 
48
48
  initializer 'foreman_remote_execution.register_plugin', before: :finisher_hook do |_app|
49
49
  Foreman::Plugin.register :foreman_remote_execution do
50
- requires_foreman '>= 3.8'
50
+ requires_foreman '>= 3.9'
51
51
  register_global_js_file 'global'
52
52
  register_gettext
53
53
 
@@ -177,11 +177,8 @@ 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 :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'
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'
185
182
  permission :destroy_job_templates, { :job_templates => [:destroy],
186
183
  :'api/v2/job_templates' => [:destroy] }, :resource_type => 'JobTemplate'
187
184
  permission :lock_job_templates, { :job_templates => [:lock, :unlock] }, :resource_type => 'JobTemplate'
@@ -207,7 +204,6 @@ module ForemanRemoteExecution
207
204
  :create_template_invocations,
208
205
  :view_hosts,
209
206
  :view_smart_proxies,
210
- :view_remote_execution_features,
211
207
  ].freeze
212
208
  MANAGER_PERMISSIONS = USER_PERMISSIONS + [
213
209
  :cancel_job_invocations,
@@ -248,6 +244,12 @@ module ForemanRemoteExecution
248
244
  parent: :monitor_menu,
249
245
  after: :audits
250
246
 
247
+ menu :labs_menu, :job_invocations_detail,
248
+ url_hash: { controller: :job_invocations, action: :show },
249
+ caption: N_('Job invocations detail'),
250
+ parent: :lab_features_menu,
251
+ url: '/experimental/job_invocations_detail/1'
252
+
251
253
  register_custom_status HostStatus::ExecutionStatus
252
254
  # add dashboard widget
253
255
  # widget 'foreman_remote_execution_widget', name: N_('Foreman plugin template widget'), sizex: 4, sizey: 1
@@ -284,8 +286,10 @@ module ForemanRemoteExecution
284
286
  ::Dynflow::Action.descendants.select do |klass|
285
287
  klass <= ::Actions::ObservableAction
286
288
  end.map(&:namespaced_event_names) +
287
- RemoteExecutionFeature.all.pluck(:label).map do |label|
288
- ::Actions::RemoteExecution::RunHostJob.feature_job_event_name(label)
289
+ RemoteExecutionFeature.all.pluck(:label).flat_map do |label|
290
+ [::Actions::RemoteExecution::RunHostJob, ::Actions::RemoteExecution::RunHostsJob].map do |klass|
291
+ klass.feature_job_event_names(label)
292
+ end
289
293
  end
290
294
  )
291
295
  end
@@ -341,6 +345,7 @@ module ForemanRemoteExecution
341
345
 
342
346
  ForemanRemoteExecution.register_rex_feature
343
347
 
348
+ ::Api::V2::HostsController.include Api::V2::HostsControllerExtensions
344
349
  ::Api::V2::SubnetsController.include ::ForemanRemoteExecution::Concerns::Api::V2::SubnetsControllerExtensions
345
350
  ::Api::V2::RegistrationController.prepend ::ForemanRemoteExecution::Concerns::Api::V2::RegistrationControllerExtensions
346
351
  ::Api::V2::RegistrationController.include ::ForemanRemoteExecution::Concerns::Api::V2::RegistrationControllerExtensions::ApipieExtensions
@@ -1,3 +1,3 @@
1
1
  module ForemanRemoteExecution
2
- VERSION = '11.1.3'.freeze
2
+ VERSION = '12.0.1'.freeze
3
3
  end
data/locale/Makefile CHANGED
@@ -6,8 +6,8 @@
6
6
  # make tx-update - download and merge translations from Transifex
7
7
  # make clean - clean everything
8
8
  #
9
- DOMAIN = foreman_remote_execution
10
- VERSION = $(shell ruby -e 'require "rubygems";spec = Gem::Specification::load(Dir.glob("../*.gemspec")[0]);puts spec.version')
9
+ DOMAIN = $(shell ruby -rrubygems -e 'puts Gem::Specification::load(Dir.glob("../*.gemspec")[0]).name')
10
+ VERSION = $(shell ruby -rrubygems -e 'puts Gem::Specification::load(Dir.glob("../*.gemspec")[0]).version')
11
11
  POTFILE = $(DOMAIN).pot
12
12
  MOFILE = $(DOMAIN).mo
13
13
  POFILES = $(shell find . -name '$(DOMAIN).po')
@@ -43,7 +43,7 @@ uniq-po:
43
43
  done
44
44
 
45
45
  tx-pull: $(EDITFILES)
46
- cd .. && tx pull -f
46
+ cd .. && tx pull -f --all
47
47
  for f in $(EDITFILES) ; do \
48
48
  sed -i 's/^\("Project-Id-Version: \).*$$/\1$(DOMAIN) $(VERSION)\\n"/' $$f; \
49
49
  done
@@ -61,4 +61,3 @@ mo-files: $(MOFILES)
61
61
  @echo
62
62
  @echo Changes commited!
63
63
  @echo
64
-
@@ -84,9 +84,6 @@ msgstr "Ein Benutzer, der für die Ausführung des Skripts verwendet werden soll
84
84
  msgid "Abort Job"
85
85
  msgstr "Job abbrechen"
86
86
 
87
- msgid "Action with sub plans"
88
- msgstr "Aktion mit Unterplänen"
89
-
90
87
  msgid "Actions"
91
88
  msgstr "Aktionen"
92
89
 
@@ -171,9 +168,6 @@ msgstr ""
171
168
  msgid "Category and template"
172
169
  msgstr ""
173
170
 
174
- msgid "Check for long running tasks"
175
- msgstr ""
176
-
177
171
  msgid "Choose a job template that is pre-selected in job invocation form"
178
172
  msgstr "Wählen Sie eine Jobvorlage, die im Jobaufrufformular vorausgewählt ist"
179
173
 
@@ -306,9 +300,6 @@ msgstr "Fremdeingabe-Satz löschen"
306
300
  msgid "Delete a job template"
307
301
  msgstr "Job-Vorlage löschen"
308
302
 
309
- msgid "Deliver notifications about long running tasks"
310
- msgstr ""
311
-
312
303
  msgid "Description"
313
304
  msgstr "Beschreibung"
314
305
 
@@ -372,6 +363,9 @@ msgstr "Das gültige Benutzerkennwort gilt nur für den SSH-Anbieter. Andere Anb
372
363
  msgid "Effective user password is only applicable for SSH provider. Other providers ignore this field. Password is stored encrypted in DB until the job finishes. For future or recurring executions, it is removed after the last execution."
373
364
  msgstr ""
374
365
 
366
+ msgid "Effective user:"
367
+ msgstr ""
368
+
375
369
  msgid "Enable Global Proxy"
376
370
  msgstr "Globalen Proxy aktivieren"
377
371
 
@@ -543,15 +537,9 @@ msgstr ""
543
537
  msgid "Import"
544
538
  msgstr "Import"
545
539
 
546
- msgid "Import Puppet classes"
547
- msgstr "Puppet-Klassen importieren"
548
-
549
540
  msgid "Import a job template from ERB"
550
541
  msgstr "Job-Vorlage aus ERB importieren"
551
542
 
552
- msgid "Import facts"
553
- msgstr "Fakten importieren"
554
-
555
543
  msgid "Include all inputs from the foreign template"
556
544
  msgstr "Alle Eingaben aus Fremdvorlage einschließen"
557
545
 
@@ -630,6 +618,9 @@ msgstr "Job-Aufrufe "
630
618
  msgid "Job invocations"
631
619
  msgstr "Job-Aufrufe "
632
620
 
621
+ msgid "Job invocations detail"
622
+ msgstr ""
623
+
633
624
  msgid "Job result"
634
625
  msgstr ""
635
626
 
@@ -735,6 +726,9 @@ msgstr "Niemals"
735
726
  msgid "New Job Template"
736
727
  msgstr "Neue Job-Vorlage"
737
728
 
729
+ msgid "New UI"
730
+ msgstr ""
731
+
738
732
  msgid "Next"
739
733
  msgstr ""
740
734
 
@@ -762,6 +756,9 @@ msgstr "Der Funktion %{feature_name} wurde keine Vorlage zugewiesen"
762
756
  msgid "Not all required inputs have values. Missing inputs: %s"
763
757
  msgstr "Nicht alle erforderlichen Eingaben haben Werte. Fehlende Eingaben: %s"
764
758
 
759
+ msgid "Not yet"
760
+ msgstr ""
761
+
765
762
  msgid "Now"
766
763
  msgstr ""
767
764
 
@@ -1004,6 +1001,9 @@ msgstr "Besondere Optionen des SSH-Anbieters"
1004
1001
  msgid "SSH user"
1005
1002
  msgstr ""
1006
1003
 
1004
+ msgid "SSH user:"
1005
+ msgstr ""
1006
+
1007
1007
  msgid "Schedule"
1008
1008
  msgstr "Plan"
1009
1009
 
@@ -1133,6 +1133,9 @@ msgstr ""
1133
1133
  msgid "Started"
1134
1134
  msgstr "Gestartet"
1135
1135
 
1136
+ msgid "Started at:"
1137
+ msgstr ""
1138
+
1136
1139
  msgid "Starts"
1137
1140
  msgstr "Beginnt"
1138
1141
 
@@ -1175,6 +1178,9 @@ msgstr "Erfolgreich"
1175
1178
  msgid "Success"
1176
1179
  msgstr "Erfolg"
1177
1180
 
1181
+ msgid "Switch to the new job invocation detail UI"
1182
+ msgstr ""
1183
+
1178
1184
  msgid "Sync Job Templates"
1179
1185
  msgstr "Synchronisations Job-Vorlage"
1180
1186
 
@@ -1214,6 +1220,9 @@ msgstr "Vorlagenversion"
1214
1220
  msgid "Template with id '%{id}' was not found"
1215
1221
  msgstr "Vorlage mit ID '%{id}' nicht gefunden"
1216
1222
 
1223
+ msgid "Template:"
1224
+ msgstr ""
1225
+
1217
1226
  msgid "Templates list failed with:"
1218
1227
  msgstr ""
1219
1228
 
@@ -79,9 +79,6 @@ msgstr ""
79
79
  msgid "Abort Job"
80
80
  msgstr ""
81
81
 
82
- msgid "Action with sub plans"
83
- msgstr ""
84
-
85
82
  msgid "Actions"
86
83
  msgstr ""
87
84
 
@@ -166,9 +163,6 @@ msgstr ""
166
163
  msgid "Category and template"
167
164
  msgstr ""
168
165
 
169
- msgid "Check for long running tasks"
170
- msgstr ""
171
-
172
166
  msgid "Choose a job template that is pre-selected in job invocation form"
173
167
  msgstr ""
174
168
 
@@ -301,9 +295,6 @@ msgstr ""
301
295
  msgid "Delete a job template"
302
296
  msgstr ""
303
297
 
304
- msgid "Deliver notifications about long running tasks"
305
- msgstr ""
306
-
307
298
  msgid "Description"
308
299
  msgstr ""
309
300
 
@@ -367,6 +358,9 @@ msgstr ""
367
358
  msgid "Effective user password is only applicable for SSH provider. Other providers ignore this field. Password is stored encrypted in DB until the job finishes. For future or recurring executions, it is removed after the last execution."
368
359
  msgstr ""
369
360
 
361
+ msgid "Effective user:"
362
+ msgstr ""
363
+
370
364
  msgid "Enable Global Proxy"
371
365
  msgstr ""
372
366
 
@@ -538,15 +532,9 @@ msgstr ""
538
532
  msgid "Import"
539
533
  msgstr ""
540
534
 
541
- msgid "Import Puppet classes"
542
- msgstr ""
543
-
544
535
  msgid "Import a job template from ERB"
545
536
  msgstr ""
546
537
 
547
- msgid "Import facts"
548
- msgstr ""
549
-
550
538
  msgid "Include all inputs from the foreign template"
551
539
  msgstr ""
552
540
 
@@ -625,6 +613,9 @@ msgstr ""
625
613
  msgid "Job invocations"
626
614
  msgstr ""
627
615
 
616
+ msgid "Job invocations detail"
617
+ msgstr ""
618
+
628
619
  msgid "Job result"
629
620
  msgstr ""
630
621
 
@@ -730,6 +721,9 @@ msgstr ""
730
721
  msgid "New Job Template"
731
722
  msgstr ""
732
723
 
724
+ msgid "New UI"
725
+ msgstr ""
726
+
733
727
  msgid "Next"
734
728
  msgstr ""
735
729
 
@@ -757,6 +751,9 @@ msgstr ""
757
751
  msgid "Not all required inputs have values. Missing inputs: %s"
758
752
  msgstr ""
759
753
 
754
+ msgid "Not yet"
755
+ msgstr ""
756
+
760
757
  msgid "Now"
761
758
  msgstr ""
762
759
 
@@ -997,6 +994,9 @@ msgstr ""
997
994
  msgid "SSH user"
998
995
  msgstr ""
999
996
 
997
+ msgid "SSH user:"
998
+ msgstr ""
999
+
1000
1000
  msgid "Schedule"
1001
1001
  msgstr ""
1002
1002
 
@@ -1126,6 +1126,9 @@ msgstr ""
1126
1126
  msgid "Started"
1127
1127
  msgstr ""
1128
1128
 
1129
+ msgid "Started at:"
1130
+ msgstr ""
1131
+
1129
1132
  msgid "Starts"
1130
1133
  msgstr ""
1131
1134
 
@@ -1168,6 +1171,9 @@ msgstr ""
1168
1171
  msgid "Success"
1169
1172
  msgstr ""
1170
1173
 
1174
+ msgid "Switch to the new job invocation detail UI"
1175
+ msgstr ""
1176
+
1171
1177
  msgid "Sync Job Templates"
1172
1178
  msgstr ""
1173
1179
 
@@ -1207,6 +1213,9 @@ msgstr ""
1207
1213
  msgid "Template with id '%{id}' was not found"
1208
1214
  msgstr ""
1209
1215
 
1216
+ msgid "Template:"
1217
+ msgstr ""
1218
+
1210
1219
  msgid "Templates list failed with:"
1211
1220
  msgstr ""
1212
1221
 
@@ -80,9 +80,6 @@ msgstr ""
80
80
  msgid "Abort Job"
81
81
  msgstr ""
82
82
 
83
- msgid "Action with sub plans"
84
- msgstr "Action with sub plans"
85
-
86
83
  msgid "Actions"
87
84
  msgstr "Actions"
88
85
 
@@ -167,9 +164,6 @@ msgstr ""
167
164
  msgid "Category and template"
168
165
  msgstr ""
169
166
 
170
- msgid "Check for long running tasks"
171
- msgstr ""
172
-
173
167
  msgid "Choose a job template that is pre-selected in job invocation form"
174
168
  msgstr ""
175
169
 
@@ -302,9 +296,6 @@ msgstr ""
302
296
  msgid "Delete a job template"
303
297
  msgstr ""
304
298
 
305
- msgid "Deliver notifications about long running tasks"
306
- msgstr ""
307
-
308
299
  msgid "Description"
309
300
  msgstr "Description"
310
301
 
@@ -368,6 +359,9 @@ msgstr ""
368
359
  msgid "Effective user password is only applicable for SSH provider. Other providers ignore this field. Password is stored encrypted in DB until the job finishes. For future or recurring executions, it is removed after the last execution."
369
360
  msgstr ""
370
361
 
362
+ msgid "Effective user:"
363
+ msgstr ""
364
+
371
365
  msgid "Enable Global Proxy"
372
366
  msgstr ""
373
367
 
@@ -539,15 +533,9 @@ msgstr ""
539
533
  msgid "Import"
540
534
  msgstr ""
541
535
 
542
- msgid "Import Puppet classes"
543
- msgstr "Import Puppet classes"
544
-
545
536
  msgid "Import a job template from ERB"
546
537
  msgstr ""
547
538
 
548
- msgid "Import facts"
549
- msgstr "Import facts"
550
-
551
539
  msgid "Include all inputs from the foreign template"
552
540
  msgstr ""
553
541
 
@@ -626,6 +614,9 @@ msgstr ""
626
614
  msgid "Job invocations"
627
615
  msgstr ""
628
616
 
617
+ msgid "Job invocations detail"
618
+ msgstr ""
619
+
629
620
  msgid "Job result"
630
621
  msgstr ""
631
622
 
@@ -731,6 +722,9 @@ msgstr ""
731
722
  msgid "New Job Template"
732
723
  msgstr ""
733
724
 
725
+ msgid "New UI"
726
+ msgstr ""
727
+
734
728
  msgid "Next"
735
729
  msgstr ""
736
730
 
@@ -758,6 +752,9 @@ msgstr ""
758
752
  msgid "Not all required inputs have values. Missing inputs: %s"
759
753
  msgstr ""
760
754
 
755
+ msgid "Not yet"
756
+ msgstr ""
757
+
761
758
  msgid "Now"
762
759
  msgstr ""
763
760
 
@@ -998,6 +995,9 @@ msgstr ""
998
995
  msgid "SSH user"
999
996
  msgstr ""
1000
997
 
998
+ msgid "SSH user:"
999
+ msgstr ""
1000
+
1001
1001
  msgid "Schedule"
1002
1002
  msgstr ""
1003
1003
 
@@ -1127,6 +1127,9 @@ msgstr ""
1127
1127
  msgid "Started"
1128
1128
  msgstr ""
1129
1129
 
1130
+ msgid "Started at:"
1131
+ msgstr ""
1132
+
1130
1133
  msgid "Starts"
1131
1134
  msgstr ""
1132
1135
 
@@ -1169,6 +1172,9 @@ msgstr ""
1169
1172
  msgid "Success"
1170
1173
  msgstr "Success"
1171
1174
 
1175
+ msgid "Switch to the new job invocation detail UI"
1176
+ msgstr ""
1177
+
1172
1178
  msgid "Sync Job Templates"
1173
1179
  msgstr ""
1174
1180
 
@@ -1208,6 +1214,9 @@ msgstr ""
1208
1214
  msgid "Template with id '%{id}' was not found"
1209
1215
  msgstr ""
1210
1216
 
1217
+ msgid "Template:"
1218
+ msgstr ""
1219
+
1211
1220
  msgid "Templates list failed with:"
1212
1221
  msgstr ""
1213
1222
 
@@ -80,9 +80,6 @@ msgstr "Un usuario que se debe utilizar para ejecutar el script. Si es distinto
80
80
  msgid "Abort Job"
81
81
  msgstr "Abortar trabajo"
82
82
 
83
- msgid "Action with sub plans"
84
- msgstr "Acción con subplanes"
85
-
86
83
  msgid "Actions"
87
84
  msgstr "Acciones"
88
85
 
@@ -167,9 +164,6 @@ msgstr "La lista de categorías falló con:"
167
164
  msgid "Category and template"
168
165
  msgstr ""
169
166
 
170
- msgid "Check for long running tasks"
171
- msgstr ""
172
-
173
167
  msgid "Choose a job template that is pre-selected in job invocation form"
174
168
  msgstr "Elija una plantilla de tarea que esté preseleccionada en el formulario de invocación de tarea"
175
169
 
@@ -302,9 +296,6 @@ msgstr "Eliminar un conjunto de entrada externo"
302
296
  msgid "Delete a job template"
303
297
  msgstr "Eliminar una plantilla de trabajo"
304
298
 
305
- msgid "Deliver notifications about long running tasks"
306
- msgstr ""
307
-
308
299
  msgid "Description"
309
300
  msgstr "Descripción"
310
301
 
@@ -368,6 +359,9 @@ msgstr "La contraseña de usuario efectiva sólo es aplicable al proveedor SSH.
368
359
  msgid "Effective user password is only applicable for SSH provider. Other providers ignore this field. Password is stored encrypted in DB until the job finishes. For future or recurring executions, it is removed after the last execution."
369
360
  msgstr "La contraseña de usuario efectiva sólo es aplicable al proveedor SSH. Otros proveedores ignoran este campo. La contraseña se almacena encriptada en la base de datos hasta que finaliza el trabajo. Para ejecuciones futuras o recurrentes, se elimina después de la última ejecución."
370
361
 
362
+ msgid "Effective user:"
363
+ msgstr ""
364
+
371
365
  msgid "Enable Global Proxy"
372
366
  msgstr "Activar proxy global"
373
367
 
@@ -539,15 +533,9 @@ msgstr ""
539
533
  msgid "Import"
540
534
  msgstr "Importar"
541
535
 
542
- msgid "Import Puppet classes"
543
- msgstr "Importar clases Puppet"
544
-
545
536
  msgid "Import a job template from ERB"
546
537
  msgstr "Importar una plantilla de trabajo desde ERB"
547
538
 
548
- msgid "Import facts"
549
- msgstr "Importar datos"
550
-
551
539
  msgid "Include all inputs from the foreign template"
552
540
  msgstr "Incluir todas las entradas de la plantilla externa"
553
541
 
@@ -626,6 +614,9 @@ msgstr "Invocación de trabajo"
626
614
  msgid "Job invocations"
627
615
  msgstr "Invocaciones de trabajo"
628
616
 
617
+ msgid "Job invocations detail"
618
+ msgstr ""
619
+
629
620
  msgid "Job result"
630
621
  msgstr "Resultado del trabajo"
631
622
 
@@ -731,6 +722,9 @@ msgstr "Nunca"
731
722
  msgid "New Job Template"
732
723
  msgstr "Nueva plantilla de trabajo"
733
724
 
725
+ msgid "New UI"
726
+ msgstr ""
727
+
734
728
  msgid "Next"
735
729
  msgstr ""
736
730
 
@@ -758,6 +752,9 @@ msgstr "No hay ninguna plantilla mapeada a la funcionalidad %{feature_name}."
758
752
  msgid "Not all required inputs have values. Missing inputs: %s"
759
753
  msgstr "No todas las entradas requeridas tienen valores. Entradas que faltan: %s"
760
754
 
755
+ msgid "Not yet"
756
+ msgstr ""
757
+
761
758
  msgid "Now"
762
759
  msgstr ""
763
760
 
@@ -998,6 +995,9 @@ msgstr "Opciones específicas del proveedor SSH"
998
995
  msgid "SSH user"
999
996
  msgstr ""
1000
997
 
998
+ msgid "SSH user:"
999
+ msgstr ""
1000
+
1001
1001
  msgid "Schedule"
1002
1002
  msgstr "Programa"
1003
1003
 
@@ -1127,6 +1127,9 @@ msgstr ""
1127
1127
  msgid "Started"
1128
1128
  msgstr "Inició"
1129
1129
 
1130
+ msgid "Started at:"
1131
+ msgstr ""
1132
+
1130
1133
  msgid "Starts"
1131
1134
  msgstr "Comienza"
1132
1135
 
@@ -1169,6 +1172,9 @@ msgstr "exitoso"
1169
1172
  msgid "Success"
1170
1173
  msgstr "Éxito"
1171
1174
 
1175
+ msgid "Switch to the new job invocation detail UI"
1176
+ msgstr ""
1177
+
1172
1178
  msgid "Sync Job Templates"
1173
1179
  msgstr "Sincronizar plantillas de trabajo"
1174
1180
 
@@ -1208,6 +1214,9 @@ msgstr "versión de plantilla"
1208
1214
  msgid "Template with id '%{id}' was not found"
1209
1215
  msgstr "No se encontró la plantilla con ID '%{id}'."
1210
1216
 
1217
+ msgid "Template:"
1218
+ msgstr ""
1219
+
1211
1220
  msgid "Templates list failed with:"
1212
1221
  msgstr "Lista de plantillas falló con:"
1213
1222