foreman_remote_execution 9.0.1 → 10.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/.github/workflows/release.yml +14 -0
- data/.tx/config +3 -1
- data/app/assets/javascripts/foreman_remote_execution/locale/de/foreman_remote_execution.js +1 -0
- data/app/assets/javascripts/foreman_remote_execution/locale/en/foreman_remote_execution.js +1 -0
- data/app/assets/javascripts/foreman_remote_execution/locale/en_GB/foreman_remote_execution.js +1 -0
- data/app/assets/javascripts/foreman_remote_execution/locale/es/foreman_remote_execution.js +1 -0
- data/app/assets/javascripts/foreman_remote_execution/locale/fr/foreman_remote_execution.js +1 -0
- data/app/assets/javascripts/foreman_remote_execution/locale/ja/foreman_remote_execution.js +1 -0
- data/app/assets/javascripts/foreman_remote_execution/locale/ko/foreman_remote_execution.js +1 -0
- data/app/assets/javascripts/foreman_remote_execution/locale/pt_BR/foreman_remote_execution.js +1 -0
- data/app/assets/javascripts/foreman_remote_execution/locale/ru/foreman_remote_execution.js +1 -0
- data/app/assets/javascripts/foreman_remote_execution/locale/zh_CN/foreman_remote_execution.js +1 -0
- data/app/assets/javascripts/foreman_remote_execution/locale/zh_TW/foreman_remote_execution.js +1 -0
- data/app/assets/javascripts/foreman_remote_execution/template_invocation.js +10 -1
- data/app/controllers/api/v2/job_invocations_controller.rb +1 -0
- data/app/controllers/job_invocations_controller.rb +30 -1
- data/app/controllers/ui_job_wizard_controller.rb +3 -1
- data/app/helpers/remote_execution_helper.rb +1 -1
- data/app/lib/actions/remote_execution/run_host_job.rb +1 -1
- data/app/lib/actions/remote_execution/run_hosts_job.rb +28 -2
- data/app/models/remote_execution_feature.rb +11 -8
- data/app/views/api/v2/job_invocations/base.json.rabl +1 -1
- data/app/views/job_invocations/_form.html.erb +1 -1
- data/app/views/job_invocations/show.html.erb +1 -1
- data/app/views/job_invocations/welcome.html.erb +1 -1
- data/app/views/templates/script/run_command.erb +1 -0
- data/config/routes.rb +2 -0
- data/db/migrate/20210816100932_rex_setting_category_to_dsl.rb +1 -1
- data/db/migrate/20220426145007_add_unique_feature_label_index.rb +14 -0
- data/lib/foreman_remote_execution/engine.rb +9 -9
- data/lib/foreman_remote_execution/tasks/explain_proxy_selection.rake +12 -3
- data/lib/foreman_remote_execution/version.rb +1 -1
- data/locale/Makefile +6 -3
- data/locale/action_names.rb +1 -1
- data/locale/de/LC_MESSAGES/foreman_remote_execution.mo +0 -0
- data/locale/de/foreman_remote_execution.po +67 -19
- data/locale/en/LC_MESSAGES/foreman_remote_execution.mo +0 -0
- data/locale/en/foreman_remote_execution.po +56 -8
- data/locale/en_GB/LC_MESSAGES/foreman_remote_execution.mo +0 -0
- data/locale/en_GB/foreman_remote_execution.po +58 -10
- data/locale/es/LC_MESSAGES/foreman_remote_execution.mo +0 -0
- data/locale/es/foreman_remote_execution.po +71 -23
- data/locale/foreman_remote_execution.pot +216 -141
- data/locale/fr/LC_MESSAGES/foreman_remote_execution.mo +0 -0
- data/locale/fr/foreman_remote_execution.po +104 -56
- data/locale/ja/LC_MESSAGES/foreman_remote_execution.mo +0 -0
- data/locale/ja/foreman_remote_execution.po +72 -24
- data/locale/ko/LC_MESSAGES/foreman_remote_execution.mo +0 -0
- data/locale/ko/foreman_remote_execution.po +63 -15
- data/locale/pt_BR/LC_MESSAGES/foreman_remote_execution.mo +0 -0
- data/locale/pt_BR/foreman_remote_execution.po +68 -20
- data/locale/ru/LC_MESSAGES/foreman_remote_execution.mo +0 -0
- data/locale/ru/foreman_remote_execution.po +63 -15
- data/locale/zh_CN/LC_MESSAGES/foreman_remote_execution.mo +0 -0
- data/locale/zh_CN/foreman_remote_execution.po +71 -23
- data/locale/zh_TW/LC_MESSAGES/foreman_remote_execution.mo +0 -0
- data/locale/zh_TW/foreman_remote_execution.po +63 -15
- data/package.json +6 -6
- data/webpack/JobWizard/Footer.js +104 -0
- data/webpack/JobWizard/JobWizard.js +105 -32
- data/webpack/JobWizard/JobWizard.scss +6 -17
- data/webpack/JobWizard/JobWizardConstants.js +1 -1
- data/webpack/JobWizard/JobWizardPageRerun.js +2 -0
- data/webpack/JobWizard/StartsBeforeErrorAlert.js +17 -0
- data/webpack/JobWizard/__tests__/__snapshots__/integration.test.js.snap +8 -0
- data/webpack/JobWizard/__tests__/fixtures.js +13 -1
- data/webpack/JobWizard/__tests__/integration.test.js +15 -0
- data/webpack/JobWizard/__tests__/validation.test.js +36 -0
- data/webpack/JobWizard/autofill.js +1 -0
- data/webpack/JobWizard/steps/AdvancedFields/__tests__/AdvancedFields.test.js +29 -10
- data/webpack/JobWizard/steps/AdvancedFields/__tests__/__snapshots__/AdvancedFields.test.js.snap +8 -0
- data/webpack/JobWizard/steps/HostsAndInputs/HostPreviewModal.js +5 -0
- data/webpack/JobWizard/steps/HostsAndInputs/SelectedChips.js +28 -14
- data/webpack/JobWizard/steps/HostsAndInputs/__tests__/HostsAndInputs.test.js +41 -4
- data/webpack/JobWizard/steps/HostsAndInputs/buildHostQuery.js +16 -10
- data/webpack/JobWizard/steps/HostsAndInputs/index.js +51 -3
- data/webpack/JobWizard/steps/ReviewDetails/ReviewDetails.test.js +117 -0
- data/webpack/JobWizard/steps/ReviewDetails/helpers.js +43 -0
- data/webpack/JobWizard/steps/ReviewDetails/index.js +169 -18
- data/webpack/JobWizard/steps/Schedule/QueryType.js +1 -1
- data/webpack/JobWizard/steps/Schedule/RepeatHour.js +0 -1
- data/webpack/JobWizard/steps/Schedule/RepeatWeek.js +1 -1
- data/webpack/JobWizard/steps/Schedule/__tests__/Schedule.test.js +52 -18
- data/webpack/JobWizard/steps/form/DateTimePicker.js +1 -2
- data/webpack/JobWizard/steps/form/GroupedSelectField.js +0 -1
- data/webpack/JobWizard/steps/form/SelectField.js +0 -1
- data/webpack/JobWizard/submit.js +14 -3
- data/webpack/react_app/components/RecentJobsCard/RecentJobsCard.js +4 -4
- data/webpack/react_app/components/RecentJobsCard/RecentJobsTable.js +2 -2
- data/webpack/react_app/components/RecentJobsCard/constants.js +2 -2
- data/webpack/react_app/components/RegistrationExtension/RexPull.js +0 -2
- metadata +23 -6
@@ -8,8 +8,8 @@ msgid ""
|
|
8
8
|
msgstr ""
|
9
9
|
"Project-Id-Version: foreman_remote_execution 1.0.0\n"
|
10
10
|
"Report-Msgid-Bugs-To: \n"
|
11
|
-
"POT-Creation-Date:
|
12
|
-
"PO-Revision-Date:
|
11
|
+
"POT-Creation-Date: 2023-05-19 12:40+0000\n"
|
12
|
+
"PO-Revision-Date: 2023-05-19 12:40+0000\n"
|
13
13
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
14
14
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
15
15
|
"Language: \n"
|
@@ -24,7 +24,7 @@ msgid ""
|
|
24
24
|
"is one instead?"
|
25
25
|
msgstr ""
|
26
26
|
|
27
|
-
#: ../app/assets/javascripts/foreman_remote_execution/template_invocation.js:
|
27
|
+
#: ../app/assets/javascripts/foreman_remote_execution/template_invocation.js:92
|
28
28
|
#: ../webpack/react_app/components/TargetingHosts/TargetingHosts.js:12
|
29
29
|
msgid "There was an error while updating the status, try refreshing the page."
|
30
30
|
msgstr ""
|
@@ -184,44 +184,48 @@ msgid ""
|
|
184
184
|
" to this feature will be used"
|
185
185
|
msgstr ""
|
186
186
|
|
187
|
-
#: ../app/controllers/api/v2/job_invocations_controller.rb:
|
187
|
+
#: ../app/controllers/api/v2/job_invocations_controller.rb:74
|
188
|
+
msgid "Override the global time to pickup interval for this invocation only"
|
189
|
+
msgstr ""
|
190
|
+
|
191
|
+
#: ../app/controllers/api/v2/job_invocations_controller.rb:88
|
188
192
|
msgid "Create a job invocation"
|
189
193
|
msgstr ""
|
190
194
|
|
191
|
-
#: ../app/controllers/api/v2/job_invocations_controller.rb:
|
195
|
+
#: ../app/controllers/api/v2/job_invocations_controller.rb:102
|
192
196
|
msgid "Get output for a host"
|
193
197
|
msgstr ""
|
194
198
|
|
195
|
-
#: ../app/controllers/api/v2/job_invocations_controller.rb:
|
199
|
+
#: ../app/controllers/api/v2/job_invocations_controller.rb:115
|
196
200
|
msgid "Get raw output for a host"
|
197
201
|
msgstr ""
|
198
202
|
|
199
|
-
#: ../app/controllers/api/v2/job_invocations_controller.rb:
|
203
|
+
#: ../app/controllers/api/v2/job_invocations_controller.rb:127
|
200
204
|
msgid "Cancel job invocation"
|
201
205
|
msgstr ""
|
202
206
|
|
203
|
-
#: ../app/controllers/api/v2/job_invocations_controller.rb:
|
207
|
+
#: ../app/controllers/api/v2/job_invocations_controller.rb:135
|
204
208
|
msgid "The job could not be cancelled."
|
205
209
|
msgstr ""
|
206
210
|
|
207
|
-
#: ../app/controllers/api/v2/job_invocations_controller.rb:
|
211
|
+
#: ../app/controllers/api/v2/job_invocations_controller.rb:140
|
208
212
|
msgid "Rerun job on failed hosts"
|
209
213
|
msgstr ""
|
210
214
|
|
211
|
-
#: ../app/controllers/api/v2/job_invocations_controller.rb:
|
215
|
+
#: ../app/controllers/api/v2/job_invocations_controller.rb:150
|
212
216
|
#: ../app/views/job_invocations/_form.html.erb:4
|
213
217
|
msgid "Could not rerun job %{id} because its template could not be found"
|
214
218
|
msgstr ""
|
215
219
|
|
216
|
-
#: ../app/controllers/api/v2/job_invocations_controller.rb:
|
220
|
+
#: ../app/controllers/api/v2/job_invocations_controller.rb:155
|
217
221
|
msgid "Get outputs of hosts in a job"
|
218
222
|
msgstr ""
|
219
223
|
|
220
|
-
#: ../app/controllers/api/v2/job_invocations_controller.rb:
|
224
|
+
#: ../app/controllers/api/v2/job_invocations_controller.rb:204
|
221
225
|
msgid "Host with id '%{id}' was not found"
|
222
226
|
msgstr ""
|
223
227
|
|
224
|
-
#: ../app/controllers/api/v2/job_invocations_controller.rb:
|
228
|
+
#: ../app/controllers/api/v2/job_invocations_controller.rb:213
|
225
229
|
msgid "Only one of feature or job_template_id can be specified"
|
226
230
|
msgstr ""
|
227
231
|
|
@@ -266,7 +270,7 @@ msgstr ""
|
|
266
270
|
#: ../app/views/job_invocations/_form.html.erb:11
|
267
271
|
#: ../app/views/job_templates/_custom_tabs.html.erb:5
|
268
272
|
#: ../webpack/JobWizard/steps/CategoryAndTemplate/CategoryAndTemplate.js:58
|
269
|
-
#: ../webpack/JobWizard/steps/ReviewDetails/index.js:
|
273
|
+
#: ../webpack/JobWizard/steps/ReviewDetails/index.js:104
|
270
274
|
msgid "Job category"
|
271
275
|
msgstr ""
|
272
276
|
|
@@ -360,19 +364,19 @@ msgstr ""
|
|
360
364
|
msgid "List of proxy IDs to be used for remote execution"
|
361
365
|
msgstr ""
|
362
366
|
|
363
|
-
#: ../app/controllers/job_invocations_controller.rb:
|
367
|
+
#: ../app/controllers/job_invocations_controller.rb:119
|
364
368
|
msgid "Trying to abort the job"
|
365
369
|
msgstr ""
|
366
370
|
|
367
|
-
#: ../app/controllers/job_invocations_controller.rb:
|
371
|
+
#: ../app/controllers/job_invocations_controller.rb:121
|
368
372
|
msgid "Trying to cancel the job"
|
369
373
|
msgstr ""
|
370
374
|
|
371
|
-
#: ../app/controllers/job_invocations_controller.rb:
|
375
|
+
#: ../app/controllers/job_invocations_controller.rb:125
|
372
376
|
msgid "The job cannot be aborted at the moment."
|
373
377
|
msgstr ""
|
374
378
|
|
375
|
-
#: ../app/controllers/job_invocations_controller.rb:
|
379
|
+
#: ../app/controllers/job_invocations_controller.rb:127
|
376
380
|
msgid "The job cannot be cancelled at the moment."
|
377
381
|
msgstr ""
|
378
382
|
|
@@ -403,7 +407,7 @@ msgstr ""
|
|
403
407
|
#: ../app/helpers/hosts_extensions_helper.rb:10
|
404
408
|
#: ../db/seeds.d/50-notification_blueprints.rb:3
|
405
409
|
#: ../db/seeds.d/50-notification_blueprints.rb:17
|
406
|
-
#: ../lib/foreman_remote_execution/engine.rb:
|
410
|
+
#: ../lib/foreman_remote_execution/engine.rb:243
|
407
411
|
#: ../webpack/JobWizard/JobWizardPageRerun.js:42
|
408
412
|
#: ../webpack/JobWizard/index.js:12
|
409
413
|
msgid "Jobs"
|
@@ -671,11 +675,11 @@ msgid ""
|
|
671
675
|
"_proxy}, %{fallback_proxy} in settings"
|
672
676
|
msgstr ""
|
673
677
|
|
674
|
-
#: ../app/lib/actions/remote_execution/run_hosts_job.rb:
|
678
|
+
#: ../app/lib/actions/remote_execution/run_hosts_job.rb:87
|
675
679
|
msgid "REX job has succeeded - %s"
|
676
680
|
msgstr ""
|
677
681
|
|
678
|
-
#: ../app/lib/actions/remote_execution/run_hosts_job.rb:
|
682
|
+
#: ../app/lib/actions/remote_execution/run_hosts_job.rb:95
|
679
683
|
msgid "REX job has failed - %s"
|
680
684
|
msgstr ""
|
681
685
|
|
@@ -834,13 +838,13 @@ msgstr ""
|
|
834
838
|
|
835
839
|
#: ../app/models/targeting.rb:10
|
836
840
|
#: ../webpack/JobWizard/steps/AdvancedFields/Fields.js:220
|
837
|
-
#: ../webpack/JobWizard/steps/ReviewDetails/index.js:
|
841
|
+
#: ../webpack/JobWizard/steps/ReviewDetails/index.js:273
|
838
842
|
msgid "Alphabetical"
|
839
843
|
msgstr ""
|
840
844
|
|
841
845
|
#: ../app/models/targeting.rb:10
|
842
846
|
#: ../webpack/JobWizard/steps/AdvancedFields/Fields.js:228
|
843
|
-
#: ../webpack/JobWizard/steps/ReviewDetails/index.js:
|
847
|
+
#: ../webpack/JobWizard/steps/ReviewDetails/index.js:272
|
844
848
|
msgid "Randomized"
|
845
849
|
msgstr ""
|
846
850
|
|
@@ -860,7 +864,7 @@ msgstr ""
|
|
860
864
|
msgid "Input"
|
861
865
|
msgstr ""
|
862
866
|
|
863
|
-
#: ../app/models/template_invocation.rb:
|
867
|
+
#: ../app/models/template_invocation.rb:99
|
864
868
|
msgid "Not all required inputs have values. Missing inputs: %s"
|
865
869
|
msgstr ""
|
866
870
|
|
@@ -877,7 +881,7 @@ msgid "Can't find Job Invocation for an id %s"
|
|
877
881
|
msgstr ""
|
878
882
|
|
879
883
|
#: ../app/views/dashboard/_latest-jobs.html.erb:2
|
880
|
-
#: ../lib/foreman_remote_execution/engine.rb:
|
884
|
+
#: ../lib/foreman_remote_execution/engine.rb:250
|
881
885
|
msgid "Latest Jobs"
|
882
886
|
msgstr ""
|
883
887
|
|
@@ -937,7 +941,7 @@ msgid "Timeout to kill after"
|
|
937
941
|
msgstr ""
|
938
942
|
|
939
943
|
#: ../app/views/job_invocations/_card_target_hosts.html.erb:5
|
940
|
-
#: ../webpack/JobWizard/steps/ReviewDetails/index.js:
|
944
|
+
#: ../webpack/JobWizard/steps/ReviewDetails/index.js:120
|
941
945
|
msgid "Target hosts"
|
942
946
|
msgstr ""
|
943
947
|
|
@@ -966,7 +970,7 @@ msgid "Location"
|
|
966
970
|
msgstr ""
|
967
971
|
|
968
972
|
#: ../app/views/job_invocations/_card_target_hosts.html.erb:37
|
969
|
-
#: ../lib/foreman_remote_execution/engine.rb:
|
973
|
+
#: ../lib/foreman_remote_execution/engine.rb:78
|
970
974
|
msgid "SSH User"
|
971
975
|
msgstr ""
|
972
976
|
|
@@ -987,7 +991,7 @@ msgstr ""
|
|
987
991
|
|
988
992
|
#: ../app/views/job_invocations/_form.html.erb:23
|
989
993
|
#: ../webpack/JobWizard/steps/CategoryAndTemplate/CategoryAndTemplate.js:68
|
990
|
-
#: ../webpack/JobWizard/steps/ReviewDetails/index.js:
|
994
|
+
#: ../webpack/JobWizard/steps/ReviewDetails/index.js:112
|
991
995
|
msgid "Job template"
|
992
996
|
msgstr ""
|
993
997
|
|
@@ -996,7 +1000,8 @@ msgid "Resolves to"
|
|
996
1000
|
msgstr ""
|
997
1001
|
|
998
1002
|
#: ../app/views/job_invocations/_form.html.erb:42
|
999
|
-
#: ../webpack/JobWizard/steps/HostsAndInputs/index.js:
|
1003
|
+
#: ../webpack/JobWizard/steps/HostsAndInputs/index.js:231
|
1004
|
+
#: ../webpack/JobWizard/steps/ReviewDetails/index.js:88
|
1000
1005
|
msgid "hosts"
|
1001
1006
|
msgstr ""
|
1002
1007
|
|
@@ -1018,7 +1023,7 @@ msgstr ""
|
|
1018
1023
|
|
1019
1024
|
#: ../app/views/job_invocations/_form.html.erb:85
|
1020
1025
|
#: ../webpack/JobWizard/steps/AdvancedFields/Fields.js:239
|
1021
|
-
#: ../webpack/JobWizard/steps/ReviewDetails/index.js:
|
1026
|
+
#: ../webpack/JobWizard/steps/ReviewDetails/index.js:262
|
1022
1027
|
msgid "SSH user"
|
1023
1028
|
msgstr ""
|
1024
1029
|
|
@@ -1030,7 +1035,7 @@ msgstr ""
|
|
1030
1035
|
#: ../app/views/job_invocations/_form.html.erb:88
|
1031
1036
|
#: ../app/views/job_templates/_custom_tabs.html.erb:26
|
1032
1037
|
#: ../webpack/JobWizard/steps/AdvancedFields/Fields.js:11
|
1033
|
-
#: ../webpack/JobWizard/steps/ReviewDetails/index.js:
|
1038
|
+
#: ../webpack/JobWizard/steps/ReviewDetails/index.js:263
|
1034
1039
|
msgid "Effective user"
|
1035
1040
|
msgstr ""
|
1036
1041
|
|
@@ -1044,7 +1049,7 @@ msgstr ""
|
|
1044
1049
|
#: ../app/views/job_invocations/_form.html.erb:94
|
1045
1050
|
#: ../app/views/job_templates/_custom_tabs.html.erb:13
|
1046
1051
|
#: ../webpack/JobWizard/steps/AdvancedFields/Fields.js:35
|
1047
|
-
#: ../webpack/JobWizard/steps/ReviewDetails/index.js:
|
1052
|
+
#: ../webpack/JobWizard/steps/ReviewDetails/index.js:265
|
1048
1053
|
msgid "Timeout to kill"
|
1049
1054
|
msgstr ""
|
1050
1055
|
|
@@ -1056,9 +1061,9 @@ msgid ""
|
|
1056
1061
|
msgstr ""
|
1057
1062
|
|
1058
1063
|
#: ../app/views/job_invocations/_form.html.erb:106
|
1059
|
-
#: ../lib/foreman_remote_execution/engine.rb:
|
1064
|
+
#: ../lib/foreman_remote_execution/engine.rb:163
|
1060
1065
|
#: ../webpack/JobWizard/steps/AdvancedFields/Fields.js:59
|
1061
|
-
#: ../webpack/JobWizard/steps/ReviewDetails/index.js:
|
1066
|
+
#: ../webpack/JobWizard/steps/ReviewDetails/index.js:266
|
1062
1067
|
msgid "Time to pickup"
|
1063
1068
|
msgstr ""
|
1064
1069
|
|
@@ -1094,8 +1099,8 @@ msgid ""
|
|
1094
1099
|
msgstr ""
|
1095
1100
|
|
1096
1101
|
#: ../app/views/job_invocations/_form.html.erb:112
|
1097
|
-
#: ../lib/foreman_remote_execution/engine.rb:
|
1098
|
-
#: ../lib/foreman_remote_execution/engine.rb:
|
1102
|
+
#: ../lib/foreman_remote_execution/engine.rb:92
|
1103
|
+
#: ../lib/foreman_remote_execution/engine.rb:94
|
1099
1104
|
#: ../webpack/JobWizard/steps/AdvancedFields/Fields.js:125
|
1100
1105
|
msgid "Effective user password"
|
1101
1106
|
msgstr ""
|
@@ -1110,7 +1115,7 @@ msgstr ""
|
|
1110
1115
|
|
1111
1116
|
#: ../app/views/job_invocations/_form.html.erb:116
|
1112
1117
|
#: ../webpack/JobWizard/steps/AdvancedFields/Fields.js:149
|
1113
|
-
#: ../webpack/JobWizard/steps/ReviewDetails/index.js:
|
1118
|
+
#: ../webpack/JobWizard/steps/ReviewDetails/index.js:267
|
1114
1119
|
msgid "Concurrency level"
|
1115
1120
|
msgstr ""
|
1116
1121
|
|
@@ -1123,7 +1128,7 @@ msgstr ""
|
|
1123
1128
|
|
1124
1129
|
#: ../app/views/job_invocations/_form.html.erb:117
|
1125
1130
|
#: ../webpack/JobWizard/steps/AdvancedFields/Fields.js:175
|
1126
|
-
#: ../webpack/JobWizard/steps/ReviewDetails/index.js:
|
1131
|
+
#: ../webpack/JobWizard/steps/ReviewDetails/index.js:268
|
1127
1132
|
msgid "Time span"
|
1128
1133
|
msgstr ""
|
1129
1134
|
|
@@ -1136,7 +1141,7 @@ msgstr ""
|
|
1136
1141
|
|
1137
1142
|
#: ../app/views/job_invocations/_form.html.erb:121
|
1138
1143
|
#: ../webpack/JobWizard/steps/AdvancedFields/Fields.js:200
|
1139
|
-
#: ../webpack/JobWizard/steps/ReviewDetails/index.js:
|
1144
|
+
#: ../webpack/JobWizard/steps/ReviewDetails/index.js:270
|
1140
1145
|
msgid "Execution ordering"
|
1141
1146
|
msgstr ""
|
1142
1147
|
|
@@ -1150,7 +1155,7 @@ msgid ""
|
|
1150
1155
|
msgstr ""
|
1151
1156
|
|
1152
1157
|
#: ../app/views/job_invocations/_form.html.erb:130
|
1153
|
-
#: ../webpack/JobWizard/steps/ReviewDetails/index.js:
|
1158
|
+
#: ../webpack/JobWizard/steps/ReviewDetails/index.js:252
|
1154
1159
|
msgid "Type of query"
|
1155
1160
|
msgstr ""
|
1156
1161
|
|
@@ -1158,8 +1163,8 @@ msgstr ""
|
|
1158
1163
|
msgid ""
|
1159
1164
|
"Type has impact on when is the query evaluated to hosts.<br><ul><li><b>Static<"
|
1160
1165
|
"/b> - evaluates just after you submit this form</li><li><b>Dynamic</b> - evalu"
|
1161
|
-
"ates just before the execution is started, so if it's
|
1162
|
-
"
|
1166
|
+
"ates just before the execution is started, so if it's planned in future, targe"
|
1167
|
+
"ted hosts set may change before it</li></ul>"
|
1163
1168
|
msgstr ""
|
1164
1169
|
|
1165
1170
|
#: ../app/views/job_invocations/_preview_hosts_list.html.erb:3
|
@@ -1375,7 +1380,7 @@ msgid "Remote execution"
|
|
1375
1380
|
msgstr ""
|
1376
1381
|
|
1377
1382
|
#: ../app/views/overrides/subnets/_rex_tab.html.erb:1
|
1378
|
-
#: ../lib/foreman_remote_execution/engine.rb:
|
1383
|
+
#: ../lib/foreman_remote_execution/engine.rb:63
|
1379
1384
|
msgid "Remote Execution"
|
1380
1385
|
msgstr ""
|
1381
1386
|
|
@@ -1397,7 +1402,7 @@ msgid ""
|
|
1397
1402
|
msgstr ""
|
1398
1403
|
|
1399
1404
|
#: ../app/views/remote_execution_features/index.html.erb:1
|
1400
|
-
#: ../lib/foreman_remote_execution/engine.rb:
|
1405
|
+
#: ../lib/foreman_remote_execution/engine.rb:237
|
1401
1406
|
msgid "Remote Execution Features"
|
1402
1407
|
msgstr ""
|
1403
1408
|
|
@@ -1517,69 +1522,69 @@ msgstr ""
|
|
1517
1522
|
msgid "Unable to create mail notification: %s"
|
1518
1523
|
msgstr ""
|
1519
1524
|
|
1520
|
-
#: ../lib/foreman_remote_execution/engine.rb:
|
1525
|
+
#: ../lib/foreman_remote_execution/engine.rb:66
|
1521
1526
|
msgid ""
|
1522
1527
|
"Search the host for any proxy with Remote Execution, useful when the host has "
|
1523
1528
|
"no subnet or the subnet does not have an execution proxy"
|
1524
1529
|
msgstr ""
|
1525
1530
|
|
1526
|
-
#: ../lib/foreman_remote_execution/engine.rb:
|
1531
|
+
#: ../lib/foreman_remote_execution/engine.rb:68
|
1527
1532
|
msgid "Fallback to Any Proxy"
|
1528
1533
|
msgstr ""
|
1529
1534
|
|
1530
|
-
#: ../lib/foreman_remote_execution/engine.rb:
|
1535
|
+
#: ../lib/foreman_remote_execution/engine.rb:71
|
1531
1536
|
msgid ""
|
1532
1537
|
"Search for remote execution proxy outside of the proxies assigned to the host."
|
1533
1538
|
" The search will be limited to the host's organization and location."
|
1534
1539
|
msgstr ""
|
1535
1540
|
|
1536
|
-
#: ../lib/foreman_remote_execution/engine.rb:
|
1541
|
+
#: ../lib/foreman_remote_execution/engine.rb:73
|
1537
1542
|
msgid "Enable Global Proxy"
|
1538
1543
|
msgstr ""
|
1539
1544
|
|
1540
|
-
#: ../lib/foreman_remote_execution/engine.rb:
|
1545
|
+
#: ../lib/foreman_remote_execution/engine.rb:76
|
1541
1546
|
msgid ""
|
1542
1547
|
"Default user to use for SSH. You may override per host by setting a parameter"
|
1543
1548
|
" called remote_execution_ssh_user."
|
1544
1549
|
msgstr ""
|
1545
1550
|
|
1546
|
-
#: ../lib/foreman_remote_execution/engine.rb:
|
1551
|
+
#: ../lib/foreman_remote_execution/engine.rb:81
|
1547
1552
|
msgid ""
|
1548
1553
|
"Default user to use for executing the script. If the user differs from the SSH"
|
1549
1554
|
" user, su or sudo is used to switch the user."
|
1550
1555
|
msgstr ""
|
1551
1556
|
|
1552
|
-
#: ../lib/foreman_remote_execution/engine.rb:
|
1557
|
+
#: ../lib/foreman_remote_execution/engine.rb:83
|
1553
1558
|
msgid "Effective User"
|
1554
1559
|
msgstr ""
|
1555
1560
|
|
1556
|
-
#: ../lib/foreman_remote_execution/engine.rb:
|
1561
|
+
#: ../lib/foreman_remote_execution/engine.rb:86
|
1557
1562
|
msgid "What command should be used to switch to the effective user. One of %s"
|
1558
1563
|
msgstr ""
|
1559
1564
|
|
1560
|
-
#: ../lib/foreman_remote_execution/engine.rb:
|
1565
|
+
#: ../lib/foreman_remote_execution/engine.rb:88
|
1561
1566
|
msgid "Effective User Method"
|
1562
1567
|
msgstr ""
|
1563
1568
|
|
1564
|
-
#: ../lib/foreman_remote_execution/engine.rb:
|
1569
|
+
#: ../lib/foreman_remote_execution/engine.rb:98
|
1565
1570
|
msgid "Whether we should sync templates from disk when running db:seed."
|
1566
1571
|
msgstr ""
|
1567
1572
|
|
1568
|
-
#: ../lib/foreman_remote_execution/engine.rb:
|
1573
|
+
#: ../lib/foreman_remote_execution/engine.rb:100
|
1569
1574
|
msgid "Sync Job Templates"
|
1570
1575
|
msgstr ""
|
1571
1576
|
|
1572
|
-
#: ../lib/foreman_remote_execution/engine.rb:
|
1577
|
+
#: ../lib/foreman_remote_execution/engine.rb:103
|
1573
1578
|
msgid ""
|
1574
1579
|
"Port to use for SSH communication. Default port 22. You may override per host "
|
1575
1580
|
"by setting a parameter called remote_execution_ssh_port."
|
1576
1581
|
msgstr ""
|
1577
1582
|
|
1578
|
-
#: ../lib/foreman_remote_execution/engine.rb:
|
1583
|
+
#: ../lib/foreman_remote_execution/engine.rb:105
|
1579
1584
|
msgid "SSH Port"
|
1580
1585
|
msgstr ""
|
1581
1586
|
|
1582
|
-
#: ../lib/foreman_remote_execution/engine.rb:
|
1587
|
+
#: ../lib/foreman_remote_execution/engine.rb:108
|
1583
1588
|
msgid ""
|
1584
1589
|
"Should the ip addresses on host interfaces be preferred over the fqdn? It is u"
|
1585
1590
|
"seful when DNS not resolving the fqdns properly. You may override this per hos"
|
@@ -1588,11 +1593,11 @@ msgid ""
|
|
1588
1593
|
"tting"
|
1589
1594
|
msgstr ""
|
1590
1595
|
|
1591
|
-
#: ../lib/foreman_remote_execution/engine.rb:
|
1596
|
+
#: ../lib/foreman_remote_execution/engine.rb:112
|
1592
1597
|
msgid "Connect by IP"
|
1593
1598
|
msgstr ""
|
1594
1599
|
|
1595
|
-
#: ../lib/foreman_remote_execution/engine.rb:
|
1600
|
+
#: ../lib/foreman_remote_execution/engine.rb:115
|
1596
1601
|
msgid ""
|
1597
1602
|
"When connecting using ip address, should the IPv6 addresses be preferred? If n"
|
1598
1603
|
"o IPv6 address is set, it falls back to IPv4 automatically. You may override t"
|
@@ -1601,97 +1606,105 @@ msgid ""
|
|
1601
1606
|
" default"
|
1602
1607
|
msgstr ""
|
1603
1608
|
|
1604
|
-
#: ../lib/foreman_remote_execution/engine.rb:
|
1609
|
+
#: ../lib/foreman_remote_execution/engine.rb:119
|
1605
1610
|
msgid "Prefer IPv6 over IPv4"
|
1606
1611
|
msgstr ""
|
1607
1612
|
|
1608
|
-
#: ../lib/foreman_remote_execution/engine.rb:
|
1613
|
+
#: ../lib/foreman_remote_execution/engine.rb:122
|
1609
1614
|
msgid ""
|
1610
1615
|
"Default password to use for SSH. You may override per host by setting a parame"
|
1611
1616
|
"ter called remote_execution_ssh_password"
|
1612
1617
|
msgstr ""
|
1613
1618
|
|
1614
|
-
#: ../lib/foreman_remote_execution/engine.rb:
|
1619
|
+
#: ../lib/foreman_remote_execution/engine.rb:124
|
1615
1620
|
msgid "Default SSH password"
|
1616
1621
|
msgstr ""
|
1617
1622
|
|
1618
|
-
#: ../lib/foreman_remote_execution/engine.rb:
|
1623
|
+
#: ../lib/foreman_remote_execution/engine.rb:128
|
1619
1624
|
msgid ""
|
1620
1625
|
"Default key passphrase to use for SSH. You may override per host by setting a "
|
1621
1626
|
"parameter called remote_execution_ssh_key_passphrase"
|
1622
1627
|
msgstr ""
|
1623
1628
|
|
1624
|
-
#: ../lib/foreman_remote_execution/engine.rb:
|
1629
|
+
#: ../lib/foreman_remote_execution/engine.rb:130
|
1625
1630
|
msgid "Default SSH key passphrase"
|
1626
1631
|
msgstr ""
|
1627
1632
|
|
1628
|
-
#: ../lib/foreman_remote_execution/engine.rb:
|
1633
|
+
#: ../lib/foreman_remote_execution/engine.rb:134
|
1629
1634
|
msgid ""
|
1630
1635
|
"Amount of workers in the pool to handle the execution of the remote execution "
|
1631
1636
|
"jobs. Restart of the dynflowd/foreman-tasks service is required."
|
1632
1637
|
msgstr ""
|
1633
1638
|
|
1634
|
-
#: ../lib/foreman_remote_execution/engine.rb:
|
1639
|
+
#: ../lib/foreman_remote_execution/engine.rb:136
|
1635
1640
|
msgid "Workers pool size"
|
1636
1641
|
msgstr ""
|
1637
1642
|
|
1638
|
-
#: ../lib/foreman_remote_execution/engine.rb:
|
1643
|
+
#: ../lib/foreman_remote_execution/engine.rb:139
|
1639
1644
|
msgid ""
|
1640
1645
|
"When enabled, working directories will be removed after task completion. You m"
|
1641
1646
|
"ay override this per host by setting a parameter called remote_execution_clean"
|
1642
1647
|
"up_working_dirs."
|
1643
1648
|
msgstr ""
|
1644
1649
|
|
1645
|
-
#: ../lib/foreman_remote_execution/engine.rb:
|
1650
|
+
#: ../lib/foreman_remote_execution/engine.rb:141
|
1646
1651
|
msgid "Cleanup working directories"
|
1647
1652
|
msgstr ""
|
1648
1653
|
|
1649
|
-
#: ../lib/foreman_remote_execution/engine.rb:
|
1654
|
+
#: ../lib/foreman_remote_execution/engine.rb:144
|
1650
1655
|
msgid ""
|
1651
1656
|
"Where to find the Cockpit instance for the Web Console button. By default, no"
|
1652
1657
|
" button is shown."
|
1653
1658
|
msgstr ""
|
1654
1659
|
|
1655
|
-
#: ../lib/foreman_remote_execution/engine.rb:
|
1660
|
+
#: ../lib/foreman_remote_execution/engine.rb:146
|
1656
1661
|
msgid "Cockpit URL"
|
1657
1662
|
msgstr ""
|
1658
1663
|
|
1659
|
-
#: ../lib/foreman_remote_execution/engine.rb:
|
1664
|
+
#: ../lib/foreman_remote_execution/engine.rb:149
|
1660
1665
|
msgid "Choose a job template that is pre-selected in job invocation form"
|
1661
1666
|
msgstr ""
|
1662
1667
|
|
1663
|
-
#: ../lib/foreman_remote_execution/engine.rb:
|
1668
|
+
#: ../lib/foreman_remote_execution/engine.rb:151
|
1664
1669
|
msgid "Form Job Template"
|
1665
1670
|
msgstr ""
|
1666
1671
|
|
1667
|
-
#: ../lib/foreman_remote_execution/engine.rb:
|
1672
|
+
#: ../lib/foreman_remote_execution/engine.rb:155
|
1668
1673
|
msgid ""
|
1669
1674
|
"Select a report template used for generating a report for a particular remote "
|
1670
1675
|
"execution job"
|
1671
1676
|
msgstr ""
|
1672
1677
|
|
1673
|
-
#: ../lib/foreman_remote_execution/engine.rb:
|
1678
|
+
#: ../lib/foreman_remote_execution/engine.rb:157
|
1674
1679
|
msgid "Job Invocation Report Template"
|
1675
1680
|
msgstr ""
|
1676
1681
|
|
1677
|
-
#: ../lib/foreman_remote_execution/engine.rb:
|
1682
|
+
#: ../lib/foreman_remote_execution/engine.rb:161
|
1678
1683
|
msgid ""
|
1679
1684
|
"Time in seconds within which the host has to pick up a job. If the job is not "
|
1680
1685
|
"picked up within this limit, the job will be cancelled. Defaults to 1 day."
|
1681
1686
|
msgstr ""
|
1682
1687
|
|
1683
|
-
#: ../lib/foreman_remote_execution/engine.rb:
|
1688
|
+
#: ../lib/foreman_remote_execution/engine.rb:232
|
1684
1689
|
msgid "Job templates"
|
1685
1690
|
msgstr ""
|
1686
1691
|
|
1687
|
-
#: ../lib/foreman_remote_execution/engine.rb:
|
1692
|
+
#: ../lib/foreman_remote_execution/engine.rb:361
|
1688
1693
|
msgid "Run Puppet Once"
|
1689
1694
|
msgstr ""
|
1690
1695
|
|
1691
|
-
#: ../lib/foreman_remote_execution/engine.rb:
|
1696
|
+
#: ../lib/foreman_remote_execution/engine.rb:362
|
1692
1697
|
msgid "Perform a single Puppet run"
|
1693
1698
|
msgstr ""
|
1694
1699
|
|
1700
|
+
#: ../lib/foreman_remote_execution/engine.rb:367
|
1701
|
+
msgid "Run Script"
|
1702
|
+
msgstr ""
|
1703
|
+
|
1704
|
+
#: ../lib/foreman_remote_execution/engine.rb:368
|
1705
|
+
msgid "Run a script"
|
1706
|
+
msgstr ""
|
1707
|
+
|
1695
1708
|
#: ../webpack/JobWizard/JobWizardConstants.js:11
|
1696
1709
|
msgid "Does not repeat"
|
1697
1710
|
msgstr ""
|
@@ -1732,7 +1745,7 @@ msgid "Recurring execution"
|
|
1732
1745
|
msgstr ""
|
1733
1746
|
|
1734
1747
|
#: ../webpack/JobWizard/JobWizardConstants.js:26
|
1735
|
-
msgid "Category and
|
1748
|
+
msgid "Category and template"
|
1736
1749
|
msgstr ""
|
1737
1750
|
|
1738
1751
|
#: ../webpack/JobWizard/JobWizardConstants.js:27
|
@@ -1740,7 +1753,7 @@ msgid "Target hosts and inputs"
|
|
1740
1753
|
msgstr ""
|
1741
1754
|
|
1742
1755
|
#: ../webpack/JobWizard/JobWizardConstants.js:28
|
1743
|
-
#: ../webpack/JobWizard/steps/ReviewDetails/index.js:
|
1756
|
+
#: ../webpack/JobWizard/steps/ReviewDetails/index.js:134
|
1744
1757
|
msgid "Advanced fields"
|
1745
1758
|
msgstr ""
|
1746
1759
|
|
@@ -1789,6 +1802,15 @@ msgid ""
|
|
1789
1802
|
"ifferent hosts than before."
|
1790
1803
|
msgstr ""
|
1791
1804
|
|
1805
|
+
#: ../webpack/JobWizard/StartsBeforeErrorAlert.js:9
|
1806
|
+
#: ../webpack/JobWizard/steps/Schedule/ScheduleFuture.js:41
|
1807
|
+
msgid "'Starts before' date must in the future"
|
1808
|
+
msgstr ""
|
1809
|
+
|
1810
|
+
#: ../webpack/JobWizard/StartsBeforeErrorAlert.js:11
|
1811
|
+
msgid "Please go back to \\\"Schedule\\\" - \\\"Future execution\\\" step to fix the error"
|
1812
|
+
msgstr ""
|
1813
|
+
|
1792
1814
|
#: ../webpack/JobWizard/index.js:35
|
1793
1815
|
msgid "Use legacy form"
|
1794
1816
|
msgstr ""
|
@@ -1850,76 +1872,157 @@ msgstr ""
|
|
1850
1872
|
msgid "Preview Hosts"
|
1851
1873
|
msgstr ""
|
1852
1874
|
|
1853
|
-
#: ../webpack/JobWizard/steps/HostsAndInputs/HostPreviewModal.js:
|
1875
|
+
#: ../webpack/JobWizard/steps/HostsAndInputs/HostPreviewModal.js:49
|
1854
1876
|
msgid "...and %s more"
|
1855
1877
|
msgstr ""
|
1856
1878
|
|
1857
|
-
#: ../webpack/JobWizard/steps/HostsAndInputs/SelectedChips.js:
|
1858
|
-
msgid "
|
1879
|
+
#: ../webpack/JobWizard/steps/HostsAndInputs/SelectedChips.js:21
|
1880
|
+
msgid "%s more"
|
1881
|
+
msgstr ""
|
1882
|
+
|
1883
|
+
#: ../webpack/JobWizard/steps/HostsAndInputs/SelectedChips.js:92
|
1884
|
+
msgid "Clear all filters"
|
1859
1885
|
msgstr ""
|
1860
1886
|
|
1861
1887
|
#: ../webpack/JobWizard/steps/HostsAndInputs/TemplateInputs.js:11
|
1862
1888
|
msgid "There are no available input fields for the selected template."
|
1863
1889
|
msgstr ""
|
1864
1890
|
|
1865
|
-
#: ../webpack/JobWizard/steps/HostsAndInputs/index.js:
|
1891
|
+
#: ../webpack/JobWizard/steps/HostsAndInputs/index.js:127
|
1892
|
+
#: ../webpack/JobWizard/steps/HostsAndInputs/index.js:164
|
1893
|
+
msgid "Please select at least one host"
|
1894
|
+
msgstr ""
|
1895
|
+
|
1896
|
+
#: ../webpack/JobWizard/steps/HostsAndInputs/index.js:161
|
1897
|
+
msgid "Please enter a search query"
|
1898
|
+
msgstr ""
|
1899
|
+
|
1900
|
+
#: ../webpack/JobWizard/steps/HostsAndInputs/index.js:168
|
1901
|
+
msgid "Please select at least one host collection"
|
1902
|
+
msgstr ""
|
1903
|
+
|
1904
|
+
#: ../webpack/JobWizard/steps/HostsAndInputs/index.js:172
|
1905
|
+
msgid "Please select at least one host group"
|
1906
|
+
msgstr ""
|
1907
|
+
|
1908
|
+
#: ../webpack/JobWizard/steps/HostsAndInputs/index.js:189
|
1866
1909
|
msgid "Filter by hosts"
|
1867
1910
|
msgstr ""
|
1868
1911
|
|
1869
|
-
#: ../webpack/JobWizard/steps/HostsAndInputs/index.js:
|
1912
|
+
#: ../webpack/JobWizard/steps/HostsAndInputs/index.js:199
|
1870
1913
|
msgid "Filter by host collections"
|
1871
1914
|
msgstr ""
|
1872
1915
|
|
1873
|
-
#: ../webpack/JobWizard/steps/HostsAndInputs/index.js:
|
1916
|
+
#: ../webpack/JobWizard/steps/HostsAndInputs/index.js:208
|
1874
1917
|
msgid "Filter by host groups"
|
1875
1918
|
msgstr ""
|
1876
1919
|
|
1877
|
-
#: ../webpack/JobWizard/steps/HostsAndInputs/index.js:
|
1920
|
+
#: ../webpack/JobWizard/steps/HostsAndInputs/index.js:224
|
1878
1921
|
msgid "Apply to"
|
1879
1922
|
msgstr ""
|
1880
1923
|
|
1881
|
-
#: ../webpack/JobWizard/steps/ReviewDetails/
|
1924
|
+
#: ../webpack/JobWizard/steps/ReviewDetails/helpers.js:7
|
1925
|
+
#: ../webpack/JobWizard/steps/Schedule/ScheduleRecurring.js:175
|
1926
|
+
msgid "Never"
|
1927
|
+
msgstr ""
|
1928
|
+
|
1929
|
+
#: ../webpack/JobWizard/steps/ReviewDetails/helpers.js:13
|
1930
|
+
msgid "After %s occurences"
|
1931
|
+
msgstr ""
|
1932
|
+
|
1933
|
+
#: ../webpack/JobWizard/steps/ReviewDetails/helpers.js:19
|
1934
|
+
msgid "Every hour at minute %s"
|
1935
|
+
msgstr ""
|
1936
|
+
|
1937
|
+
#: ../webpack/JobWizard/steps/ReviewDetails/helpers.js:21
|
1938
|
+
msgid "Every day at %s"
|
1939
|
+
msgstr ""
|
1940
|
+
|
1941
|
+
#: ../webpack/JobWizard/steps/ReviewDetails/helpers.js:29
|
1942
|
+
msgid "Every week on %s at %s"
|
1943
|
+
msgstr ""
|
1944
|
+
|
1945
|
+
#: ../webpack/JobWizard/steps/ReviewDetails/helpers.js:33
|
1946
|
+
msgid "Every month on %s at %s"
|
1947
|
+
msgstr ""
|
1948
|
+
|
1949
|
+
#: ../webpack/JobWizard/steps/ReviewDetails/helpers.js:38
|
1950
|
+
#: ../webpack/JobWizard/steps/Schedule/RepeatCron.js:19
|
1951
|
+
msgid "Cron line"
|
1952
|
+
msgstr ""
|
1953
|
+
|
1954
|
+
#: ../webpack/JobWizard/steps/ReviewDetails/index.js:81
|
1882
1955
|
msgid "No Target Hosts"
|
1883
1956
|
msgstr ""
|
1884
1957
|
|
1885
|
-
#: ../webpack/JobWizard/steps/ReviewDetails/index.js:
|
1886
|
-
msgid "
|
1958
|
+
#: ../webpack/JobWizard/steps/ReviewDetails/index.js:94
|
1959
|
+
msgid "view host names"
|
1887
1960
|
msgstr ""
|
1888
1961
|
|
1889
|
-
#: ../webpack/JobWizard/steps/ReviewDetails/index.js:
|
1962
|
+
#: ../webpack/JobWizard/steps/ReviewDetails/index.js:145
|
1890
1963
|
msgid "Hide all advanced fields"
|
1891
1964
|
msgstr ""
|
1892
1965
|
|
1893
|
-
#: ../webpack/JobWizard/steps/ReviewDetails/index.js:
|
1966
|
+
#: ../webpack/JobWizard/steps/ReviewDetails/index.js:155
|
1894
1967
|
msgid "Show all advanced fields"
|
1895
1968
|
msgstr ""
|
1896
1969
|
|
1897
|
-
#: ../webpack/JobWizard/steps/ReviewDetails/index.js:
|
1970
|
+
#: ../webpack/JobWizard/steps/ReviewDetails/index.js:165
|
1898
1971
|
msgid "Schedule type"
|
1899
1972
|
msgstr ""
|
1900
1973
|
|
1901
|
-
#: ../webpack/JobWizard/steps/ReviewDetails/index.js:
|
1974
|
+
#: ../webpack/JobWizard/steps/ReviewDetails/index.js:179
|
1902
1975
|
msgid "Recurrence"
|
1903
1976
|
msgstr ""
|
1904
1977
|
|
1905
|
-
#: ../webpack/JobWizard/steps/ReviewDetails/index.js:
|
1978
|
+
#: ../webpack/JobWizard/steps/ReviewDetails/index.js:194
|
1979
|
+
#: ../webpack/JobWizard/steps/Schedule/ScheduleFuture.js:52
|
1980
|
+
msgid "Starts at"
|
1981
|
+
msgstr ""
|
1982
|
+
|
1983
|
+
#: ../webpack/JobWizard/steps/ReviewDetails/index.js:203
|
1984
|
+
msgid "Starts Before"
|
1985
|
+
msgstr ""
|
1986
|
+
|
1987
|
+
#: ../webpack/JobWizard/steps/ReviewDetails/index.js:212
|
1988
|
+
#: ../webpack/JobWizard/steps/Schedule/ScheduleRecurring.js:88
|
1989
|
+
msgid "Starts"
|
1990
|
+
msgstr ""
|
1991
|
+
|
1992
|
+
#: ../webpack/JobWizard/steps/ReviewDetails/index.js:217
|
1993
|
+
#: ../webpack/JobWizard/steps/Schedule/ScheduleRecurring.js:103
|
1994
|
+
msgid "Now"
|
1995
|
+
msgstr ""
|
1996
|
+
|
1997
|
+
#: ../webpack/JobWizard/steps/ReviewDetails/index.js:223
|
1998
|
+
#: ../webpack/JobWizard/steps/Schedule/RepeatOn.js:64
|
1999
|
+
msgid "Repeats"
|
2000
|
+
msgstr ""
|
2001
|
+
|
2002
|
+
#: ../webpack/JobWizard/steps/ReviewDetails/index.js:231
|
2003
|
+
#: ../webpack/JobWizard/steps/Schedule/ScheduleRecurring.js:160
|
2004
|
+
msgid "Ends"
|
2005
|
+
msgstr ""
|
2006
|
+
|
2007
|
+
#: ../webpack/JobWizard/steps/ReviewDetails/index.js:244
|
2008
|
+
#: ../webpack/JobWizard/steps/Schedule/PurposeField.js:9
|
2009
|
+
msgid "Purpose"
|
2010
|
+
msgstr ""
|
2011
|
+
|
2012
|
+
#: ../webpack/JobWizard/steps/ReviewDetails/index.js:256
|
1906
2013
|
#: ../webpack/JobWizard/steps/Schedule/QueryType.js:22
|
1907
2014
|
msgid "Static query"
|
1908
2015
|
msgstr ""
|
1909
2016
|
|
1910
|
-
#: ../webpack/JobWizard/steps/ReviewDetails/index.js:
|
2017
|
+
#: ../webpack/JobWizard/steps/ReviewDetails/index.js:257
|
1911
2018
|
#: ../webpack/JobWizard/steps/Schedule/QueryType.js:32
|
1912
2019
|
msgid "Dynamic query"
|
1913
2020
|
msgstr ""
|
1914
2021
|
|
1915
|
-
#: ../webpack/JobWizard/steps/ReviewDetails/index.js:
|
2022
|
+
#: ../webpack/JobWizard/steps/ReviewDetails/index.js:264
|
1916
2023
|
msgid "Description Template"
|
1917
2024
|
msgstr ""
|
1918
2025
|
|
1919
|
-
#: ../webpack/JobWizard/steps/Schedule/PurposeField.js:9
|
1920
|
-
msgid "Purpose"
|
1921
|
-
msgstr ""
|
1922
|
-
|
1923
2026
|
#: ../webpack/JobWizard/steps/Schedule/PurposeField.js:11
|
1924
2027
|
msgid ""
|
1925
2028
|
"A special label for tracking a recurring job. There can be only one active job"
|
@@ -1940,12 +2043,8 @@ msgstr ""
|
|
1940
2043
|
|
1941
2044
|
#: ../webpack/JobWizard/steps/Schedule/QueryType.js:33
|
1942
2045
|
msgid ""
|
1943
|
-
"evaluates just before the execution is started, so if it's
|
1944
|
-
"
|
1945
|
-
msgstr ""
|
1946
|
-
|
1947
|
-
#: ../webpack/JobWizard/steps/Schedule/RepeatCron.js:19
|
1948
|
-
msgid "Cron line"
|
2046
|
+
"evaluates just before the execution is started, so if it's planned in future, "
|
2047
|
+
"targeted hosts set may change before it"
|
1949
2048
|
msgstr ""
|
1950
2049
|
|
1951
2050
|
#: ../webpack/JobWizard/steps/Schedule/RepeatCron.js:22
|
@@ -1990,11 +2089,11 @@ msgstr ""
|
|
1990
2089
|
msgid "range: 0-59"
|
1991
2090
|
msgstr ""
|
1992
2091
|
|
1993
|
-
#: ../webpack/JobWizard/steps/Schedule/RepeatHour.js:
|
2092
|
+
#: ../webpack/JobWizard/steps/Schedule/RepeatHour.js:66
|
1994
2093
|
msgid "Create"
|
1995
2094
|
msgstr ""
|
1996
2095
|
|
1997
|
-
#: ../webpack/JobWizard/steps/Schedule/RepeatHour.js:
|
2096
|
+
#: ../webpack/JobWizard/steps/Schedule/RepeatHour.js:80
|
1998
2097
|
msgid "Minute can only be a number between 0-59"
|
1999
2098
|
msgstr ""
|
2000
2099
|
|
@@ -2002,10 +2101,6 @@ msgstr ""
|
|
2002
2101
|
msgid "Days"
|
2003
2102
|
msgstr ""
|
2004
2103
|
|
2005
|
-
#: ../webpack/JobWizard/steps/Schedule/RepeatOn.js:64
|
2006
|
-
msgid "Repeats"
|
2007
|
-
msgstr ""
|
2008
|
-
|
2009
2104
|
#: ../webpack/JobWizard/steps/Schedule/RepeatWeek.js:42
|
2010
2105
|
msgid "Days of week"
|
2011
2106
|
msgstr ""
|
@@ -2020,14 +2115,6 @@ msgstr ""
|
|
2020
2115
|
msgid "'Starts before' date must be after 'Starts at' date"
|
2021
2116
|
msgstr ""
|
2022
2117
|
|
2023
|
-
#: ../webpack/JobWizard/steps/Schedule/ScheduleFuture.js:41
|
2024
|
-
msgid "'Starts before' date must in the future"
|
2025
|
-
msgstr ""
|
2026
|
-
|
2027
|
-
#: ../webpack/JobWizard/steps/Schedule/ScheduleFuture.js:52
|
2028
|
-
msgid "Starts at"
|
2029
|
-
msgstr ""
|
2030
|
-
|
2031
2118
|
#: ../webpack/JobWizard/steps/Schedule/ScheduleFuture.js:74
|
2032
2119
|
#: ../webpack/JobWizard/steps/Schedule/ScheduleFuture.js:111
|
2033
2120
|
msgid "Clear input"
|
@@ -2037,22 +2124,6 @@ msgstr ""
|
|
2037
2124
|
msgid "Starts before"
|
2038
2125
|
msgstr ""
|
2039
2126
|
|
2040
|
-
#: ../webpack/JobWizard/steps/Schedule/ScheduleRecurring.js:88
|
2041
|
-
msgid "Starts"
|
2042
|
-
msgstr ""
|
2043
|
-
|
2044
|
-
#: ../webpack/JobWizard/steps/Schedule/ScheduleRecurring.js:103
|
2045
|
-
msgid "Now"
|
2046
|
-
msgstr ""
|
2047
|
-
|
2048
|
-
#: ../webpack/JobWizard/steps/Schedule/ScheduleRecurring.js:160
|
2049
|
-
msgid "Ends"
|
2050
|
-
msgstr ""
|
2051
|
-
|
2052
|
-
#: ../webpack/JobWizard/steps/Schedule/ScheduleRecurring.js:175
|
2053
|
-
msgid "Never"
|
2054
|
-
msgstr ""
|
2055
|
-
|
2056
2127
|
#: ../webpack/JobWizard/steps/Schedule/ScheduleRecurring.js:183
|
2057
2128
|
msgid "End time needs to be after start time"
|
2058
2129
|
msgstr ""
|
@@ -2191,7 +2262,7 @@ msgstr ""
|
|
2191
2262
|
msgid "REX pull mode"
|
2192
2263
|
msgstr ""
|
2193
2264
|
|
2194
|
-
#: ../webpack/react_app/components/RegistrationExtension/RexPull.js:
|
2265
|
+
#: ../webpack/react_app/components/RegistrationExtension/RexPull.js:31
|
2195
2266
|
msgid ""
|
2196
2267
|
"Setup remote execution pull mode. If set to `Yes`, pull provider client will b"
|
2197
2268
|
"e deployed on the registered host. The inherited value is based on the `host_r"
|
@@ -2204,16 +2275,20 @@ msgstr ""
|
|
2204
2275
|
msgid "Host"
|
2205
2276
|
msgstr ""
|
2206
2277
|
|
2278
|
+
#: ../webpack/react_app/components/TargetingHosts/TargetingHostsLabelsRow.js:20
|
2279
|
+
msgid "Active Filters:"
|
2280
|
+
msgstr ""
|
2281
|
+
|
2207
2282
|
#: action_names.rb:2
|
2208
2283
|
msgid "Action with sub plans"
|
2209
2284
|
msgstr ""
|
2210
2285
|
|
2211
2286
|
#: action_names.rb:3
|
2212
|
-
msgid "Import
|
2287
|
+
msgid "Import Puppet classes"
|
2213
2288
|
msgstr ""
|
2214
2289
|
|
2215
2290
|
#: action_names.rb:4
|
2216
|
-
msgid "Import
|
2291
|
+
msgid "Import facts"
|
2217
2292
|
msgstr ""
|
2218
2293
|
|
2219
2294
|
#: gemspec.rb:2
|