foreman_remote_execution 11.1.3 → 12.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/.rubocop.yml +1 -1
- data/.rubocop_todo.yml +0 -8
- data/.tx/config +2 -2
- data/app/assets/javascripts/foreman_remote_execution/locale/de/foreman_remote_execution.js +27 -21
- data/app/assets/javascripts/foreman_remote_execution/locale/en/foreman_remote_execution.js +24 -15
- data/app/assets/javascripts/foreman_remote_execution/locale/en_GB/foreman_remote_execution.js +27 -9
- data/app/assets/javascripts/foreman_remote_execution/locale/es/foreman_remote_execution.js +27 -24
- data/app/assets/javascripts/foreman_remote_execution/locale/fr/foreman_remote_execution.js +27 -24
- data/app/assets/javascripts/foreman_remote_execution/locale/ja/foreman_remote_execution.js +27 -24
- data/app/assets/javascripts/foreman_remote_execution/locale/ka/foreman_remote_execution.js +1587 -0
- data/app/assets/javascripts/foreman_remote_execution/locale/ko/foreman_remote_execution.js +27 -15
- data/app/assets/javascripts/foreman_remote_execution/locale/pt_BR/foreman_remote_execution.js +27 -24
- data/app/assets/javascripts/foreman_remote_execution/locale/ru/foreman_remote_execution.js +27 -15
- data/app/assets/javascripts/foreman_remote_execution/locale/zh_CN/foreman_remote_execution.js +27 -24
- data/app/assets/javascripts/foreman_remote_execution/locale/zh_TW/foreman_remote_execution.js +27 -15
- data/app/controllers/ui_job_wizard_controller.rb +1 -4
- data/app/helpers/remote_execution_helper.rb +10 -4
- data/app/lib/actions/remote_execution/event_helpers.rb +42 -0
- data/app/lib/actions/remote_execution/run_host_job.rb +3 -16
- data/app/lib/actions/remote_execution/run_hosts_job.rb +7 -5
- data/app/models/concerns/api/v2/hosts_controller_extensions.rb +12 -0
- data/app/models/job_invocation_composer.rb +0 -1
- data/app/views/api/v2/job_invocations/base.json.rabl +14 -0
- data/app/views/templates/script/convert2rhel_analyze.erb +0 -3
- data/config/routes.rb +2 -0
- data/db/migrate/20151215114631_add_host_id_to_template_invocation.rb +1 -1
- data/db/migrate/20151217092555_migrate_to_task_groups.rb +1 -1
- data/db/migrate/20160113162007_expand_all_template_invocations.rb +2 -2
- data/db/migrate/20160114125628_rename_job_name_to_job_category.rb +2 -2
- data/db/migrate/20200623073022_rename_sudo_password_to_effective_user_password.rb +2 -2
- data/db/migrate/20220321101835_rename_ssh_provider_to_script.rb +1 -1
- data/extra/cockpit/foreman-cockpit-session +1 -1
- data/foreman_remote_execution.gemspec +3 -1
- data/lib/foreman_remote_execution/engine.rb +14 -9
- data/lib/foreman_remote_execution/version.rb +1 -1
- data/locale/Makefile +3 -4
- data/locale/action_names.rb +0 -5
- data/locale/de/LC_MESSAGES/foreman_remote_execution.mo +0 -0
- data/locale/de/foreman_remote_execution.po +24 -15
- data/locale/en/foreman_remote_execution.po +24 -15
- data/locale/en_GB/LC_MESSAGES/foreman_remote_execution.mo +0 -0
- data/locale/en_GB/foreman_remote_execution.po +24 -15
- data/locale/es/LC_MESSAGES/foreman_remote_execution.mo +0 -0
- data/locale/es/foreman_remote_execution.po +24 -15
- data/locale/foreman_remote_execution.pot +82 -69
- data/locale/fr/LC_MESSAGES/foreman_remote_execution.mo +0 -0
- data/locale/fr/foreman_remote_execution.po +24 -15
- data/locale/ja/LC_MESSAGES/foreman_remote_execution.mo +0 -0
- data/locale/ja/foreman_remote_execution.po +24 -15
- data/locale/ka/LC_MESSAGES/foreman_remote_execution.mo +0 -0
- data/locale/ka/foreman_remote_execution.po +1576 -0
- data/locale/ko/LC_MESSAGES/foreman_remote_execution.mo +0 -0
- data/locale/ko/foreman_remote_execution.po +24 -15
- data/locale/pt_BR/LC_MESSAGES/foreman_remote_execution.mo +0 -0
- data/locale/pt_BR/foreman_remote_execution.po +24 -15
- data/locale/ru/LC_MESSAGES/foreman_remote_execution.mo +0 -0
- data/locale/ru/foreman_remote_execution.po +24 -15
- data/locale/zh_CN/LC_MESSAGES/foreman_remote_execution.mo +0 -0
- data/locale/zh_CN/foreman_remote_execution.po +24 -15
- data/locale/zh_TW/LC_MESSAGES/foreman_remote_execution.mo +0 -0
- data/locale/zh_TW/foreman_remote_execution.po +24 -15
- data/test/unit/actions/run_hosts_job_test.rb +1 -1
- data/test/unit/api_params_test.rb +2 -10
- data/webpack/JobInvocationDetail/JobInvocationActions.js +22 -0
- data/webpack/JobInvocationDetail/JobInvocationConstants.js +7 -0
- data/webpack/JobInvocationDetail/JobInvocationOverview.js +104 -0
- data/webpack/JobInvocationDetail/JobInvocationSelectors.js +5 -0
- data/webpack/JobInvocationDetail/index.js +77 -0
- data/webpack/JobWizard/JobWizardPageRerun.js +10 -25
- data/webpack/JobWizard/index.js +9 -18
- data/webpack/Routes/routes.js +6 -0
- data/webpack/react_app/components/FeaturesDropdown/actions.js +4 -2
- data/webpack/react_app/components/FeaturesDropdown/constants.js +5 -0
- data/webpack/react_app/components/FeaturesDropdown/index.js +53 -14
- data/webpack/react_app/components/FeaturesDropdown/index.scss +11 -0
- data/webpack/react_app/extend/Fills.js +6 -0
- metadata +24 -10
- data/webpack/react_app/components/FeaturesDropdown/constant.js +0 -3
- /data/test/graphql/mutations/job_invocations/{create.rb → create_test.rb} +0 -0
- /data/test/unit/{renderer_scope_input.rb → renderer_scope_input_test.rb} +0 -0
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 43196184773df228503a8a6e25cbdb70669802ee31814e75abfb497807764229
|
|
4
|
+
data.tar.gz: 93e1f84e0d59c23a771a061f0d152afa5e8c8bc3be3e5c5043510e18c95b8d9d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ddc91fbaa8ffe72952982ebe84a288f43aed56fe7ec731d39d93527a3f12d636f517e5f65a42c42a0f635c7eddbe7c28dd14e5243d27f68e4009999f48591297
|
|
7
|
+
data.tar.gz: f28441ee7476bdbdfc35589d83442c27d07c86fab85882ae8b67ae6eb396d4e35b5066d385380139ad7d67b3ba89a5656f34819bcca3b8f2340560866c131c91
|
data/.rubocop.yml
CHANGED
data/.rubocop_todo.yml
CHANGED
|
@@ -6,14 +6,6 @@
|
|
|
6
6
|
# Note that changes in the inspected code, or installation of new
|
|
7
7
|
# versions of RuboCop, may require this file to be generated again.
|
|
8
8
|
|
|
9
|
-
# Offense count: 2
|
|
10
|
-
# Configuration parameters: Include.
|
|
11
|
-
# Include: **/*.gemspec
|
|
12
|
-
Gemspec/RequiredRubyVersion:
|
|
13
|
-
Exclude:
|
|
14
|
-
- 'foreman_remote_execution.gemspec'
|
|
15
|
-
- 'foreman_remote_execution_core.gemspec'
|
|
16
|
-
|
|
17
9
|
# Offense count: 1
|
|
18
10
|
# Cop supports --auto-correct.
|
|
19
11
|
# Configuration parameters: EnforcedStyleAlignWith, Severity.
|
data/.tx/config
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
[main]
|
|
2
|
-
host = https://
|
|
2
|
+
host = https://app.transifex.com
|
|
3
3
|
|
|
4
4
|
[o:foreman:p:foreman:r:foreman_remote_execution]
|
|
5
5
|
file_filter = locale/<lang>/foreman_remote_execution.edit.po
|
|
6
6
|
source_file = locale/foreman_remote_execution.pot
|
|
7
7
|
source_lang = en
|
|
8
8
|
type = PO
|
|
9
|
-
minimum_perc =
|
|
9
|
+
minimum_perc = 50
|
|
10
10
|
resource_name = foreman_remote_execution
|
|
@@ -383,6 +383,12 @@
|
|
|
383
383
|
"Try to abort the job without waiting for the results from the remote hosts": [
|
|
384
384
|
"Versuche den Job abzubrechen ohne auf das Resultat vom entfernten Host zu warten"
|
|
385
385
|
],
|
|
386
|
+
"New UI": [
|
|
387
|
+
""
|
|
388
|
+
],
|
|
389
|
+
"Switch to the new job invocation detail UI": [
|
|
390
|
+
""
|
|
391
|
+
],
|
|
386
392
|
"Task Details": [
|
|
387
393
|
"Aufgabendetails"
|
|
388
394
|
],
|
|
@@ -1096,6 +1102,9 @@
|
|
|
1096
1102
|
"Job templates": [
|
|
1097
1103
|
"Job-Vorlagen"
|
|
1098
1104
|
],
|
|
1105
|
+
"Job invocations detail": [
|
|
1106
|
+
""
|
|
1107
|
+
],
|
|
1099
1108
|
"Run Puppet Once": [
|
|
1100
1109
|
"Puppet einmal ausführen"
|
|
1101
1110
|
],
|
|
@@ -1108,6 +1117,21 @@
|
|
|
1108
1117
|
"Run a script": [
|
|
1109
1118
|
""
|
|
1110
1119
|
],
|
|
1120
|
+
"Not yet": [
|
|
1121
|
+
""
|
|
1122
|
+
],
|
|
1123
|
+
"Effective user:": [
|
|
1124
|
+
""
|
|
1125
|
+
],
|
|
1126
|
+
"Started at:": [
|
|
1127
|
+
""
|
|
1128
|
+
],
|
|
1129
|
+
"SSH user:": [
|
|
1130
|
+
""
|
|
1131
|
+
],
|
|
1132
|
+
"Template:": [
|
|
1133
|
+
""
|
|
1134
|
+
],
|
|
1111
1135
|
"Submit": [
|
|
1112
1136
|
""
|
|
1113
1137
|
],
|
|
@@ -1546,35 +1570,17 @@
|
|
|
1546
1570
|
"Active Filters:": [
|
|
1547
1571
|
""
|
|
1548
1572
|
],
|
|
1573
|
+
"A plugin bringing remote execution to the Foreman, completing the config management functionality with remote management functionality.": [
|
|
1574
|
+
"Ein Plugin, das Foreman entfernte Ausführung bietet und die Konfig-Verwaltungsfunktion mit einer entfernten Verwaltungsfunktion ergänzt."
|
|
1575
|
+
],
|
|
1549
1576
|
"Action with sub plans": [
|
|
1550
1577
|
"Aktion mit Unterplänen"
|
|
1551
1578
|
],
|
|
1552
|
-
"Check for long running tasks": [
|
|
1553
|
-
""
|
|
1554
|
-
],
|
|
1555
|
-
"Deliver notifications about long running tasks": [
|
|
1556
|
-
""
|
|
1557
|
-
],
|
|
1558
1579
|
"Import Puppet classes": [
|
|
1559
1580
|
"Puppet-Klassen importieren"
|
|
1560
1581
|
],
|
|
1561
1582
|
"Import facts": [
|
|
1562
1583
|
"Fakten importieren"
|
|
1563
|
-
],
|
|
1564
|
-
"A plugin bringing remote execution to the Foreman, completing the config management functionality with remote management functionality.": [
|
|
1565
|
-
"Ein Plugin, das Foreman entfernte Ausführung bietet und die Konfig-Verwaltungsfunktion mit einer entfernten Verwaltungsfunktion ergänzt."
|
|
1566
|
-
],
|
|
1567
|
-
"#~ \"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.\"": [
|
|
1568
|
-
"#~ \"Verteilen Sie die Ausführung auf N Sekunden. Wenn dies gesetzt und die Proxy-B\"#~ \"atch-Triggerung aktiviert ist, werden Aufgaben auf dem Smart Proxy in Batches \"#~ \"der Größe 1 ausgelöst.\""
|
|
1569
|
-
],
|
|
1570
|
-
"Distribute tasks over N seconds": [
|
|
1571
|
-
"Aufgaben über n Sekunden verteilen"
|
|
1572
|
-
],
|
|
1573
|
-
"Set to distribute over": [
|
|
1574
|
-
"Verteilen über"
|
|
1575
|
-
],
|
|
1576
|
-
"Time span": [
|
|
1577
|
-
"Zeitspanne"
|
|
1578
1584
|
]
|
|
1579
1585
|
}
|
|
1580
1586
|
}
|
|
@@ -383,6 +383,12 @@
|
|
|
383
383
|
"Try to abort the job without waiting for the results from the remote hosts": [
|
|
384
384
|
""
|
|
385
385
|
],
|
|
386
|
+
"New UI": [
|
|
387
|
+
""
|
|
388
|
+
],
|
|
389
|
+
"Switch to the new job invocation detail UI": [
|
|
390
|
+
""
|
|
391
|
+
],
|
|
386
392
|
"Task Details": [
|
|
387
393
|
""
|
|
388
394
|
],
|
|
@@ -1096,6 +1102,9 @@
|
|
|
1096
1102
|
"Job templates": [
|
|
1097
1103
|
""
|
|
1098
1104
|
],
|
|
1105
|
+
"Job invocations detail": [
|
|
1106
|
+
""
|
|
1107
|
+
],
|
|
1099
1108
|
"Run Puppet Once": [
|
|
1100
1109
|
""
|
|
1101
1110
|
],
|
|
@@ -1108,6 +1117,21 @@
|
|
|
1108
1117
|
"Run a script": [
|
|
1109
1118
|
""
|
|
1110
1119
|
],
|
|
1120
|
+
"Not yet": [
|
|
1121
|
+
""
|
|
1122
|
+
],
|
|
1123
|
+
"Effective user:": [
|
|
1124
|
+
""
|
|
1125
|
+
],
|
|
1126
|
+
"Started at:": [
|
|
1127
|
+
""
|
|
1128
|
+
],
|
|
1129
|
+
"SSH user:": [
|
|
1130
|
+
""
|
|
1131
|
+
],
|
|
1132
|
+
"Template:": [
|
|
1133
|
+
""
|
|
1134
|
+
],
|
|
1111
1135
|
"Submit": [
|
|
1112
1136
|
""
|
|
1113
1137
|
],
|
|
@@ -1546,21 +1570,6 @@
|
|
|
1546
1570
|
"Active Filters:": [
|
|
1547
1571
|
""
|
|
1548
1572
|
],
|
|
1549
|
-
"Action with sub plans": [
|
|
1550
|
-
""
|
|
1551
|
-
],
|
|
1552
|
-
"Check for long running tasks": [
|
|
1553
|
-
""
|
|
1554
|
-
],
|
|
1555
|
-
"Deliver notifications about long running tasks": [
|
|
1556
|
-
""
|
|
1557
|
-
],
|
|
1558
|
-
"Import Puppet classes": [
|
|
1559
|
-
""
|
|
1560
|
-
],
|
|
1561
|
-
"Import facts": [
|
|
1562
|
-
""
|
|
1563
|
-
],
|
|
1564
1573
|
"A plugin bringing remote execution to the Foreman, completing the config management functionality with remote management functionality.": [
|
|
1565
1574
|
""
|
|
1566
1575
|
]
|
data/app/assets/javascripts/foreman_remote_execution/locale/en_GB/foreman_remote_execution.js
CHANGED
|
@@ -383,6 +383,12 @@
|
|
|
383
383
|
"Try to abort the job without waiting for the results from the remote hosts": [
|
|
384
384
|
""
|
|
385
385
|
],
|
|
386
|
+
"New UI": [
|
|
387
|
+
""
|
|
388
|
+
],
|
|
389
|
+
"Switch to the new job invocation detail UI": [
|
|
390
|
+
""
|
|
391
|
+
],
|
|
386
392
|
"Task Details": [
|
|
387
393
|
""
|
|
388
394
|
],
|
|
@@ -1096,6 +1102,9 @@
|
|
|
1096
1102
|
"Job templates": [
|
|
1097
1103
|
""
|
|
1098
1104
|
],
|
|
1105
|
+
"Job invocations detail": [
|
|
1106
|
+
""
|
|
1107
|
+
],
|
|
1099
1108
|
"Run Puppet Once": [
|
|
1100
1109
|
""
|
|
1101
1110
|
],
|
|
@@ -1108,6 +1117,21 @@
|
|
|
1108
1117
|
"Run a script": [
|
|
1109
1118
|
""
|
|
1110
1119
|
],
|
|
1120
|
+
"Not yet": [
|
|
1121
|
+
""
|
|
1122
|
+
],
|
|
1123
|
+
"Effective user:": [
|
|
1124
|
+
""
|
|
1125
|
+
],
|
|
1126
|
+
"Started at:": [
|
|
1127
|
+
""
|
|
1128
|
+
],
|
|
1129
|
+
"SSH user:": [
|
|
1130
|
+
""
|
|
1131
|
+
],
|
|
1132
|
+
"Template:": [
|
|
1133
|
+
""
|
|
1134
|
+
],
|
|
1111
1135
|
"Submit": [
|
|
1112
1136
|
""
|
|
1113
1137
|
],
|
|
@@ -1546,23 +1570,17 @@
|
|
|
1546
1570
|
"Active Filters:": [
|
|
1547
1571
|
""
|
|
1548
1572
|
],
|
|
1549
|
-
"
|
|
1550
|
-
"Action with sub plans"
|
|
1551
|
-
],
|
|
1552
|
-
"Check for long running tasks": [
|
|
1573
|
+
"A plugin bringing remote execution to the Foreman, completing the config management functionality with remote management functionality.": [
|
|
1553
1574
|
""
|
|
1554
1575
|
],
|
|
1555
|
-
"
|
|
1556
|
-
""
|
|
1576
|
+
"Action with sub plans": [
|
|
1577
|
+
"Action with sub plans"
|
|
1557
1578
|
],
|
|
1558
1579
|
"Import Puppet classes": [
|
|
1559
1580
|
"Import Puppet classes"
|
|
1560
1581
|
],
|
|
1561
1582
|
"Import facts": [
|
|
1562
1583
|
"Import facts"
|
|
1563
|
-
],
|
|
1564
|
-
"A plugin bringing remote execution to the Foreman, completing the config management functionality with remote management functionality.": [
|
|
1565
|
-
""
|
|
1566
1584
|
]
|
|
1567
1585
|
}
|
|
1568
1586
|
}
|
|
@@ -383,6 +383,12 @@
|
|
|
383
383
|
"Try to abort the job without waiting for the results from the remote hosts": [
|
|
384
384
|
"Intentar abortar el trabajo sin esperar los resultados de hosts remotos"
|
|
385
385
|
],
|
|
386
|
+
"New UI": [
|
|
387
|
+
""
|
|
388
|
+
],
|
|
389
|
+
"Switch to the new job invocation detail UI": [
|
|
390
|
+
""
|
|
391
|
+
],
|
|
386
392
|
"Task Details": [
|
|
387
393
|
"Detalles de tareas"
|
|
388
394
|
],
|
|
@@ -1097,6 +1103,9 @@
|
|
|
1097
1103
|
"Job templates": [
|
|
1098
1104
|
"Plantillas de trabajo"
|
|
1099
1105
|
],
|
|
1106
|
+
"Job invocations detail": [
|
|
1107
|
+
""
|
|
1108
|
+
],
|
|
1100
1109
|
"Run Puppet Once": [
|
|
1101
1110
|
"Ejecutar Puppet una vez"
|
|
1102
1111
|
],
|
|
@@ -1109,6 +1118,21 @@
|
|
|
1109
1118
|
"Run a script": [
|
|
1110
1119
|
""
|
|
1111
1120
|
],
|
|
1121
|
+
"Not yet": [
|
|
1122
|
+
""
|
|
1123
|
+
],
|
|
1124
|
+
"Effective user:": [
|
|
1125
|
+
""
|
|
1126
|
+
],
|
|
1127
|
+
"Started at:": [
|
|
1128
|
+
""
|
|
1129
|
+
],
|
|
1130
|
+
"SSH user:": [
|
|
1131
|
+
""
|
|
1132
|
+
],
|
|
1133
|
+
"Template:": [
|
|
1134
|
+
""
|
|
1135
|
+
],
|
|
1112
1136
|
"Submit": [
|
|
1113
1137
|
""
|
|
1114
1138
|
],
|
|
@@ -1547,38 +1571,17 @@
|
|
|
1547
1571
|
"Active Filters:": [
|
|
1548
1572
|
""
|
|
1549
1573
|
],
|
|
1574
|
+
"A plugin bringing remote execution to the Foreman, completing the config management functionality with remote management functionality.": [
|
|
1575
|
+
"Un complemento que ofrece ejecución remota a Foreman y completa la funcionalidad de administración de la configuración con la funcionalidad de administración remota."
|
|
1576
|
+
],
|
|
1550
1577
|
"Action with sub plans": [
|
|
1551
1578
|
"Acción con subplanes"
|
|
1552
1579
|
],
|
|
1553
|
-
"Check for long running tasks": [
|
|
1554
|
-
""
|
|
1555
|
-
],
|
|
1556
|
-
"Deliver notifications about long running tasks": [
|
|
1557
|
-
""
|
|
1558
|
-
],
|
|
1559
1580
|
"Import Puppet classes": [
|
|
1560
1581
|
"Importar clases Puppet"
|
|
1561
1582
|
],
|
|
1562
1583
|
"Import facts": [
|
|
1563
1584
|
"Importar datos"
|
|
1564
|
-
],
|
|
1565
|
-
"A plugin bringing remote execution to the Foreman, completing the config management functionality with remote management functionality.": [
|
|
1566
|
-
"Un complemento que ofrece ejecución remota a Foreman y completa la funcionalidad de administración de la configuración con la funcionalidad de administración remota."
|
|
1567
|
-
],
|
|
1568
|
-
"Cron line format 'a b c d e', where:": [
|
|
1569
|
-
"Cron formato de línea 'a b c d e', donde:"
|
|
1570
|
-
],
|
|
1571
|
-
"#~ \"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.\"": [
|
|
1572
|
-
"#~ \"Distribuya la ejecución en N segundos. Si esto está configurado y se habilita \"#~ \"la activación por lotes del proxy, entonces las tareas se activarán en el prox\"#~ \"y inteligente en lotes de tamaño 1.\""
|
|
1573
|
-
],
|
|
1574
|
-
"Distribute tasks over N seconds": [
|
|
1575
|
-
"Distribuir tareas en N segundos"
|
|
1576
|
-
],
|
|
1577
|
-
"Set to distribute over": [
|
|
1578
|
-
"Definir para distribuir sobre"
|
|
1579
|
-
],
|
|
1580
|
-
"Time span": [
|
|
1581
|
-
"Período de tiempo"
|
|
1582
1585
|
]
|
|
1583
1586
|
}
|
|
1584
1587
|
}
|
|
@@ -383,6 +383,12 @@
|
|
|
383
383
|
"Try to abort the job without waiting for the results from the remote hosts": [
|
|
384
384
|
"Essayer d'abandonner le job sans attendre les résultats des hôtes distants"
|
|
385
385
|
],
|
|
386
|
+
"New UI": [
|
|
387
|
+
""
|
|
388
|
+
],
|
|
389
|
+
"Switch to the new job invocation detail UI": [
|
|
390
|
+
""
|
|
391
|
+
],
|
|
386
392
|
"Task Details": [
|
|
387
393
|
"Détails de la tâche"
|
|
388
394
|
],
|
|
@@ -1098,6 +1104,9 @@
|
|
|
1098
1104
|
"Job templates": [
|
|
1099
1105
|
"Modèles de job"
|
|
1100
1106
|
],
|
|
1107
|
+
"Job invocations detail": [
|
|
1108
|
+
""
|
|
1109
|
+
],
|
|
1101
1110
|
"Run Puppet Once": [
|
|
1102
1111
|
"Lancer Puppet"
|
|
1103
1112
|
],
|
|
@@ -1110,6 +1119,21 @@
|
|
|
1110
1119
|
"Run a script": [
|
|
1111
1120
|
""
|
|
1112
1121
|
],
|
|
1122
|
+
"Not yet": [
|
|
1123
|
+
""
|
|
1124
|
+
],
|
|
1125
|
+
"Effective user:": [
|
|
1126
|
+
""
|
|
1127
|
+
],
|
|
1128
|
+
"Started at:": [
|
|
1129
|
+
""
|
|
1130
|
+
],
|
|
1131
|
+
"SSH user:": [
|
|
1132
|
+
""
|
|
1133
|
+
],
|
|
1134
|
+
"Template:": [
|
|
1135
|
+
""
|
|
1136
|
+
],
|
|
1113
1137
|
"Submit": [
|
|
1114
1138
|
""
|
|
1115
1139
|
],
|
|
@@ -1548,38 +1572,17 @@
|
|
|
1548
1572
|
"Active Filters:": [
|
|
1549
1573
|
""
|
|
1550
1574
|
],
|
|
1575
|
+
"A plugin bringing remote execution to the Foreman, completing the config management functionality with remote management functionality.": [
|
|
1576
|
+
"Un greffon qui apporte l'exécution distante à Foreman, complétant la fonction de gestion de configuration avec la fonction d'exécution distante."
|
|
1577
|
+
],
|
|
1551
1578
|
"Action with sub plans": [
|
|
1552
1579
|
"Action avec sous-plans"
|
|
1553
1580
|
],
|
|
1554
|
-
"Check for long running tasks": [
|
|
1555
|
-
""
|
|
1556
|
-
],
|
|
1557
|
-
"Deliver notifications about long running tasks": [
|
|
1558
|
-
""
|
|
1559
|
-
],
|
|
1560
1581
|
"Import Puppet classes": [
|
|
1561
1582
|
"Importer des classes Puppet"
|
|
1562
1583
|
],
|
|
1563
1584
|
"Import facts": [
|
|
1564
1585
|
"Importer des faits"
|
|
1565
|
-
],
|
|
1566
|
-
"A plugin bringing remote execution to the Foreman, completing the config management functionality with remote management functionality.": [
|
|
1567
|
-
"Un greffon qui apporte l'exécution distante à Foreman, complétant la fonction de gestion de configuration avec la fonction d'exécution distante."
|
|
1568
|
-
],
|
|
1569
|
-
"Cron line format 'a b c d e', where:": [
|
|
1570
|
-
"Format de ligne cron 'a b c d' avec :"
|
|
1571
|
-
],
|
|
1572
|
-
"#~ \"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.\"": [
|
|
1573
|
-
"#~ \"Répartir l'exécution sur N secondes. Si ce paramètre est défini et que le décl\"#~ \"enchement par lot du proxy est activé, les tâches sont alors déclenchées sur l\"#~ \"e proxy intelligent par lots de taille 1.\""
|
|
1574
|
-
],
|
|
1575
|
-
"Distribute tasks over N seconds": [
|
|
1576
|
-
"Distribue les tâches sur N secondes"
|
|
1577
|
-
],
|
|
1578
|
-
"Set to distribute over": [
|
|
1579
|
-
"Défini pour distribuer sur"
|
|
1580
|
-
],
|
|
1581
|
-
"Time span": [
|
|
1582
|
-
"Durée"
|
|
1583
1586
|
]
|
|
1584
1587
|
}
|
|
1585
1588
|
}
|
|
@@ -383,6 +383,12 @@
|
|
|
383
383
|
"Try to abort the job without waiting for the results from the remote hosts": [
|
|
384
384
|
"リモートホストからの結果を待たずにジョブを中断しようとしています"
|
|
385
385
|
],
|
|
386
|
+
"New UI": [
|
|
387
|
+
""
|
|
388
|
+
],
|
|
389
|
+
"Switch to the new job invocation detail UI": [
|
|
390
|
+
""
|
|
391
|
+
],
|
|
386
392
|
"Task Details": [
|
|
387
393
|
"タスクの詳細"
|
|
388
394
|
],
|
|
@@ -1094,6 +1100,9 @@
|
|
|
1094
1100
|
"Job templates": [
|
|
1095
1101
|
"ジョブテンプレート"
|
|
1096
1102
|
],
|
|
1103
|
+
"Job invocations detail": [
|
|
1104
|
+
""
|
|
1105
|
+
],
|
|
1097
1106
|
"Run Puppet Once": [
|
|
1098
1107
|
"Puppet を 1 回実行"
|
|
1099
1108
|
],
|
|
@@ -1106,6 +1115,21 @@
|
|
|
1106
1115
|
"Run a script": [
|
|
1107
1116
|
""
|
|
1108
1117
|
],
|
|
1118
|
+
"Not yet": [
|
|
1119
|
+
""
|
|
1120
|
+
],
|
|
1121
|
+
"Effective user:": [
|
|
1122
|
+
""
|
|
1123
|
+
],
|
|
1124
|
+
"Started at:": [
|
|
1125
|
+
""
|
|
1126
|
+
],
|
|
1127
|
+
"SSH user:": [
|
|
1128
|
+
""
|
|
1129
|
+
],
|
|
1130
|
+
"Template:": [
|
|
1131
|
+
""
|
|
1132
|
+
],
|
|
1109
1133
|
"Submit": [
|
|
1110
1134
|
""
|
|
1111
1135
|
],
|
|
@@ -1544,38 +1568,17 @@
|
|
|
1544
1568
|
"Active Filters:": [
|
|
1545
1569
|
""
|
|
1546
1570
|
],
|
|
1571
|
+
"A plugin bringing remote execution to the Foreman, completing the config management functionality with remote management functionality.": [
|
|
1572
|
+
"リモート実行を Foreman で実現するプラグイン。設定管理機能にリモート管理機能を補完します。"
|
|
1573
|
+
],
|
|
1547
1574
|
"Action with sub plans": [
|
|
1548
1575
|
"サブプランによるアクション"
|
|
1549
1576
|
],
|
|
1550
|
-
"Check for long running tasks": [
|
|
1551
|
-
""
|
|
1552
|
-
],
|
|
1553
|
-
"Deliver notifications about long running tasks": [
|
|
1554
|
-
""
|
|
1555
|
-
],
|
|
1556
1577
|
"Import Puppet classes": [
|
|
1557
1578
|
"Puppet クラスのインポート"
|
|
1558
1579
|
],
|
|
1559
1580
|
"Import facts": [
|
|
1560
1581
|
"ファクトのインポート"
|
|
1561
|
-
],
|
|
1562
|
-
"A plugin bringing remote execution to the Foreman, completing the config management functionality with remote management functionality.": [
|
|
1563
|
-
"リモート実行を Foreman で実現するプラグイン。設定管理機能にリモート管理機能を補完します。"
|
|
1564
|
-
],
|
|
1565
|
-
"Cron line format 'a b c d e', where:": [
|
|
1566
|
-
"cron 行の形式は「a b c d e」です。ここで、"
|
|
1567
|
-
],
|
|
1568
|
-
"#~ \"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.\"": [
|
|
1569
|
-
"#~ \"N 秒間にわたって実行を分散します。この値が設定されていて、プロキシーバッチのトリガーが有効な場合には、タスクはサイズ 1 の単位で一括して、Smart P\"#~ \"roxy でトリガーされます。\""
|
|
1570
|
-
],
|
|
1571
|
-
"Distribute tasks over N seconds": [
|
|
1572
|
-
"N 秒間にわたってタスクを分散"
|
|
1573
|
-
],
|
|
1574
|
-
"Set to distribute over": [
|
|
1575
|
-
"分散を設定:"
|
|
1576
|
-
],
|
|
1577
|
-
"Time span": [
|
|
1578
|
-
"タイムスパン"
|
|
1579
1582
|
]
|
|
1580
1583
|
}
|
|
1581
1584
|
}
|