foreman_remote_execution 6.0.0 → 7.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/app/controllers/api/v2/job_invocations_controller.rb +1 -0
- data/app/controllers/foreman_remote_execution/concerns/api/v2/registration_controller_extensions.rb +5 -0
- data/app/controllers/ui_job_wizard_controller.rb +1 -1
- data/app/helpers/hosts_extensions_helper.rb +62 -0
- data/app/helpers/remote_execution_helper.rb +4 -3
- data/app/lib/actions/remote_execution/run_host_job.rb +5 -1
- data/app/lib/actions/remote_execution/run_hosts_job.rb +4 -0
- data/app/models/concerns/foreman_remote_execution/host_extensions.rb +5 -1
- data/app/models/concerns/foreman_remote_execution/nic_extensions.rb +6 -4
- data/app/models/concerns/foreman_remote_execution/smart_proxy_extensions.rb +1 -1
- data/app/models/job_invocation_composer.rb +7 -3
- data/app/models/job_template.rb +4 -1
- data/app/models/remote_execution_provider.rb +10 -1
- data/app/models/ssh_execution_provider.rb +20 -7
- data/app/services/default_proxy_proxy_selector.rb +1 -1
- data/app/services/remote_execution_proxy_selector.rb +7 -2
- data/app/views/api/v2/host/main.rabl +1 -0
- data/app/views/api/v2/job_invocations/base.json.rabl +1 -1
- data/app/views/dashboard/_latest-jobs.html.erb +1 -1
- data/app/views/job_invocations/_card_target_hosts.html.erb +8 -0
- data/app/views/job_invocations/_form.html.erb +2 -0
- data/app/views/templates/{ssh → script}/check_update.erb +2 -2
- data/app/views/templates/{ssh → script}/module_action.erb +2 -2
- data/app/views/templates/{ssh → script}/package_action.erb +5 -2
- data/app/views/templates/{ssh → script}/power_action.erb +2 -2
- data/app/views/templates/{ssh → script}/puppet_agent_disable.erb +2 -2
- data/app/views/templates/{ssh → script}/puppet_agent_enable.erb +2 -2
- data/app/views/templates/{ssh → script}/puppet_install_modules_from_forge.erb +2 -2
- data/app/views/templates/{ssh → script}/puppet_install_modules_from_git.erb +2 -2
- data/app/views/templates/{ssh → script}/puppet_run_once.erb +2 -2
- data/app/views/templates/{ssh → script}/run_command.erb +2 -2
- data/app/views/templates/{ssh → script}/service_action.erb +2 -2
- data/db/migrate/20220321101835_rename_ssh_provider_to_script.rb +29 -0
- data/db/migrate/20220331112719_add_ssh_user_to_job_invocation.rb +5 -0
- data/db/seeds.d/60-ssh_proxy_feature.rb +3 -0
- data/jsconfig.json +8 -0
- data/lib/foreman_remote_execution/engine.rb +10 -5
- data/lib/foreman_remote_execution/version.rb +1 -1
- data/locale/action_names.rb +3 -3
- data/locale/de/foreman_remote_execution.po +23 -23
- data/locale/en/foreman_remote_execution.po +23 -23
- data/locale/en_GB/foreman_remote_execution.po +23 -23
- data/locale/es/foreman_remote_execution.po +23 -23
- data/locale/foreman_remote_execution.pot +64 -66
- data/locale/fr/foreman_remote_execution.po +23 -23
- data/locale/ja/foreman_remote_execution.po +23 -23
- data/locale/ko/foreman_remote_execution.po +23 -23
- data/locale/pt_BR/foreman_remote_execution.po +23 -23
- data/locale/ru/foreman_remote_execution.po +23 -23
- data/locale/zh_CN/foreman_remote_execution.po +23 -23
- data/locale/zh_TW/foreman_remote_execution.po +23 -23
- data/package.json +6 -7
- data/test/unit/concerns/host_extensions_test.rb +2 -1
- data/test/unit/remote_execution_provider_test.rb +2 -0
- data/webpack/JobWizard/JobWizard.js +8 -2
- data/webpack/JobWizard/JobWizardConstants.js +2 -2
- data/webpack/JobWizard/__tests__/fixtures.js +8 -4
- data/webpack/JobWizard/steps/AdvancedFields/__tests__/AdvancedFields.test.js +2 -2
- data/webpack/JobWizard/steps/CategoryAndTemplate/CategoryAndTemplate.js +24 -15
- data/webpack/JobWizard/steps/HostsAndInputs/SelectGQL.js +2 -1
- data/webpack/JobWizard/steps/HostsAndInputs/SelectedChips.js +1 -1
- data/webpack/JobWizard/steps/HostsAndInputs/buildHostQuery.js +1 -1
- data/webpack/JobWizard/steps/HostsAndInputs/hostgroups.gql +1 -0
- data/webpack/JobWizard/steps/HostsAndInputs/hosts.gql +1 -0
- data/webpack/JobWizard/steps/ReviewDetails/index.js +1 -1
- data/webpack/JobWizard/steps/Schedule/__tests__/Schedule.test.js +15 -15
- data/webpack/JobWizard/steps/form/GroupedSelectField.js +7 -1
- data/webpack/JobWizard/steps/form/SearchSelect.js +0 -1
- data/webpack/__mocks__/foremanReact/common/globalIdHelpers.js +1 -0
- data/webpack/global_index.js +2 -4
- data/webpack/react_app/components/FeaturesDropdown/actions.js +13 -0
- data/webpack/react_app/components/FeaturesDropdown/constant.js +2 -0
- data/webpack/react_app/components/FeaturesDropdown/index.js +74 -0
- data/webpack/react_app/components/HostKebab/KebabItems.js +27 -0
- data/webpack/react_app/components/RecentJobsCard/RecentJobsCard.js +10 -5
- data/webpack/react_app/components/RecentJobsCard/RecentJobsTable.js +2 -2
- data/webpack/react_app/components/RecentJobsCard/constants.js +1 -0
- data/webpack/react_app/components/TargetingHosts/TargetingHostsConsts.js +1 -0
- data/webpack/react_app/components/TargetingHosts/TargetingHostsPage.js +8 -3
- data/webpack/react_app/components/TargetingHosts/__tests__/__snapshots__/TargetingHostsPage.test.js.snap +9 -1
- data/webpack/react_app/components/TargetingHosts/__tests__/fixtures.js +1 -4
- data/webpack/react_app/components/TargetingHosts/index.js +1 -0
- data/webpack/react_app/extend/Fills.js +48 -0
- metadata +25 -17
- data/app/helpers/concerns/foreman_remote_execution/hosts_helper_extensions.rb +0 -62
- data/webpack/react_app/extend/fillRecentJobsCard.js +0 -11
- data/webpack/react_app/extend/fillregistrationAdvanced.js +0 -11
|
@@ -1,2 +1,5 @@
|
|
|
1
1
|
f = Feature.where(:name => 'SSH').first_or_create
|
|
2
2
|
raise "Unable to create proxy feature: #{format_errors f}" if f.nil? || f.errors.any?
|
|
3
|
+
|
|
4
|
+
f = Feature.where(:name => 'Script').first_or_create
|
|
5
|
+
raise "Unable to create proxy feature: #{format_errors f}" if f.nil? || f.errors.any?
|
data/jsconfig.json
ADDED
|
@@ -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.
|
|
50
|
+
requires_foreman '>= 3.3'
|
|
51
51
|
register_global_js_file 'global'
|
|
52
52
|
|
|
53
53
|
apipie_documented_controllers ["#{ForemanRemoteExecution::Engine.root}/app/controllers/api/v2/*.rb"]
|
|
@@ -146,7 +146,7 @@ module ForemanRemoteExecution
|
|
|
146
146
|
setting 'remote_execution_form_job_template',
|
|
147
147
|
type: :string,
|
|
148
148
|
description: N_('Choose a job template that is pre-selected in job invocation form'),
|
|
149
|
-
default: 'Run Command -
|
|
149
|
+
default: 'Run Command - Script Default',
|
|
150
150
|
full_name: N_('Form Job Template'),
|
|
151
151
|
collection: proc { Hash[JobTemplate.unscoped.map { |template| [template.name, template.name] }] }
|
|
152
152
|
setting 'remote_execution_job_invocation_report_template',
|
|
@@ -265,8 +265,13 @@ module ForemanRemoteExecution
|
|
|
265
265
|
extend_rabl_template 'api/v2/smart_proxies/main', 'api/v2/smart_proxies/pubkey'
|
|
266
266
|
extend_rabl_template 'api/v2/interfaces/main', 'api/v2/interfaces/execution_flag'
|
|
267
267
|
extend_rabl_template 'api/v2/subnets/show', 'api/v2/subnets/remote_execution_proxies'
|
|
268
|
+
extend_rabl_template 'api/v2/hosts/main', 'api/v2/host/main'
|
|
268
269
|
parameter_filter ::Subnet, :remote_execution_proxy_ids
|
|
269
|
-
|
|
270
|
+
|
|
271
|
+
describe_host do
|
|
272
|
+
multiple_actions_provider :rex_hosts_multiple_actions
|
|
273
|
+
overview_buttons_provider :rex_host_overview_buttons
|
|
274
|
+
end
|
|
270
275
|
|
|
271
276
|
# Extend Registration module
|
|
272
277
|
extend_allowed_registration_vars :remote_execution_interface
|
|
@@ -315,7 +320,6 @@ module ForemanRemoteExecution
|
|
|
315
320
|
end
|
|
316
321
|
|
|
317
322
|
Bookmark.include ForemanRemoteExecution::BookmarkExtensions
|
|
318
|
-
HostsHelper.prepend ForemanRemoteExecution::HostsHelperExtensions
|
|
319
323
|
ProvisioningTemplatesHelper.prepend ForemanRemoteExecution::JobTemplatesExtensions
|
|
320
324
|
TemplateInput.include ForemanRemoteExecution::TemplateInputExtensions
|
|
321
325
|
|
|
@@ -328,7 +332,8 @@ module ForemanRemoteExecution
|
|
|
328
332
|
require_dependency 'foreman_tasks/task'
|
|
329
333
|
ForemanTasks::Task.include ForemanRemoteExecution::ForemanTasksTaskExtensions
|
|
330
334
|
ForemanTasks::Cleaner.include ForemanRemoteExecution::ForemanTasksCleanerExtensions
|
|
331
|
-
RemoteExecutionProvider.register(:SSH, SSHExecutionProvider)
|
|
335
|
+
RemoteExecutionProvider.register(:SSH, ::SSHExecutionProvider)
|
|
336
|
+
RemoteExecutionProvider.register(:script, ::ScriptExecutionProvider)
|
|
332
337
|
|
|
333
338
|
ForemanRemoteExecution.register_rex_feature
|
|
334
339
|
|
data/locale/action_names.rb
CHANGED
|
@@ -24,6 +24,9 @@ msgstr "%s"
|
|
|
24
24
|
msgid "%s ago"
|
|
25
25
|
msgstr "vor %s"
|
|
26
26
|
|
|
27
|
+
msgid "%s job has been invoked"
|
|
28
|
+
msgstr ""
|
|
29
|
+
|
|
27
30
|
msgid "%{description} on %{host}"
|
|
28
31
|
msgstr "%{description} auf %{host}"
|
|
29
32
|
|
|
@@ -68,15 +71,15 @@ msgstr "Ein Benutzer, der für die Ausführung des Skripts verwendet werden soll
|
|
|
68
71
|
msgid "Abort Job"
|
|
69
72
|
msgstr ""
|
|
70
73
|
|
|
74
|
+
msgid "Action with sub plans"
|
|
75
|
+
msgstr ""
|
|
76
|
+
|
|
71
77
|
msgid "Actions"
|
|
72
78
|
msgstr "Aktionen"
|
|
73
79
|
|
|
74
80
|
msgid "Add Foreign Input Set"
|
|
75
81
|
msgstr "Fremdeingabe-Satz hinzufügen"
|
|
76
82
|
|
|
77
|
-
msgid "Advanced Fields"
|
|
78
|
-
msgstr ""
|
|
79
|
-
|
|
80
83
|
msgid "Advanced fields"
|
|
81
84
|
msgstr ""
|
|
82
85
|
|
|
@@ -467,9 +470,15 @@ msgstr ""
|
|
|
467
470
|
msgid "Import"
|
|
468
471
|
msgstr "Import"
|
|
469
472
|
|
|
473
|
+
msgid "Import Puppet classes"
|
|
474
|
+
msgstr ""
|
|
475
|
+
|
|
470
476
|
msgid "Import a job template from ERB"
|
|
471
477
|
msgstr "Job-Vorlage aus ERB importieren"
|
|
472
478
|
|
|
479
|
+
msgid "Import facts"
|
|
480
|
+
msgstr ""
|
|
481
|
+
|
|
473
482
|
msgid "Include all inputs from the foreign template"
|
|
474
483
|
msgstr "Alle Eingaben aus Fremdvorlage einschließen"
|
|
475
484
|
|
|
@@ -503,9 +512,6 @@ msgstr "Jobtyp, einer von %s"
|
|
|
503
512
|
msgid "Job"
|
|
504
513
|
msgstr "Job"
|
|
505
514
|
|
|
506
|
-
msgid "Job Category"
|
|
507
|
-
msgstr ""
|
|
508
|
-
|
|
509
515
|
msgid "Job Details"
|
|
510
516
|
msgstr ""
|
|
511
517
|
|
|
@@ -829,7 +835,7 @@ msgstr "Wird aufgelöst zu"
|
|
|
829
835
|
msgid "Results"
|
|
830
836
|
msgstr ""
|
|
831
837
|
|
|
832
|
-
msgid "Review
|
|
838
|
+
msgid "Review details"
|
|
833
839
|
msgstr ""
|
|
834
840
|
|
|
835
841
|
msgid "Run"
|
|
@@ -853,9 +859,6 @@ msgstr ""
|
|
|
853
859
|
msgid "Running"
|
|
854
860
|
msgstr ""
|
|
855
861
|
|
|
856
|
-
msgid "SSH"
|
|
857
|
-
msgstr "SSH"
|
|
858
|
-
|
|
859
862
|
msgid "SSH Port"
|
|
860
863
|
msgstr ""
|
|
861
864
|
|
|
@@ -871,6 +874,9 @@ msgstr "Plan"
|
|
|
871
874
|
msgid "Schedule Remote Job"
|
|
872
875
|
msgstr ""
|
|
873
876
|
|
|
877
|
+
msgid "Schedule a job"
|
|
878
|
+
msgstr ""
|
|
879
|
+
|
|
874
880
|
msgid "Schedule for future execution"
|
|
875
881
|
msgstr ""
|
|
876
882
|
|
|
@@ -892,6 +898,9 @@ msgstr ""
|
|
|
892
898
|
msgid "Scheduled to start before"
|
|
893
899
|
msgstr ""
|
|
894
900
|
|
|
901
|
+
msgid "Script"
|
|
902
|
+
msgstr ""
|
|
903
|
+
|
|
895
904
|
msgid "Scroll to bottom"
|
|
896
905
|
msgstr "Zum Ende scrollen"
|
|
897
906
|
|
|
@@ -1212,16 +1221,16 @@ msgstr "Benutzereingabe"
|
|
|
1212
1221
|
msgid "Value"
|
|
1213
1222
|
msgstr "Wert"
|
|
1214
1223
|
|
|
1215
|
-
msgid "View
|
|
1224
|
+
msgid "View all jobs"
|
|
1216
1225
|
msgstr ""
|
|
1217
1226
|
|
|
1218
|
-
msgid "View
|
|
1227
|
+
msgid "View finished jobs"
|
|
1219
1228
|
msgstr ""
|
|
1220
1229
|
|
|
1221
|
-
msgid "View
|
|
1230
|
+
msgid "View running jobs"
|
|
1222
1231
|
msgstr ""
|
|
1223
1232
|
|
|
1224
|
-
msgid "View
|
|
1233
|
+
msgid "View scheduled jobs"
|
|
1225
1234
|
msgstr ""
|
|
1226
1235
|
|
|
1227
1236
|
msgid "Web Console"
|
|
@@ -1367,12 +1376,3 @@ msgstr ""
|
|
|
1367
1376
|
|
|
1368
1377
|
msgid "using Smart Proxy"
|
|
1369
1378
|
msgstr ""
|
|
1370
|
-
|
|
1371
|
-
msgid "»Action with sub plans«"
|
|
1372
|
-
msgstr ""
|
|
1373
|
-
|
|
1374
|
-
msgid "»Import Puppet classes«"
|
|
1375
|
-
msgstr ""
|
|
1376
|
-
|
|
1377
|
-
msgid "»Import facts«"
|
|
1378
|
-
msgstr ""
|
|
@@ -23,6 +23,9 @@ msgstr ""
|
|
|
23
23
|
msgid "%s ago"
|
|
24
24
|
msgstr ""
|
|
25
25
|
|
|
26
|
+
msgid "%s job has been invoked"
|
|
27
|
+
msgstr ""
|
|
28
|
+
|
|
26
29
|
msgid "%{description} on %{host}"
|
|
27
30
|
msgstr ""
|
|
28
31
|
|
|
@@ -67,13 +70,13 @@ msgstr ""
|
|
|
67
70
|
msgid "Abort Job"
|
|
68
71
|
msgstr ""
|
|
69
72
|
|
|
70
|
-
msgid "
|
|
73
|
+
msgid "Action with sub plans"
|
|
71
74
|
msgstr ""
|
|
72
75
|
|
|
73
|
-
msgid "
|
|
76
|
+
msgid "Actions"
|
|
74
77
|
msgstr ""
|
|
75
78
|
|
|
76
|
-
msgid "
|
|
79
|
+
msgid "Add Foreign Input Set"
|
|
77
80
|
msgstr ""
|
|
78
81
|
|
|
79
82
|
msgid "Advanced fields"
|
|
@@ -466,9 +469,15 @@ msgstr ""
|
|
|
466
469
|
msgid "Import"
|
|
467
470
|
msgstr ""
|
|
468
471
|
|
|
472
|
+
msgid "Import Puppet classes"
|
|
473
|
+
msgstr ""
|
|
474
|
+
|
|
469
475
|
msgid "Import a job template from ERB"
|
|
470
476
|
msgstr ""
|
|
471
477
|
|
|
478
|
+
msgid "Import facts"
|
|
479
|
+
msgstr ""
|
|
480
|
+
|
|
472
481
|
msgid "Include all inputs from the foreign template"
|
|
473
482
|
msgstr ""
|
|
474
483
|
|
|
@@ -502,9 +511,6 @@ msgstr ""
|
|
|
502
511
|
msgid "Job"
|
|
503
512
|
msgstr ""
|
|
504
513
|
|
|
505
|
-
msgid "Job Category"
|
|
506
|
-
msgstr ""
|
|
507
|
-
|
|
508
514
|
msgid "Job Details"
|
|
509
515
|
msgstr ""
|
|
510
516
|
|
|
@@ -826,7 +832,7 @@ msgstr ""
|
|
|
826
832
|
msgid "Results"
|
|
827
833
|
msgstr ""
|
|
828
834
|
|
|
829
|
-
msgid "Review
|
|
835
|
+
msgid "Review details"
|
|
830
836
|
msgstr ""
|
|
831
837
|
|
|
832
838
|
msgid "Run"
|
|
@@ -850,9 +856,6 @@ msgstr ""
|
|
|
850
856
|
msgid "Running"
|
|
851
857
|
msgstr ""
|
|
852
858
|
|
|
853
|
-
msgid "SSH"
|
|
854
|
-
msgstr ""
|
|
855
|
-
|
|
856
859
|
msgid "SSH Port"
|
|
857
860
|
msgstr ""
|
|
858
861
|
|
|
@@ -868,6 +871,9 @@ msgstr ""
|
|
|
868
871
|
msgid "Schedule Remote Job"
|
|
869
872
|
msgstr ""
|
|
870
873
|
|
|
874
|
+
msgid "Schedule a job"
|
|
875
|
+
msgstr ""
|
|
876
|
+
|
|
871
877
|
msgid "Schedule for future execution"
|
|
872
878
|
msgstr ""
|
|
873
879
|
|
|
@@ -889,6 +895,9 @@ msgstr ""
|
|
|
889
895
|
msgid "Scheduled to start before"
|
|
890
896
|
msgstr ""
|
|
891
897
|
|
|
898
|
+
msgid "Script"
|
|
899
|
+
msgstr ""
|
|
900
|
+
|
|
892
901
|
msgid "Scroll to bottom"
|
|
893
902
|
msgstr ""
|
|
894
903
|
|
|
@@ -1209,16 +1218,16 @@ msgstr ""
|
|
|
1209
1218
|
msgid "Value"
|
|
1210
1219
|
msgstr ""
|
|
1211
1220
|
|
|
1212
|
-
msgid "View
|
|
1221
|
+
msgid "View all jobs"
|
|
1213
1222
|
msgstr ""
|
|
1214
1223
|
|
|
1215
|
-
msgid "View
|
|
1224
|
+
msgid "View finished jobs"
|
|
1216
1225
|
msgstr ""
|
|
1217
1226
|
|
|
1218
|
-
msgid "View
|
|
1227
|
+
msgid "View running jobs"
|
|
1219
1228
|
msgstr ""
|
|
1220
1229
|
|
|
1221
|
-
msgid "View
|
|
1230
|
+
msgid "View scheduled jobs"
|
|
1222
1231
|
msgstr ""
|
|
1223
1232
|
|
|
1224
1233
|
msgid "Web Console"
|
|
@@ -1364,12 +1373,3 @@ msgstr ""
|
|
|
1364
1373
|
|
|
1365
1374
|
msgid "using Smart Proxy"
|
|
1366
1375
|
msgstr ""
|
|
1367
|
-
|
|
1368
|
-
msgid "»Action with sub plans«"
|
|
1369
|
-
msgstr ""
|
|
1370
|
-
|
|
1371
|
-
msgid "»Import Puppet classes«"
|
|
1372
|
-
msgstr ""
|
|
1373
|
-
|
|
1374
|
-
msgid "»Import facts«"
|
|
1375
|
-
msgstr ""
|
|
@@ -24,6 +24,9 @@ msgstr ""
|
|
|
24
24
|
msgid "%s ago"
|
|
25
25
|
msgstr "%s ago"
|
|
26
26
|
|
|
27
|
+
msgid "%s job has been invoked"
|
|
28
|
+
msgstr ""
|
|
29
|
+
|
|
27
30
|
msgid "%{description} on %{host}"
|
|
28
31
|
msgstr ""
|
|
29
32
|
|
|
@@ -68,13 +71,13 @@ msgstr ""
|
|
|
68
71
|
msgid "Abort Job"
|
|
69
72
|
msgstr ""
|
|
70
73
|
|
|
71
|
-
msgid "
|
|
74
|
+
msgid "Action with sub plans"
|
|
72
75
|
msgstr ""
|
|
73
76
|
|
|
74
|
-
msgid "
|
|
77
|
+
msgid "Actions"
|
|
75
78
|
msgstr ""
|
|
76
79
|
|
|
77
|
-
msgid "
|
|
80
|
+
msgid "Add Foreign Input Set"
|
|
78
81
|
msgstr ""
|
|
79
82
|
|
|
80
83
|
msgid "Advanced fields"
|
|
@@ -467,9 +470,15 @@ msgstr ""
|
|
|
467
470
|
msgid "Import"
|
|
468
471
|
msgstr ""
|
|
469
472
|
|
|
473
|
+
msgid "Import Puppet classes"
|
|
474
|
+
msgstr ""
|
|
475
|
+
|
|
470
476
|
msgid "Import a job template from ERB"
|
|
471
477
|
msgstr ""
|
|
472
478
|
|
|
479
|
+
msgid "Import facts"
|
|
480
|
+
msgstr ""
|
|
481
|
+
|
|
473
482
|
msgid "Include all inputs from the foreign template"
|
|
474
483
|
msgstr ""
|
|
475
484
|
|
|
@@ -503,9 +512,6 @@ msgstr ""
|
|
|
503
512
|
msgid "Job"
|
|
504
513
|
msgstr ""
|
|
505
514
|
|
|
506
|
-
msgid "Job Category"
|
|
507
|
-
msgstr ""
|
|
508
|
-
|
|
509
515
|
msgid "Job Details"
|
|
510
516
|
msgstr ""
|
|
511
517
|
|
|
@@ -827,7 +833,7 @@ msgstr ""
|
|
|
827
833
|
msgid "Results"
|
|
828
834
|
msgstr ""
|
|
829
835
|
|
|
830
|
-
msgid "Review
|
|
836
|
+
msgid "Review details"
|
|
831
837
|
msgstr ""
|
|
832
838
|
|
|
833
839
|
msgid "Run"
|
|
@@ -851,9 +857,6 @@ msgstr ""
|
|
|
851
857
|
msgid "Running"
|
|
852
858
|
msgstr ""
|
|
853
859
|
|
|
854
|
-
msgid "SSH"
|
|
855
|
-
msgstr ""
|
|
856
|
-
|
|
857
860
|
msgid "SSH Port"
|
|
858
861
|
msgstr ""
|
|
859
862
|
|
|
@@ -869,6 +872,9 @@ msgstr ""
|
|
|
869
872
|
msgid "Schedule Remote Job"
|
|
870
873
|
msgstr ""
|
|
871
874
|
|
|
875
|
+
msgid "Schedule a job"
|
|
876
|
+
msgstr ""
|
|
877
|
+
|
|
872
878
|
msgid "Schedule for future execution"
|
|
873
879
|
msgstr ""
|
|
874
880
|
|
|
@@ -890,6 +896,9 @@ msgstr ""
|
|
|
890
896
|
msgid "Scheduled to start before"
|
|
891
897
|
msgstr ""
|
|
892
898
|
|
|
899
|
+
msgid "Script"
|
|
900
|
+
msgstr ""
|
|
901
|
+
|
|
893
902
|
msgid "Scroll to bottom"
|
|
894
903
|
msgstr ""
|
|
895
904
|
|
|
@@ -1210,16 +1219,16 @@ msgstr ""
|
|
|
1210
1219
|
msgid "Value"
|
|
1211
1220
|
msgstr "Value"
|
|
1212
1221
|
|
|
1213
|
-
msgid "View
|
|
1222
|
+
msgid "View all jobs"
|
|
1214
1223
|
msgstr ""
|
|
1215
1224
|
|
|
1216
|
-
msgid "View
|
|
1225
|
+
msgid "View finished jobs"
|
|
1217
1226
|
msgstr ""
|
|
1218
1227
|
|
|
1219
|
-
msgid "View
|
|
1228
|
+
msgid "View running jobs"
|
|
1220
1229
|
msgstr ""
|
|
1221
1230
|
|
|
1222
|
-
msgid "View
|
|
1231
|
+
msgid "View scheduled jobs"
|
|
1223
1232
|
msgstr ""
|
|
1224
1233
|
|
|
1225
1234
|
msgid "Web Console"
|
|
@@ -1365,12 +1374,3 @@ msgstr ""
|
|
|
1365
1374
|
|
|
1366
1375
|
msgid "using Smart Proxy"
|
|
1367
1376
|
msgstr ""
|
|
1368
|
-
|
|
1369
|
-
msgid "»Action with sub plans«"
|
|
1370
|
-
msgstr ""
|
|
1371
|
-
|
|
1372
|
-
msgid "»Import Puppet classes«"
|
|
1373
|
-
msgstr ""
|
|
1374
|
-
|
|
1375
|
-
msgid "»Import facts«"
|
|
1376
|
-
msgstr ""
|
|
@@ -23,6 +23,9 @@ msgstr "%s"
|
|
|
23
23
|
msgid "%s ago"
|
|
24
24
|
msgstr "Hace %s"
|
|
25
25
|
|
|
26
|
+
msgid "%s job has been invoked"
|
|
27
|
+
msgstr ""
|
|
28
|
+
|
|
26
29
|
msgid "%{description} on %{host}"
|
|
27
30
|
msgstr "%{description} en %{host}"
|
|
28
31
|
|
|
@@ -67,15 +70,15 @@ msgstr "Un usuario que se debe utilizar para ejecutar el script. Si es distinto
|
|
|
67
70
|
msgid "Abort Job"
|
|
68
71
|
msgstr "Abortar trabajo"
|
|
69
72
|
|
|
73
|
+
msgid "Action with sub plans"
|
|
74
|
+
msgstr ""
|
|
75
|
+
|
|
70
76
|
msgid "Actions"
|
|
71
77
|
msgstr "Acciones"
|
|
72
78
|
|
|
73
79
|
msgid "Add Foreign Input Set"
|
|
74
80
|
msgstr "Agregar conjunto de entrada externo"
|
|
75
81
|
|
|
76
|
-
msgid "Advanced Fields"
|
|
77
|
-
msgstr ""
|
|
78
|
-
|
|
79
82
|
msgid "Advanced fields"
|
|
80
83
|
msgstr ""
|
|
81
84
|
|
|
@@ -466,9 +469,15 @@ msgstr ""
|
|
|
466
469
|
msgid "Import"
|
|
467
470
|
msgstr "Importar"
|
|
468
471
|
|
|
472
|
+
msgid "Import Puppet classes"
|
|
473
|
+
msgstr ""
|
|
474
|
+
|
|
469
475
|
msgid "Import a job template from ERB"
|
|
470
476
|
msgstr "Importar una plantilla de trabajo desde ERB"
|
|
471
477
|
|
|
478
|
+
msgid "Import facts"
|
|
479
|
+
msgstr ""
|
|
480
|
+
|
|
472
481
|
msgid "Include all inputs from the foreign template"
|
|
473
482
|
msgstr "Incluir todas las entradas de la plantilla externa"
|
|
474
483
|
|
|
@@ -502,9 +511,6 @@ msgstr "Tipo de invocación, una de %s"
|
|
|
502
511
|
msgid "Job"
|
|
503
512
|
msgstr "Empleo"
|
|
504
513
|
|
|
505
|
-
msgid "Job Category"
|
|
506
|
-
msgstr ""
|
|
507
|
-
|
|
508
514
|
msgid "Job Details"
|
|
509
515
|
msgstr "Detalles del trabajo"
|
|
510
516
|
|
|
@@ -826,7 +832,7 @@ msgstr "Se resuelve en"
|
|
|
826
832
|
msgid "Results"
|
|
827
833
|
msgstr ""
|
|
828
834
|
|
|
829
|
-
msgid "Review
|
|
835
|
+
msgid "Review details"
|
|
830
836
|
msgstr ""
|
|
831
837
|
|
|
832
838
|
msgid "Run"
|
|
@@ -850,9 +856,6 @@ msgstr ""
|
|
|
850
856
|
msgid "Running"
|
|
851
857
|
msgstr ""
|
|
852
858
|
|
|
853
|
-
msgid "SSH"
|
|
854
|
-
msgstr "SSH"
|
|
855
|
-
|
|
856
859
|
msgid "SSH Port"
|
|
857
860
|
msgstr "Puerto SSH"
|
|
858
861
|
|
|
@@ -868,6 +871,9 @@ msgstr "Programación"
|
|
|
868
871
|
msgid "Schedule Remote Job"
|
|
869
872
|
msgstr "Programar trabajo remoto"
|
|
870
873
|
|
|
874
|
+
msgid "Schedule a job"
|
|
875
|
+
msgstr ""
|
|
876
|
+
|
|
871
877
|
msgid "Schedule for future execution"
|
|
872
878
|
msgstr ""
|
|
873
879
|
|
|
@@ -889,6 +895,9 @@ msgstr "Programado para comenzar a las"
|
|
|
889
895
|
msgid "Scheduled to start before"
|
|
890
896
|
msgstr ""
|
|
891
897
|
|
|
898
|
+
msgid "Script"
|
|
899
|
+
msgstr ""
|
|
900
|
+
|
|
892
901
|
msgid "Scroll to bottom"
|
|
893
902
|
msgstr "Desplazarse hasta el final"
|
|
894
903
|
|
|
@@ -1209,16 +1218,16 @@ msgstr "Entrada de usuario"
|
|
|
1209
1218
|
msgid "Value"
|
|
1210
1219
|
msgstr "Valor"
|
|
1211
1220
|
|
|
1212
|
-
msgid "View
|
|
1221
|
+
msgid "View all jobs"
|
|
1213
1222
|
msgstr ""
|
|
1214
1223
|
|
|
1215
|
-
msgid "View
|
|
1224
|
+
msgid "View finished jobs"
|
|
1216
1225
|
msgstr ""
|
|
1217
1226
|
|
|
1218
|
-
msgid "View
|
|
1227
|
+
msgid "View running jobs"
|
|
1219
1228
|
msgstr ""
|
|
1220
1229
|
|
|
1221
|
-
msgid "View
|
|
1230
|
+
msgid "View scheduled jobs"
|
|
1222
1231
|
msgstr ""
|
|
1223
1232
|
|
|
1224
1233
|
msgid "Web Console"
|
|
@@ -1364,12 +1373,3 @@ msgstr ""
|
|
|
1364
1373
|
|
|
1365
1374
|
msgid "using Smart Proxy"
|
|
1366
1375
|
msgstr ""
|
|
1367
|
-
|
|
1368
|
-
msgid "»Action with sub plans«"
|
|
1369
|
-
msgstr ""
|
|
1370
|
-
|
|
1371
|
-
msgid "»Import Puppet classes«"
|
|
1372
|
-
msgstr ""
|
|
1373
|
-
|
|
1374
|
-
msgid "»Import facts«"
|
|
1375
|
-
msgstr ""
|