foreman_remote_execution 13.1.0 → 13.2.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/assets/javascripts/foreman_remote_execution/locale/de/foreman_remote_execution.js +1000 -973
- data/app/assets/javascripts/foreman_remote_execution/locale/en/foreman_remote_execution.js +553 -526
- data/app/assets/javascripts/foreman_remote_execution/locale/en_GB/foreman_remote_execution.js +584 -557
- data/app/assets/javascripts/foreman_remote_execution/locale/es/foreman_remote_execution.js +1043 -1016
- data/app/assets/javascripts/foreman_remote_execution/locale/fr/foreman_remote_execution.js +1047 -1020
- data/app/assets/javascripts/foreman_remote_execution/locale/ja/foreman_remote_execution.js +1041 -1014
- data/app/assets/javascripts/foreman_remote_execution/locale/ka/foreman_remote_execution.js +1015 -988
- data/app/assets/javascripts/foreman_remote_execution/locale/ko/foreman_remote_execution.js +886 -859
- data/app/assets/javascripts/foreman_remote_execution/locale/pt_BR/foreman_remote_execution.js +1047 -1020
- data/app/assets/javascripts/foreman_remote_execution/locale/ru/foreman_remote_execution.js +901 -874
- data/app/assets/javascripts/foreman_remote_execution/locale/zh_CN/foreman_remote_execution.js +1041 -1014
- data/app/assets/javascripts/foreman_remote_execution/locale/zh_TW/foreman_remote_execution.js +886 -859
- data/app/controllers/api/v2/job_invocations_controller.rb +1 -0
- data/app/models/job_invocation.rb +23 -0
- data/app/models/job_invocation_composer.rb +2 -0
- data/app/views/api/v2/job_invocations/base.json.rabl +3 -2
- data/app/views/templates/script/package_action.erb +5 -2
- data/lib/foreman_remote_execution/version.rb +1 -1
- data/locale/de/foreman_remote_execution.po +27 -0
- data/locale/en/foreman_remote_execution.po +27 -0
- data/locale/en_GB/foreman_remote_execution.po +27 -0
- data/locale/es/foreman_remote_execution.po +27 -0
- data/locale/foreman_remote_execution.pot +177 -141
- data/locale/fr/foreman_remote_execution.po +27 -0
- data/locale/ja/foreman_remote_execution.po +27 -0
- data/locale/ka/foreman_remote_execution.po +27 -0
- data/locale/ko/foreman_remote_execution.po +27 -0
- data/locale/pt_BR/foreman_remote_execution.po +27 -0
- data/locale/ru/foreman_remote_execution.po +27 -0
- data/locale/zh_CN/foreman_remote_execution.po +27 -0
- data/locale/zh_TW/foreman_remote_execution.po +27 -0
- data/package.json +2 -1
- data/webpack/JobInvocationDetail/JobInvocationActions.js +134 -3
- data/webpack/JobInvocationDetail/JobInvocationConstants.js +14 -0
- data/webpack/JobInvocationDetail/JobInvocationDetail.scss +5 -2
- data/webpack/JobInvocationDetail/JobInvocationSelectors.js +5 -0
- data/webpack/JobInvocationDetail/JobInvocationSystemStatusChart.js +13 -9
- data/webpack/JobInvocationDetail/JobInvocationToolbarButtons.js +268 -0
- data/webpack/JobInvocationDetail/__tests__/MainInformation.test.js +259 -0
- data/webpack/JobInvocationDetail/__tests__/fixtures.js +117 -0
- data/webpack/JobInvocationDetail/index.js +58 -38
- data/webpack/JobWizard/JobWizardPageRerun.js +16 -11
- data/webpack/JobWizard/steps/HostsAndInputs/HostPreviewModal.js +8 -6
- data/webpack/__mocks__/foremanReact/Root/Context/ForemanContext/index.js +2 -0
- data/webpack/__mocks__/foremanReact/components/BreadcrumbBar/index.js +4 -0
- data/webpack/__mocks__/foremanReact/components/Head/index.js +10 -0
- data/webpack/__mocks__/foremanReact/components/HostDetails/DetailsCard/DefaultLoaderEmptyState.js +8 -0
- data/webpack/__mocks__/foremanReact/components/ToastsList/index.js +3 -0
- data/webpack/__mocks__/foremanReact/redux/API/APIActions.js +21 -0
- data/webpack/__mocks__/foremanReact/redux/API/APIConstants.js +7 -0
- data/webpack/__mocks__/foremanReact/redux/API/index.js +14 -0
- data/webpack/__mocks__/foremanReact/redux/middlewares/IntervalMiddleware/index.js +9 -0
- metadata +12 -2
@@ -17,1578 +17,1605 @@
|
|
17
17
|
"domain": "foreman_remote_execution",
|
18
18
|
"plural_forms": "nplurals=2; plural=n != 1;"
|
19
19
|
},
|
20
|
-
"
|
20
|
+
"${d.title} ${d.count} hosts": [
|
21
21
|
""
|
22
22
|
],
|
23
|
-
"
|
23
|
+
"%s": [
|
24
24
|
""
|
25
25
|
],
|
26
|
-
"
|
26
|
+
"%s ago": [
|
27
27
|
""
|
28
28
|
],
|
29
|
-
"
|
29
|
+
"%s job has been invoked": [
|
30
30
|
""
|
31
31
|
],
|
32
|
-
"
|
32
|
+
"%s more": [
|
33
33
|
""
|
34
34
|
],
|
35
|
-
"
|
35
|
+
"%{description} on %{host}": [
|
36
36
|
""
|
37
37
|
],
|
38
|
-
"
|
38
|
+
"'Starts before' date must be after 'Starts at' date": [
|
39
39
|
""
|
40
40
|
],
|
41
|
-
"
|
41
|
+
"'Starts before' date must in the future": [
|
42
42
|
""
|
43
43
|
],
|
44
|
-
"
|
44
|
+
"...and %s more": [
|
45
45
|
""
|
46
46
|
],
|
47
|
-
"
|
47
|
+
"...and %{count} more": [
|
48
|
+
"",
|
48
49
|
""
|
49
50
|
],
|
50
|
-
"
|
51
|
+
"A comma separated list of input names to be excluded from the foreign template.": [
|
51
52
|
""
|
52
53
|
],
|
53
|
-
"
|
54
|
+
"A comma separated list of input names to be included from the foreign template.": [
|
54
55
|
""
|
55
56
|
],
|
56
|
-
"
|
57
|
+
"A job '%{job_name}' has %{status} at %{time}": [
|
57
58
|
""
|
58
59
|
],
|
59
|
-
"
|
60
|
+
"A job '%{subject}' has failed": [
|
60
61
|
""
|
61
62
|
],
|
62
|
-
"
|
63
|
+
"A job '%{subject}' has finished successfully": [
|
63
64
|
""
|
64
65
|
],
|
65
|
-
"
|
66
|
+
"A notification when a job finishes": [
|
66
67
|
""
|
67
68
|
],
|
68
|
-
"
|
69
|
+
"A plugin bringing remote execution to the Foreman, completing the config management functionality with remote management functionality.": [
|
69
70
|
""
|
70
71
|
],
|
71
|
-
"
|
72
|
+
"A special label for tracking a recurring job. There can be only one active job with a given purpose at a time.": [
|
72
73
|
""
|
73
74
|
],
|
74
|
-
"
|
75
|
+
"A user to be used for SSH.": [
|
75
76
|
""
|
76
77
|
],
|
77
|
-
"
|
78
|
+
"A user to be used for executing the script. If it differs from the SSH user, su or sudo is used to switch the accounts.": [
|
78
79
|
""
|
79
80
|
],
|
80
|
-
"
|
81
|
+
"Abort Job": [
|
81
82
|
""
|
82
83
|
],
|
83
|
-
"
|
84
|
+
"Access denied": [
|
84
85
|
""
|
85
86
|
],
|
86
|
-
"
|
87
|
+
"Actions": [
|
87
88
|
""
|
88
89
|
],
|
89
|
-
"
|
90
|
+
"Active Filters:": [
|
90
91
|
""
|
91
92
|
],
|
92
|
-
"
|
93
|
+
"Add Foreign Input Set": [
|
93
94
|
""
|
94
95
|
],
|
95
|
-
"
|
96
|
+
"Advanced fields": [
|
96
97
|
""
|
97
98
|
],
|
98
|
-
"
|
99
|
+
"After": [
|
99
100
|
""
|
100
101
|
],
|
101
|
-
"
|
102
|
+
"After %s occurences": [
|
102
103
|
""
|
103
104
|
],
|
104
|
-
"
|
105
|
+
"All fields are required.": [
|
105
106
|
""
|
106
107
|
],
|
107
|
-
"
|
108
|
+
"Alphabetical": [
|
108
109
|
""
|
109
110
|
],
|
110
|
-
"
|
111
|
+
"Amount of workers in the pool to handle the execution of the remote execution jobs. Restart of the dynflowd/foreman-tasks service is required.": [
|
111
112
|
""
|
112
113
|
],
|
113
|
-
"
|
114
|
+
"Another interface is already set as execution. Are you sure you want to use this one instead?": [
|
114
115
|
""
|
115
116
|
],
|
116
|
-
"
|
117
|
+
"Any Location": [
|
117
118
|
""
|
118
119
|
],
|
119
|
-
"
|
120
|
+
"Any Organization": [
|
120
121
|
""
|
121
122
|
],
|
122
|
-
"
|
123
|
+
"Apply to": [
|
123
124
|
""
|
124
125
|
],
|
125
|
-
"
|
126
|
+
"At": [
|
126
127
|
""
|
127
128
|
],
|
128
|
-
"
|
129
|
+
"At minute": [
|
129
130
|
""
|
130
131
|
],
|
131
|
-
"
|
132
|
+
"Awaiting start": [
|
132
133
|
""
|
133
134
|
],
|
134
|
-
"
|
135
|
+
"Back": [
|
135
136
|
""
|
136
137
|
],
|
137
|
-
"
|
138
|
+
"Back to Job": [
|
138
139
|
""
|
139
140
|
],
|
140
|
-
"
|
141
|
+
"Bookmark": [
|
141
142
|
""
|
142
143
|
],
|
143
|
-
"
|
144
|
+
"Can't find Job Invocation for an id %s": [
|
144
145
|
""
|
145
146
|
],
|
146
|
-
"
|
147
|
+
"Cancel": [
|
147
148
|
""
|
148
149
|
],
|
149
|
-
"
|
150
|
+
"Cancel Job": [
|
150
151
|
""
|
151
152
|
],
|
152
|
-
"
|
153
|
+
"Cancel job invocation": [
|
153
154
|
""
|
154
155
|
],
|
155
|
-
"
|
156
|
+
"Canceled:": [
|
156
157
|
""
|
157
158
|
],
|
158
|
-
"
|
159
|
+
"Cancelled": [
|
159
160
|
""
|
160
161
|
],
|
161
|
-
"
|
162
|
+
"Cannot resolve hosts without a bookmark or search query": [
|
162
163
|
""
|
163
164
|
],
|
164
|
-
"
|
165
|
+
"Cannot resolve hosts without a user": [
|
165
166
|
""
|
166
167
|
],
|
167
|
-
"
|
168
|
+
"Cannot specify both bookmark_id and search_query": [
|
168
169
|
""
|
169
170
|
],
|
170
|
-
"
|
171
|
+
"Categories list failed with:": [
|
171
172
|
""
|
172
173
|
],
|
173
|
-
"
|
174
|
+
"Category and template": [
|
174
175
|
""
|
175
176
|
],
|
176
|
-
"
|
177
|
+
"Choose a job template that is pre-selected in job invocation form": [
|
177
178
|
""
|
178
179
|
],
|
179
|
-
"
|
180
|
+
"Circular dependency detected in foreign input set '%{template}' -> '%{target_template}'. Templates stack: %{templates_stack}": [
|
180
181
|
""
|
181
182
|
],
|
182
|
-
"
|
183
|
+
"Cleanup working directories": [
|
183
184
|
""
|
184
185
|
],
|
185
|
-
"
|
186
|
+
"Clear all filters": [
|
186
187
|
""
|
187
188
|
],
|
188
|
-
"
|
189
|
+
"Clear input": [
|
189
190
|
""
|
190
191
|
],
|
191
|
-
"
|
192
|
+
"Clone a provision template": [
|
192
193
|
""
|
193
194
|
],
|
194
|
-
"
|
195
|
+
"Close": [
|
195
196
|
""
|
196
197
|
],
|
197
|
-
"
|
198
|
+
"Cockpit URL": [
|
198
199
|
""
|
199
200
|
],
|
200
|
-
"
|
201
|
+
"Concurrency level": [
|
201
202
|
""
|
202
203
|
],
|
203
|
-
"
|
204
|
+
"Concurrency level limited to": [
|
204
205
|
""
|
205
206
|
],
|
206
|
-
"
|
207
|
+
"Connect by IP": [
|
207
208
|
""
|
208
209
|
],
|
209
|
-
"
|
210
|
+
"Control concurrency level and distribution over time": [
|
210
211
|
""
|
211
212
|
],
|
212
|
-
"
|
213
|
+
"Could not display data for job invocation.": [
|
213
214
|
""
|
214
215
|
],
|
215
|
-
"
|
216
|
+
"Could not find any suitable interface for execution": [
|
216
217
|
""
|
217
218
|
],
|
218
|
-
"
|
219
|
+
"Could not render the preview because no host matches the search query.": [
|
219
220
|
""
|
220
221
|
],
|
221
|
-
"
|
222
|
+
"Could not rerun job %{id} because its template could not be found": [
|
222
223
|
""
|
223
224
|
],
|
224
|
-
"
|
225
|
+
"Could not use any proxy for the %{provider} job. Consider configuring %{global_proxy}, %{fallback_proxy} in settings": [
|
225
226
|
""
|
226
227
|
],
|
227
|
-
"
|
228
|
+
"Could not use any template used in the job invocation": [
|
228
229
|
""
|
229
230
|
],
|
230
|
-
"
|
231
|
+
"Create": [
|
231
232
|
""
|
232
233
|
],
|
233
|
-
"
|
234
|
+
"Create Report": [
|
234
235
|
""
|
235
236
|
],
|
236
|
-
"
|
237
|
+
"Create a foreign input set": [
|
237
238
|
""
|
238
239
|
],
|
239
|
-
"
|
240
|
+
"Create a job invocation": [
|
240
241
|
""
|
241
242
|
],
|
242
|
-
"
|
243
|
+
"Create a job template": [
|
243
244
|
""
|
244
245
|
],
|
245
|
-
"
|
246
|
+
"Create a recurring job": [
|
246
247
|
""
|
247
248
|
],
|
248
|
-
"
|
249
|
+
"Create report for this job": [
|
249
250
|
""
|
250
251
|
],
|
251
|
-
"
|
252
|
+
"Cron line": [
|
252
253
|
""
|
253
254
|
],
|
254
|
-
"
|
255
|
+
"Cron line (extended)": [
|
255
256
|
""
|
256
257
|
],
|
257
|
-
"
|
258
|
+
"Cron line format '1 2 3 4 5', where:": [
|
258
259
|
""
|
259
260
|
],
|
260
|
-
"
|
261
|
+
"Cronline": [
|
261
262
|
""
|
262
263
|
],
|
263
|
-
"
|
264
|
+
"Current location %s is different from job's location %s. This job may run on different hosts than before.": [
|
264
265
|
""
|
265
266
|
],
|
266
|
-
"
|
267
|
+
"Current location %{loc_c} is different from job's location %{loc_j}.": [
|
267
268
|
""
|
268
269
|
],
|
269
|
-
"
|
270
|
+
"Current organization %s is different from job's organization %s. This job may run on different hosts than before.": [
|
270
271
|
""
|
271
272
|
],
|
272
|
-
"
|
273
|
+
"Current organization %{org_c} is different from job's organization %{org_j}.": [
|
273
274
|
""
|
274
275
|
],
|
275
|
-
"
|
276
|
+
"Daily": [
|
276
277
|
""
|
277
278
|
],
|
278
|
-
"
|
279
|
+
"Days": [
|
279
280
|
""
|
280
281
|
],
|
281
|
-
"
|
282
|
+
"Days of week": [
|
282
283
|
""
|
283
284
|
],
|
284
|
-
"
|
285
|
+
"Default SSH key passphrase": [
|
285
286
|
""
|
286
287
|
],
|
287
|
-
"
|
288
|
+
"Default SSH password": [
|
288
289
|
""
|
289
290
|
],
|
290
|
-
"
|
291
|
+
"Default key passphrase to use for SSH. You may override per host by setting a parameter called remote_execution_ssh_key_passphrase": [
|
291
292
|
""
|
292
293
|
],
|
293
|
-
"
|
294
|
+
"Default password to use for SSH. You may override per host by setting a parameter called remote_execution_ssh_password": [
|
294
295
|
""
|
295
296
|
],
|
296
|
-
"
|
297
|
+
"Default user to use for SSH. You may override per host by setting a parameter called remote_execution_ssh_user.": [
|
297
298
|
""
|
298
299
|
],
|
299
|
-
"
|
300
|
+
"Default user to use for executing the script. If the user differs from the SSH user, su or sudo is used to switch the user.": [
|
300
301
|
""
|
301
302
|
],
|
302
|
-
"
|
303
|
+
"Delete a foreign input set": [
|
303
304
|
""
|
304
305
|
],
|
305
|
-
"
|
306
|
+
"Delete a job template": [
|
306
307
|
""
|
307
308
|
],
|
308
|
-
"
|
309
|
+
"Description": [
|
309
310
|
""
|
310
311
|
],
|
311
|
-
"
|
312
|
+
"Description Template": [
|
312
313
|
""
|
313
314
|
],
|
314
|
-
"
|
315
|
+
"Description template": [
|
315
316
|
""
|
316
317
|
],
|
317
|
-
"
|
318
|
+
"Designation of a special purpose": [
|
318
319
|
""
|
319
320
|
],
|
320
|
-
"
|
321
|
+
"Display advanced fields": [
|
321
322
|
""
|
322
323
|
],
|
323
|
-
"
|
324
|
+
"Does not repeat": [
|
324
325
|
""
|
325
326
|
],
|
326
|
-
"
|
327
|
+
"Duplicated inputs detected: %{duplicated_inputs}": [
|
327
328
|
""
|
328
329
|
],
|
329
|
-
"
|
330
|
+
"Dynamic Query": [
|
330
331
|
""
|
331
332
|
],
|
332
|
-
"
|
333
|
+
"Dynamic query": [
|
333
334
|
""
|
334
335
|
],
|
335
|
-
"
|
336
|
+
"Edit %s": [
|
336
337
|
""
|
337
338
|
],
|
338
|
-
"
|
339
|
+
"Edit Job Template": [
|
339
340
|
""
|
340
341
|
],
|
341
|
-
"
|
342
|
+
"Edit Remote Execution Feature": [
|
342
343
|
""
|
343
344
|
],
|
344
|
-
"
|
345
|
+
"Edit job description template": [
|
345
346
|
""
|
346
347
|
],
|
347
|
-
"
|
348
|
+
"Effective User": [
|
348
349
|
""
|
349
350
|
],
|
350
|
-
"
|
351
|
+
"Effective User Method": [
|
351
352
|
""
|
352
353
|
],
|
353
|
-
"
|
354
|
+
"Effective user": [
|
354
355
|
""
|
355
356
|
],
|
356
|
-
"
|
357
|
+
"Effective user method \\\"%{current_value}\\\" is not one of %{valid_methods}": [
|
357
358
|
""
|
358
359
|
],
|
359
|
-
"
|
360
|
+
"Effective user options": [
|
360
361
|
""
|
361
362
|
],
|
362
|
-
"
|
363
|
+
"Effective user password": [
|
363
364
|
""
|
364
365
|
],
|
365
|
-
"
|
366
|
+
"Effective user password is only applicable for SSH provider. Other providers ignore this field. <br> Password is stored encrypted in DB until the job finishes. For future or recurring executions, it is removed after the last execution.": [
|
366
367
|
""
|
367
368
|
],
|
368
|
-
"
|
369
|
+
"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
370
|
""
|
370
371
|
],
|
371
|
-
"
|
372
|
+
"Effective user:": [
|
372
373
|
""
|
373
374
|
],
|
374
|
-
"
|
375
|
+
"Enable Global Proxy": [
|
375
376
|
""
|
376
377
|
],
|
377
|
-
"
|
378
|
+
"End time needs to be after start time": [
|
378
379
|
""
|
379
380
|
],
|
380
|
-
"
|
381
|
+
"Ends": [
|
381
382
|
""
|
382
383
|
],
|
383
|
-
"
|
384
|
+
"Error loading data from proxy": [
|
384
385
|
""
|
385
386
|
],
|
386
|
-
"
|
387
|
+
"Errors:": [
|
387
388
|
""
|
388
389
|
],
|
389
|
-
"
|
390
|
+
"Evaluated at:": [
|
390
391
|
""
|
391
392
|
],
|
392
|
-
"
|
393
|
+
"Every day at %s": [
|
393
394
|
""
|
394
395
|
],
|
395
|
-
"
|
396
|
+
"Every hour at minute %s": [
|
396
397
|
""
|
397
398
|
],
|
398
|
-
"
|
399
|
+
"Every month on %s at %s": [
|
399
400
|
""
|
400
401
|
],
|
401
|
-
"
|
402
|
+
"Every week on %s at %s": [
|
402
403
|
""
|
403
404
|
],
|
404
|
-
"
|
405
|
+
"Execute the job later, at a scheduled time.": [
|
405
406
|
""
|
406
407
|
],
|
407
|
-
"
|
408
|
+
"Execute the job now.": [
|
408
409
|
""
|
409
410
|
],
|
410
|
-
"
|
411
|
+
"Execute the job on a repeating schedule.": [
|
411
412
|
""
|
412
413
|
],
|
413
|
-
"
|
414
|
+
"Execute the jobs on hosts in randomized order": [
|
414
415
|
""
|
415
416
|
],
|
416
|
-
"
|
417
|
+
"Execution": [
|
417
418
|
""
|
418
419
|
],
|
419
|
-
"
|
420
|
+
"Execution order": [
|
420
421
|
""
|
421
422
|
],
|
422
|
-
"
|
423
|
+
"Execution ordering": [
|
423
424
|
""
|
424
425
|
],
|
425
|
-
"
|
426
|
+
"Execution ordering determines whether the jobs should be executed on hosts in alphabetical order or in randomized order.<br><ul><li><b>Ordered</b> - executes the jobs on hosts in alphabetical order</li><li><b>Randomized</b> - randomizes the order in which jobs are executed on hosts</li></ul>": [
|
426
427
|
""
|
427
428
|
],
|
428
|
-
"
|
429
|
+
"Exit status: %s": [
|
429
430
|
""
|
430
431
|
],
|
431
|
-
"
|
432
|
+
"Export a job template to ERB": [
|
432
433
|
""
|
433
434
|
],
|
434
|
-
"
|
435
|
+
"Failed": [
|
435
436
|
""
|
436
437
|
],
|
437
|
-
"
|
438
|
+
"Failed hosts": [
|
438
439
|
""
|
439
440
|
],
|
440
|
-
"
|
441
|
+
"Failed rendering template: %s": [
|
441
442
|
""
|
442
443
|
],
|
443
|
-
"
|
444
|
+
"Failed:": [
|
444
445
|
""
|
445
446
|
],
|
446
|
-
"
|
447
|
+
"Fallback to Any Proxy": [
|
447
448
|
""
|
448
449
|
],
|
449
|
-
"
|
450
|
+
"Feature input %{input_name} not defined in template %{template_name}": [
|
450
451
|
""
|
451
452
|
],
|
452
|
-
"
|
453
|
+
"Fill all required fields in all the steps": [
|
453
454
|
""
|
454
455
|
],
|
455
|
-
"
|
456
|
+
"Fill all required fields in all the steps to start the job": [
|
456
457
|
""
|
457
458
|
],
|
458
|
-
"
|
459
|
+
"Filter by host collections": [
|
459
460
|
""
|
460
461
|
],
|
461
|
-
"
|
462
|
+
"Filter by host groups": [
|
462
463
|
""
|
463
464
|
],
|
464
|
-
"
|
465
|
+
"Filter by hosts": [
|
465
466
|
""
|
466
467
|
],
|
467
|
-
"
|
468
|
-
"",
|
468
|
+
"Finished": [
|
469
469
|
""
|
470
470
|
],
|
471
|
-
"
|
471
|
+
"For Future execution a 'Starts at' date or 'Starts before' date must be selected. Immediate execution can be selected in the previous step.": [
|
472
472
|
""
|
473
473
|
],
|
474
|
-
"
|
474
|
+
"For example: 1, 2, 3, 4, 5...": [
|
475
475
|
""
|
476
476
|
],
|
477
|
-
"
|
477
|
+
"Foreign input set": [
|
478
478
|
""
|
479
479
|
],
|
480
|
-
"
|
480
|
+
"Foreman can run arbitrary commands on remote hosts using different providers, such as SSH or Ansible. Communication goes through the Smart Proxy so Foreman does not have to have direct access to the target hosts and can scale to control many hosts.": [
|
481
481
|
""
|
482
482
|
],
|
483
|
-
"
|
483
|
+
"Form Job Template": [
|
484
484
|
""
|
485
485
|
],
|
486
|
-
"
|
486
|
+
"Future execution": [
|
487
487
|
""
|
488
488
|
],
|
489
|
-
"
|
489
|
+
"Get output for a host": [
|
490
490
|
""
|
491
491
|
],
|
492
|
-
"
|
492
|
+
"Get outputs of hosts in a job": [
|
493
493
|
""
|
494
494
|
],
|
495
|
-
"
|
495
|
+
"Get raw output for a host": [
|
496
496
|
""
|
497
497
|
],
|
498
|
-
"
|
498
|
+
"Has to be a positive number": [
|
499
499
|
""
|
500
500
|
],
|
501
|
-
"
|
501
|
+
"Hide advanced fields": [
|
502
502
|
""
|
503
503
|
],
|
504
|
-
"
|
504
|
+
"Hide all advanced fields": [
|
505
505
|
""
|
506
506
|
],
|
507
|
-
"
|
507
|
+
"Host": [
|
508
508
|
""
|
509
509
|
],
|
510
|
-
"
|
510
|
+
"Host collections": [
|
511
511
|
""
|
512
512
|
],
|
513
|
-
"
|
513
|
+
"Host detail": [
|
514
514
|
""
|
515
515
|
],
|
516
|
-
"
|
516
|
+
"Host groups": [
|
517
517
|
""
|
518
518
|
],
|
519
|
-
"
|
519
|
+
"Host task": [
|
520
520
|
""
|
521
521
|
],
|
522
|
-
"
|
522
|
+
"Host with id '%{id}' was not found": [
|
523
523
|
""
|
524
524
|
],
|
525
|
-
"
|
525
|
+
"Hosts": [
|
526
526
|
""
|
527
527
|
],
|
528
|
-
"
|
528
|
+
"Hosts gone missing": [
|
529
529
|
""
|
530
530
|
],
|
531
|
-
"
|
531
|
+
"Hourly": [
|
532
532
|
""
|
533
533
|
],
|
534
|
-
"
|
534
|
+
"How often the job should occur, in the cron format": [
|
535
535
|
""
|
536
536
|
],
|
537
|
-
"
|
537
|
+
"Identifier of the Host interface for Remote execution": [
|
538
538
|
""
|
539
539
|
],
|
540
|
-
"
|
540
|
+
"Immediate execution": [
|
541
541
|
""
|
542
542
|
],
|
543
|
-
"
|
543
|
+
"Import": [
|
544
544
|
""
|
545
545
|
],
|
546
|
-
"
|
546
|
+
"Import a job template from ERB": [
|
547
547
|
""
|
548
548
|
],
|
549
|
-
"
|
549
|
+
"In Progress:": [
|
550
550
|
""
|
551
551
|
],
|
552
|
-
"
|
552
|
+
"Include all inputs from the foreign template": [
|
553
553
|
""
|
554
554
|
],
|
555
|
-
"
|
555
|
+
"Indicates that the action should be cancelled if it cannot be started before this time.": [
|
556
556
|
""
|
557
557
|
],
|
558
|
-
"
|
558
|
+
"Inherit from host parameter": [
|
559
559
|
""
|
560
560
|
],
|
561
|
-
"
|
561
|
+
"Input": [
|
562
562
|
""
|
563
563
|
],
|
564
|
-
"
|
564
|
+
"Input set description": [
|
565
565
|
""
|
566
566
|
],
|
567
|
-
"
|
567
|
+
"Inputs to use": [
|
568
568
|
""
|
569
569
|
],
|
570
|
-
"
|
570
|
+
"Interface with the '%s' identifier was specified as a remote execution interface, however the interface was not found on the host. If the interface exists, it needs to be created in Foreman during the registration.": [
|
571
571
|
""
|
572
572
|
],
|
573
|
-
"
|
573
|
+
"Internal proxy selector can only be used if Katello is enabled": [
|
574
574
|
""
|
575
575
|
],
|
576
|
-
"
|
576
|
+
"Interval in seconds, if the job is not picked up by a client within this interval it will be cancelled.": [
|
577
577
|
""
|
578
578
|
],
|
579
|
-
"
|
579
|
+
"Interval in seconds, if the job is not picked up by a client within this interval it will be cancelled. Applies only to pull-mqtt based jobs": [
|
580
580
|
""
|
581
581
|
],
|
582
|
-
"
|
582
|
+
"Invalid date": [
|
583
583
|
""
|
584
584
|
],
|
585
|
-
"
|
585
|
+
"Invalid time format": [
|
586
586
|
""
|
587
587
|
],
|
588
|
-
"
|
588
|
+
"Invocation type, one of %s": [
|
589
589
|
""
|
590
590
|
],
|
591
|
-
"
|
591
|
+
"Job": [
|
592
592
|
""
|
593
593
|
],
|
594
|
-
"
|
594
|
+
"Job Details": [
|
595
595
|
""
|
596
596
|
],
|
597
|
-
"
|
597
|
+
"Job Invocation": [
|
598
598
|
""
|
599
599
|
],
|
600
|
-
"
|
600
|
+
"Job Invocation Report Template": [
|
601
601
|
""
|
602
602
|
],
|
603
|
-
"
|
603
|
+
"Job Invocations": [
|
604
604
|
""
|
605
605
|
],
|
606
|
-
"
|
606
|
+
"Job Task": [
|
607
607
|
""
|
608
608
|
],
|
609
|
-
"
|
609
|
+
"Job Templates": [
|
610
610
|
""
|
611
611
|
],
|
612
|
-
"
|
612
|
+
"Job cancelled by user": [
|
613
613
|
""
|
614
614
|
],
|
615
|
-
"
|
615
|
+
"Job category": [
|
616
616
|
""
|
617
617
|
],
|
618
|
-
"
|
618
|
+
"Job execution failed": [
|
619
619
|
""
|
620
620
|
],
|
621
|
-
"
|
621
|
+
"Job finished with error": [
|
622
622
|
""
|
623
623
|
],
|
624
|
-
"
|
624
|
+
"Job invocation": [
|
625
625
|
""
|
626
626
|
],
|
627
|
-
"
|
627
|
+
"Job invocations": [
|
628
628
|
""
|
629
629
|
],
|
630
|
-
"
|
630
|
+
"Job invocations detail": [
|
631
631
|
""
|
632
632
|
],
|
633
|
-
"
|
633
|
+
"Job result": [
|
634
634
|
""
|
635
635
|
],
|
636
|
-
"
|
636
|
+
"Job template": [
|
637
637
|
""
|
638
638
|
],
|
639
|
-
"
|
639
|
+
"Job template ID to be used for the feature": [
|
640
640
|
""
|
641
641
|
],
|
642
|
-
"
|
642
|
+
"Job template imported successfully.": [
|
643
643
|
""
|
644
644
|
],
|
645
|
-
"
|
645
|
+
"Job templates": [
|
646
646
|
""
|
647
647
|
],
|
648
|
-
"
|
648
|
+
"JobTemplate|Locked": [
|
649
649
|
""
|
650
650
|
],
|
651
|
-
"
|
651
|
+
"JobTemplate|Name": [
|
652
652
|
""
|
653
653
|
],
|
654
|
-
"
|
654
|
+
"JobTemplate|Snippet": [
|
655
655
|
""
|
656
656
|
],
|
657
|
-
"
|
657
|
+
"Jobs": [
|
658
658
|
""
|
659
659
|
],
|
660
|
-
"
|
660
|
+
"Key passhprase is only applicable for SSH provider. Other providers ignore this field. <br> Passphrase is stored encrypted in DB until the job finishes. For future or recurring executions, it is removed after the last execution.": [
|
661
661
|
""
|
662
662
|
],
|
663
|
-
"
|
663
|
+
"Key passphrase is only applicable for SSH provider. Other providers ignore this field. Passphrase is stored encrypted in DB until the job finishes. For future or recurring executions, it is removed after the last execution.": [
|
664
664
|
""
|
665
665
|
],
|
666
|
-
"
|
666
|
+
"Label": [
|
667
667
|
""
|
668
668
|
],
|
669
|
-
"
|
669
|
+
"Last execution cancelled": [
|
670
670
|
""
|
671
671
|
],
|
672
|
-
"
|
672
|
+
"Last execution failed": [
|
673
673
|
""
|
674
674
|
],
|
675
|
-
"
|
675
|
+
"Last execution succeeded": [
|
676
676
|
""
|
677
677
|
],
|
678
|
-
"
|
678
|
+
"Latest Jobs": [
|
679
679
|
""
|
680
680
|
],
|
681
|
-
"
|
681
|
+
"Learn more about this in the documentation.": [
|
682
682
|
""
|
683
683
|
],
|
684
|
-
"
|
684
|
+
"List available remote execution features for a host": [
|
685
685
|
""
|
686
686
|
],
|
687
|
-
"
|
687
|
+
"List foreign input sets": [
|
688
688
|
""
|
689
689
|
],
|
690
|
-
"
|
690
|
+
"List job invocations": [
|
691
691
|
""
|
692
692
|
],
|
693
|
-
"
|
693
|
+
"List job templates": [
|
694
694
|
""
|
695
695
|
],
|
696
|
-
"
|
696
|
+
"List job templates per location": [
|
697
697
|
""
|
698
698
|
],
|
699
|
-
"
|
699
|
+
"List job templates per organization": [
|
700
700
|
""
|
701
701
|
],
|
702
|
-
"
|
702
|
+
"List of proxy IDs to be used for remote execution": [
|
703
703
|
""
|
704
704
|
],
|
705
|
-
"
|
705
|
+
"List remote execution features": [
|
706
706
|
""
|
707
707
|
],
|
708
|
-
"
|
708
|
+
"List template invocations belonging to job invocation": [
|
709
709
|
""
|
710
710
|
],
|
711
|
-
"
|
711
|
+
"Location": [
|
712
712
|
""
|
713
713
|
],
|
714
|
-
"
|
714
|
+
"Manual selection": [
|
715
715
|
""
|
716
716
|
],
|
717
|
-
"
|
717
|
+
"Minute can only be a number between 0-59": [
|
718
718
|
""
|
719
719
|
],
|
720
|
-
"
|
720
|
+
"Missing the required permissions: ${missingPermissions.join( ', ' )}": [
|
721
721
|
""
|
722
722
|
],
|
723
|
-
"
|
723
|
+
"Monthly": [
|
724
724
|
""
|
725
725
|
],
|
726
|
-
"
|
726
|
+
"Must select a bookmark or enter a search query": [
|
727
727
|
""
|
728
728
|
],
|
729
|
-
"
|
729
|
+
"N/A": [
|
730
730
|
""
|
731
731
|
],
|
732
|
-
"
|
732
|
+
"Name": [
|
733
733
|
""
|
734
734
|
],
|
735
|
-
"
|
735
|
+
"Never": [
|
736
736
|
""
|
737
737
|
],
|
738
|
-
"
|
738
|
+
"New Job Template": [
|
739
739
|
""
|
740
740
|
],
|
741
|
-
"
|
741
|
+
"New UI": [
|
742
742
|
""
|
743
743
|
],
|
744
|
-
"
|
744
|
+
"Next": [
|
745
745
|
""
|
746
746
|
],
|
747
|
-
"
|
747
|
+
"No (override)": [
|
748
748
|
""
|
749
749
|
],
|
750
|
-
"
|
750
|
+
"No Target Hosts": [
|
751
751
|
""
|
752
752
|
],
|
753
|
-
"
|
753
|
+
"No hosts found.": [
|
754
754
|
""
|
755
755
|
],
|
756
|
-
"
|
756
|
+
"No jobs available": [
|
757
757
|
""
|
758
758
|
],
|
759
|
-
"
|
759
|
+
"No results found": [
|
760
760
|
""
|
761
761
|
],
|
762
|
-
"
|
762
|
+
"No template mapped to feature %{feature_name}": [
|
763
763
|
""
|
764
764
|
],
|
765
|
-
"
|
765
|
+
"Not all required inputs have values. Missing inputs: %s": [
|
766
766
|
""
|
767
767
|
],
|
768
|
-
"
|
768
|
+
"Not available": [
|
769
769
|
""
|
770
770
|
],
|
771
|
-
"
|
772
|
-
"",
|
771
|
+
"Not yet": [
|
773
772
|
""
|
774
773
|
],
|
775
|
-
"
|
774
|
+
"Now": [
|
776
775
|
""
|
777
776
|
],
|
778
|
-
"
|
777
|
+
"On": [
|
779
778
|
""
|
780
779
|
],
|
781
|
-
"
|
780
|
+
"Only one of feature or job_template_id can be specified": [
|
782
781
|
""
|
783
782
|
],
|
784
|
-
"
|
783
|
+
"Opening job invocation form": [
|
785
784
|
""
|
786
785
|
],
|
787
|
-
"
|
786
|
+
"Organization": [
|
788
787
|
""
|
789
788
|
],
|
790
|
-
"
|
791
|
-
""
|
792
|
-
],
|
793
|
-
"effective user": [
|
789
|
+
"Override the description format from the template for this invocation only": [
|
794
790
|
""
|
795
791
|
],
|
796
|
-
"
|
792
|
+
"Override the global time to pickup interval for this invocation only": [
|
797
793
|
""
|
798
794
|
],
|
799
|
-
"
|
795
|
+
"Override the timeout interval from the template for this invocation only": [
|
800
796
|
""
|
801
797
|
],
|
802
|
-
"
|
798
|
+
"Overview": [
|
803
799
|
""
|
804
800
|
],
|
805
|
-
"
|
801
|
+
"Overwrite": [
|
806
802
|
""
|
807
803
|
],
|
808
|
-
"
|
804
|
+
"Overwrite template if it already exists": [
|
809
805
|
""
|
810
806
|
],
|
811
|
-
"
|
807
|
+
"Password": [
|
812
808
|
""
|
813
809
|
],
|
814
|
-
"
|
810
|
+
"Password is stored encrypted in DB until the job finishes. For future or recurring executions, it is removed after the last execution.": [
|
815
811
|
""
|
816
812
|
],
|
817
|
-
"
|
813
|
+
"Pending": [
|
818
814
|
""
|
819
815
|
],
|
820
|
-
"
|
816
|
+
"Perform a single Puppet run": [
|
821
817
|
""
|
822
818
|
],
|
823
|
-
"
|
819
|
+
"Perform no more executions after this time": [
|
824
820
|
""
|
825
821
|
],
|
826
|
-
"
|
822
|
+
"Permission Denied": [
|
827
823
|
""
|
828
824
|
],
|
829
|
-
"
|
825
|
+
"Please enter a search query": [
|
830
826
|
""
|
831
827
|
],
|
832
|
-
"
|
828
|
+
"Please go back to \\\\\\\"Schedule\\\\\\\" - \\\\\\\"Future execution\\\\\\\" step to fix the error": [
|
833
829
|
""
|
834
830
|
],
|
835
|
-
"
|
831
|
+
"Please refine your search.": [
|
836
832
|
""
|
837
833
|
],
|
838
|
-
"
|
834
|
+
"Please request the required permissions listed below from a Foreman administrator:": [
|
839
835
|
""
|
840
836
|
],
|
841
|
-
"
|
837
|
+
"Please select at least one host": [
|
842
838
|
""
|
843
839
|
],
|
844
|
-
"
|
840
|
+
"Please select at least one host collection": [
|
845
841
|
""
|
846
842
|
],
|
847
|
-
"
|
843
|
+
"Please select at least one host group": [
|
848
844
|
""
|
849
845
|
],
|
850
|
-
"
|
846
|
+
"Port to use for SSH communication. Default port 22. You may override per host by setting a parameter called remote_execution_ssh_port.": [
|
851
847
|
""
|
852
848
|
],
|
853
|
-
"
|
849
|
+
"Prefer IPv6 over IPv4": [
|
854
850
|
""
|
855
851
|
],
|
856
|
-
"
|
852
|
+
"Preview": [
|
857
853
|
""
|
858
854
|
],
|
859
|
-
"
|
855
|
+
"Preview Hosts": [
|
860
856
|
""
|
861
857
|
],
|
862
|
-
"
|
858
|
+
"Preview job description": [
|
863
859
|
""
|
864
860
|
],
|
865
|
-
"
|
861
|
+
"Preview templates": [
|
866
862
|
""
|
867
863
|
],
|
868
|
-
"
|
864
|
+
"Private key passphrase": [
|
869
865
|
""
|
870
866
|
],
|
871
|
-
"
|
867
|
+
"Problem with previewing the template: %{error}. Note that you must save template input changes before you try to preview it.": [
|
872
868
|
""
|
873
869
|
],
|
874
|
-
"
|
870
|
+
"Proceed Anyway": [
|
875
871
|
""
|
876
872
|
],
|
877
|
-
"
|
873
|
+
"Provider type": [
|
878
874
|
""
|
879
875
|
],
|
880
|
-
"
|
876
|
+
"Providers and templates": [
|
881
877
|
""
|
882
878
|
],
|
883
|
-
"
|
879
|
+
"Proxies": [
|
884
880
|
""
|
885
881
|
],
|
886
|
-
"
|
882
|
+
"Purpose": [
|
887
883
|
""
|
888
884
|
],
|
889
|
-
"
|
885
|
+
"Query type": [
|
890
886
|
""
|
891
887
|
],
|
892
|
-
"
|
888
|
+
"REX job has failed - %s": [
|
893
889
|
""
|
894
890
|
],
|
895
|
-
"
|
891
|
+
"REX job has finished - %s": [
|
896
892
|
""
|
897
893
|
],
|
898
|
-
"
|
894
|
+
"REX job has succeeded - %s": [
|
899
895
|
""
|
900
896
|
],
|
901
|
-
"
|
897
|
+
"REX pull mode": [
|
902
898
|
""
|
903
899
|
],
|
904
|
-
"
|
900
|
+
"Randomized": [
|
905
901
|
""
|
906
902
|
],
|
907
|
-
"
|
903
|
+
"Recent jobs": [
|
908
904
|
""
|
909
905
|
],
|
910
|
-
"
|
906
|
+
"Recurrence": [
|
911
907
|
""
|
912
908
|
],
|
913
|
-
"
|
909
|
+
"Recurring execution": [
|
914
910
|
""
|
915
911
|
],
|
916
|
-
"
|
912
|
+
"Recurring logic": [
|
917
913
|
""
|
918
914
|
],
|
919
|
-
"
|
915
|
+
"Recursive rendering of templates detected": [
|
920
916
|
""
|
921
917
|
],
|
922
|
-
"
|
918
|
+
"Refresh": [
|
923
919
|
""
|
924
920
|
],
|
925
|
-
"
|
921
|
+
"Remote Execution": [
|
926
922
|
""
|
927
923
|
],
|
928
|
-
"
|
924
|
+
"Remote Execution Features": [
|
929
925
|
""
|
930
926
|
],
|
931
|
-
"
|
927
|
+
"Remote Execution Interface": [
|
932
928
|
""
|
933
929
|
],
|
934
|
-
"
|
930
|
+
"Remote action:": [
|
935
931
|
""
|
936
932
|
],
|
937
|
-
"
|
933
|
+
"Remote execution": [
|
938
934
|
""
|
939
935
|
],
|
940
|
-
"
|
936
|
+
"Remote execution feature label that should be triggered, job template assigned to this feature will be used": [
|
941
937
|
""
|
942
938
|
],
|
943
|
-
"
|
939
|
+
"Remote execution job": [
|
944
940
|
""
|
945
941
|
],
|
946
|
-
"
|
942
|
+
"Repeat a maximum of N times": [
|
947
943
|
""
|
948
944
|
],
|
949
|
-
"
|
945
|
+
"Repeat amount can only be a positive number": [
|
950
946
|
""
|
951
947
|
],
|
952
|
-
"
|
948
|
+
"Repeats": [
|
953
949
|
""
|
954
950
|
],
|
955
|
-
"
|
951
|
+
"Rerun": [
|
956
952
|
""
|
957
953
|
],
|
958
|
-
"
|
954
|
+
"Rerun failed": [
|
959
955
|
""
|
960
956
|
],
|
961
|
-
"
|
957
|
+
"Rerun job on failed hosts": [
|
962
958
|
""
|
963
959
|
],
|
964
|
-
"
|
960
|
+
"Rerun on %s": [
|
965
961
|
""
|
966
962
|
],
|
967
|
-
"
|
963
|
+
"Rerun on failed hosts": [
|
968
964
|
""
|
969
965
|
],
|
970
|
-
"
|
966
|
+
"Rerun the job": [
|
971
967
|
""
|
972
968
|
],
|
973
|
-
"
|
969
|
+
"Reset to default": [
|
974
970
|
""
|
975
971
|
],
|
976
|
-
"
|
972
|
+
"Resolves to": [
|
977
973
|
""
|
978
974
|
],
|
979
|
-
"
|
975
|
+
"Results": [
|
980
976
|
""
|
981
977
|
],
|
982
|
-
"
|
978
|
+
"Review details": [
|
983
979
|
""
|
984
980
|
],
|
985
|
-
"
|
981
|
+
"Run": [
|
986
982
|
""
|
987
983
|
],
|
988
|
-
"
|
984
|
+
"Run Job": [
|
989
985
|
""
|
990
986
|
],
|
991
|
-
"
|
987
|
+
"Run Puppet Once": [
|
992
988
|
""
|
993
989
|
],
|
994
|
-
"
|
990
|
+
"Run Script": [
|
995
991
|
""
|
996
992
|
],
|
997
|
-
"
|
993
|
+
"Run a script": [
|
998
994
|
""
|
999
995
|
],
|
1000
|
-
"
|
996
|
+
"Run at most N tasks at a time": [
|
1001
997
|
""
|
1002
998
|
],
|
1003
|
-
"
|
999
|
+
"Run at most N tasks at a time. If this is set and proxy batch triggering is enabled, then tasks are triggered on the smart proxy in batches of size 1.": [
|
1004
1000
|
""
|
1005
1001
|
],
|
1006
|
-
"
|
1002
|
+
"Run job": [
|
1007
1003
|
""
|
1008
1004
|
],
|
1009
|
-
"
|
1005
|
+
"Run on selected hosts": [
|
1010
1006
|
""
|
1011
1007
|
],
|
1012
|
-
"
|
1008
|
+
"Running": [
|
1013
1009
|
""
|
1014
1010
|
],
|
1015
|
-
"
|
1011
|
+
"SSH Port": [
|
1016
1012
|
""
|
1017
1013
|
],
|
1018
|
-
"
|
1014
|
+
"SSH User": [
|
1019
1015
|
""
|
1020
1016
|
],
|
1021
|
-
"
|
1017
|
+
"SSH provider specific options": [
|
1022
1018
|
""
|
1023
1019
|
],
|
1024
|
-
"
|
1020
|
+
"SSH user": [
|
1025
1021
|
""
|
1026
1022
|
],
|
1027
|
-
"
|
1023
|
+
"SSH user:": [
|
1028
1024
|
""
|
1029
1025
|
],
|
1030
|
-
"
|
1026
|
+
"Schedule": [
|
1031
1027
|
""
|
1032
1028
|
],
|
1033
|
-
"
|
1029
|
+
"Schedule Remote Job": [
|
1034
1030
|
""
|
1035
1031
|
],
|
1036
|
-
"
|
1032
|
+
"Schedule a job": [
|
1037
1033
|
""
|
1038
1034
|
],
|
1039
|
-
"
|
1035
|
+
"Schedule the job for a future time": [
|
1040
1036
|
""
|
1041
1037
|
],
|
1042
|
-
"
|
1038
|
+
"Schedule the job to start at a later time": [
|
1043
1039
|
""
|
1044
1040
|
],
|
1045
|
-
"
|
1041
|
+
"Schedule type": [
|
1046
1042
|
""
|
1047
1043
|
],
|
1048
|
-
"
|
1044
|
+
"Scheduled": [
|
1049
1045
|
""
|
1050
1046
|
],
|
1051
|
-
"
|
1047
|
+
"Scheduled at:": [
|
1052
1048
|
""
|
1053
1049
|
],
|
1054
|
-
"
|
1050
|
+
"Scheduled to start at": [
|
1055
1051
|
""
|
1056
1052
|
],
|
1057
|
-
"
|
1053
|
+
"Scheduled to start before": [
|
1058
1054
|
""
|
1059
1055
|
],
|
1060
|
-
"
|
1056
|
+
"Scheduled: ${totalHosts} hosts": [
|
1061
1057
|
""
|
1062
1058
|
],
|
1063
|
-
"
|
1059
|
+
"Script": [
|
1064
1060
|
""
|
1065
1061
|
],
|
1066
|
-
"
|
1062
|
+
"Scroll to bottom": [
|
1067
1063
|
""
|
1068
1064
|
],
|
1069
|
-
"
|
1065
|
+
"Scroll to top": [
|
1070
1066
|
""
|
1071
1067
|
],
|
1072
|
-
"
|
1068
|
+
"Search Query": [
|
1073
1069
|
""
|
1074
1070
|
],
|
1075
|
-
"
|
1071
|
+
"Search for remote execution proxy outside of the proxies assigned to the host. The search will be limited to the host's organization and location.": [
|
1076
1072
|
""
|
1077
1073
|
],
|
1078
|
-
"
|
1074
|
+
"Search query": [
|
1079
1075
|
""
|
1080
1076
|
],
|
1081
|
-
"
|
1077
|
+
"Search the host for any proxy with Remote Execution, useful when the host has no subnet or the subnet does not have an execution proxy": [
|
1082
1078
|
""
|
1083
1079
|
],
|
1084
|
-
"
|
1080
|
+
"See more details at %s": [
|
1085
1081
|
""
|
1086
1082
|
],
|
1087
|
-
"
|
1083
|
+
"See the last task details": [
|
1088
1084
|
""
|
1089
1085
|
],
|
1090
|
-
"
|
1086
|
+
"See the task details": [
|
1091
1087
|
""
|
1092
1088
|
],
|
1093
1089
|
"Select a report template used for generating a report for a particular remote execution job": [
|
1094
1090
|
""
|
1095
1091
|
],
|
1096
|
-
"
|
1092
|
+
"Select an ERB file to upload in order to import a job template. The template must contain metadata in the first ERB comment.": [
|
1097
1093
|
""
|
1098
1094
|
],
|
1099
|
-
"
|
1095
|
+
"Select as many remote execution proxies as applicable for this subnet. When multiple proxies with the same provider are added, actions will be load balanced among them.": [
|
1100
1096
|
""
|
1101
1097
|
],
|
1102
|
-
"
|
1098
|
+
"Select the type of execution": [
|
1103
1099
|
""
|
1104
1100
|
],
|
1105
|
-
"
|
1101
|
+
"Set 'host_registration_remote_execution_pull' parameter for the host. If it is set to true, pull provider client will be deployed on the host": [
|
1106
1102
|
""
|
1107
1103
|
],
|
1108
|
-
"
|
1104
|
+
"Set SSH key passphrase": [
|
1109
1105
|
""
|
1110
1106
|
],
|
1111
|
-
"
|
1107
|
+
"Set SSH password": [
|
1112
1108
|
""
|
1113
1109
|
],
|
1114
|
-
"
|
1110
|
+
"Set SSH user": [
|
1115
1111
|
""
|
1116
1112
|
],
|
1117
|
-
"
|
1113
|
+
"Set password for effective user (using sudo-like mechanisms)": [
|
1118
1114
|
""
|
1119
1115
|
],
|
1120
|
-
"
|
1116
|
+
"Setup remote execution pull mode. If set to `Yes`, pull provider client will be deployed on the registered host. The inherited value is based on the `host_registration_remote_execution_pull` parameter. It can be inherited e.g. from host group, operating system, organization. When overridden, the selected value will be stored on host parameter level.": [
|
1121
1117
|
""
|
1122
1118
|
],
|
1123
|
-
"
|
1119
|
+
"Should the ip addresses on host interfaces be preferred over the fqdn? It is useful when DNS not resolving the fqdns properly. You may override this per host by setting a parameter called remote_execution_connect_by_ip. For dual-stacked hosts you should consider the remote_execution_connect_by_ip_prefer_ipv6 setting": [
|
1124
1120
|
""
|
1125
1121
|
],
|
1126
|
-
"
|
1122
|
+
"Should this interface be used for remote execution?": [
|
1127
1123
|
""
|
1128
1124
|
],
|
1129
|
-
"
|
1125
|
+
"Show Job status for the hosts": [
|
1130
1126
|
""
|
1131
1127
|
],
|
1132
|
-
"
|
1128
|
+
"Show all advanced fields": [
|
1133
1129
|
""
|
1134
1130
|
],
|
1135
|
-
"
|
1131
|
+
"Show foreign input set details": [
|
1136
1132
|
""
|
1137
1133
|
],
|
1138
|
-
"
|
1134
|
+
"Show job invocation": [
|
1139
1135
|
""
|
1140
1136
|
],
|
1141
|
-
"
|
1137
|
+
"Show job template details": [
|
1142
1138
|
""
|
1143
1139
|
],
|
1144
|
-
"
|
1140
|
+
"Show remote execution feature": [
|
1145
1141
|
""
|
1146
1142
|
],
|
1147
|
-
"
|
1143
|
+
"Skip to review": [
|
1148
1144
|
""
|
1149
1145
|
],
|
1150
|
-
"
|
1146
|
+
"Skip to review step": [
|
1151
1147
|
""
|
1152
1148
|
],
|
1153
|
-
"
|
1149
|
+
"Snippet": [
|
1154
1150
|
""
|
1155
1151
|
],
|
1156
|
-
"
|
1152
|
+
"Start": [
|
1157
1153
|
""
|
1158
1154
|
],
|
1159
|
-
"
|
1155
|
+
"Start job": [
|
1160
1156
|
""
|
1161
1157
|
],
|
1162
|
-
"
|
1158
|
+
"Started": [
|
1163
1159
|
""
|
1164
1160
|
],
|
1165
|
-
"
|
1161
|
+
"Started at:": [
|
1166
1162
|
""
|
1167
1163
|
],
|
1168
|
-
"
|
1164
|
+
"Starts": [
|
1169
1165
|
""
|
1170
1166
|
],
|
1171
|
-
"
|
1167
|
+
"Starts Before": [
|
1172
1168
|
""
|
1173
1169
|
],
|
1174
|
-
"
|
1170
|
+
"Starts at": [
|
1175
1171
|
""
|
1176
1172
|
],
|
1177
|
-
"
|
1173
|
+
"Starts before": [
|
1178
1174
|
""
|
1179
1175
|
],
|
1180
|
-
"
|
1176
|
+
"State": [
|
1181
1177
|
""
|
1182
1178
|
],
|
1183
|
-
"
|
1179
|
+
"Static Query": [
|
1184
1180
|
""
|
1185
1181
|
],
|
1186
|
-
"
|
1182
|
+
"Static query": [
|
1187
1183
|
""
|
1188
1184
|
],
|
1189
|
-
"
|
1185
|
+
"Status": [
|
1190
1186
|
""
|
1191
1187
|
],
|
1192
|
-
"
|
1188
|
+
"Submit": [
|
1193
1189
|
""
|
1194
1190
|
],
|
1195
|
-
"
|
1191
|
+
"Subscribe to all my jobs": [
|
1196
1192
|
""
|
1197
1193
|
],
|
1198
|
-
"
|
1194
|
+
"Subscribe to my failed jobs": [
|
1199
1195
|
""
|
1200
1196
|
],
|
1201
|
-
"
|
1197
|
+
"Subscribe to my succeeded jobs": [
|
1202
1198
|
""
|
1203
1199
|
],
|
1204
|
-
"
|
1200
|
+
"Succeeded": [
|
1205
1201
|
""
|
1206
1202
|
],
|
1207
|
-
"
|
1203
|
+
"Succeeded:": [
|
1208
1204
|
""
|
1209
1205
|
],
|
1210
|
-
"
|
1206
|
+
"Success": [
|
1211
1207
|
""
|
1212
1208
|
],
|
1213
|
-
"
|
1209
|
+
"Switch to the new job invocation detail UI": [
|
1214
1210
|
""
|
1215
1211
|
],
|
1216
|
-
"
|
1212
|
+
"Sync Job Templates": [
|
1217
1213
|
""
|
1218
1214
|
],
|
1219
|
-
"
|
1215
|
+
"System status": [
|
1220
1216
|
""
|
1221
1217
|
],
|
1222
|
-
"
|
1218
|
+
"Systems": [
|
1223
1219
|
""
|
1224
1220
|
],
|
1225
|
-
"
|
1221
|
+
"Target hosts": [
|
1226
1222
|
""
|
1227
1223
|
],
|
1228
|
-
"
|
1224
|
+
"Target hosts and inputs": [
|
1229
1225
|
""
|
1230
1226
|
],
|
1231
|
-
"
|
1227
|
+
"Target template ID": [
|
1232
1228
|
""
|
1233
1229
|
],
|
1234
|
-
"
|
1230
|
+
"Target: ": [
|
1235
1231
|
""
|
1236
1232
|
],
|
1237
|
-
"
|
1233
|
+
"Task Details": [
|
1238
1234
|
""
|
1239
1235
|
],
|
1240
|
-
"
|
1236
|
+
"Task cancelled": [
|
1241
1237
|
""
|
1242
1238
|
],
|
1243
|
-
"
|
1239
|
+
"Template ERB": [
|
1244
1240
|
""
|
1245
1241
|
],
|
1246
|
-
"
|
1242
|
+
"Template Invocation for %s": [
|
1247
1243
|
""
|
1248
1244
|
],
|
1249
|
-
"
|
1245
|
+
"Template failed with:": [
|
1250
1246
|
""
|
1251
1247
|
],
|
1252
|
-
"
|
1248
|
+
"Template name": [
|
1253
1249
|
""
|
1254
1250
|
],
|
1255
|
-
"
|
1251
|
+
"Template version": [
|
1256
1252
|
""
|
1257
1253
|
],
|
1258
|
-
"
|
1254
|
+
"Template with id '%{id}' was not found": [
|
1259
1255
|
""
|
1260
1256
|
],
|
1261
|
-
"
|
1257
|
+
"Template:": [
|
1262
1258
|
""
|
1263
1259
|
],
|
1264
|
-
"
|
1260
|
+
"Templates list failed with:": [
|
1265
1261
|
""
|
1266
1262
|
],
|
1267
|
-
"
|
1263
|
+
"The cron line supports extended cron line syntax. For details please refer to the ": [
|
1268
1264
|
""
|
1269
1265
|
],
|
1270
|
-
"
|
1266
|
+
"The dynamic query '%{query}' was not resolved yet. The list of hosts to which it would resolve now can be seen %{here}.": [
|
1271
1267
|
""
|
1272
1268
|
],
|
1273
|
-
"
|
1269
|
+
"The execution interface is used for remote execution": [
|
1274
1270
|
""
|
1275
1271
|
],
|
1276
|
-
"
|
1272
|
+
"The final host list may change because the selected query is dynamic. It will be rerun during execution.": [
|
1277
1273
|
""
|
1278
1274
|
],
|
1279
|
-
"
|
1275
|
+
"The job cannot be aborted at the moment.": [
|
1280
1276
|
""
|
1281
1277
|
],
|
1282
|
-
"
|
1278
|
+
"The job cannot be cancelled at the moment.": [
|
1283
1279
|
""
|
1284
1280
|
],
|
1285
|
-
"
|
1281
|
+
"The job could not be cancelled.": [
|
1286
1282
|
""
|
1287
1283
|
],
|
1288
|
-
"
|
1284
|
+
"The job template to use, parameter is required unless feature was specified": [
|
1289
1285
|
""
|
1290
1286
|
],
|
1291
|
-
"
|
1287
|
+
"The only applicable proxy %{proxy_names} is down": [
|
1288
|
+
"",
|
1292
1289
|
""
|
1293
1290
|
],
|
1294
|
-
"
|
1291
|
+
"The template %{template_name} mapped to feature %{feature_name} is not accessible by the user": [
|
1295
1292
|
""
|
1296
1293
|
],
|
1297
|
-
"
|
1294
|
+
"There are no available input fields for the selected template.": [
|
1298
1295
|
""
|
1299
1296
|
],
|
1300
|
-
"
|
1297
|
+
"There was an error while updating the status, try refreshing the page.": [
|
1301
1298
|
""
|
1302
1299
|
],
|
1303
|
-
"
|
1300
|
+
"This can happen if the host is removed or moved to another organization or location after the job was started": [
|
1304
1301
|
""
|
1305
1302
|
],
|
1306
|
-
"
|
1303
|
+
"This template is locked for editing.": [
|
1307
1304
|
""
|
1308
1305
|
],
|
1309
|
-
"Please
|
1306
|
+
"This template is locked. Please clone it to a new template to customize.": [
|
1310
1307
|
""
|
1311
1308
|
],
|
1312
|
-
"
|
1309
|
+
"This template is used to generate the description. Input values can be used using the syntax %{package}. You may also include the job category and template name using %{job_category} and %{template_name}.": [
|
1313
1310
|
""
|
1314
1311
|
],
|
1315
|
-
"
|
1312
|
+
"This template is used to generate the description.<br/>Input values can be used using the syntax %{package}.<br/>You may also include the job category and template<br/>name using %{job_category} and %{template_name}.": [
|
1316
1313
|
""
|
1317
1314
|
],
|
1318
|
-
"
|
1315
|
+
"Time in seconds from the start on the remote host after which the job should be killed.": [
|
1319
1316
|
""
|
1320
1317
|
],
|
1321
|
-
"
|
1318
|
+
"Time in seconds within which the host has to pick up a job. If the job is not picked up within this limit, the job will be cancelled. Defaults to 1 day. Applies only to pull-mqtt based jobs.": [
|
1322
1319
|
""
|
1323
1320
|
],
|
1324
|
-
"
|
1321
|
+
"Time to pickup": [
|
1325
1322
|
""
|
1326
1323
|
],
|
1327
|
-
"
|
1324
|
+
"Timeout to kill": [
|
1328
1325
|
""
|
1329
1326
|
],
|
1330
|
-
"
|
1327
|
+
"Timeout to kill after": [
|
1331
1328
|
""
|
1332
1329
|
],
|
1333
|
-
"
|
1330
|
+
"Toggle DEBUG": [
|
1334
1331
|
""
|
1335
1332
|
],
|
1336
|
-
"
|
1333
|
+
"Toggle STDERR": [
|
1337
1334
|
""
|
1338
1335
|
],
|
1339
|
-
"
|
1336
|
+
"Toggle STDOUT": [
|
1340
1337
|
""
|
1341
1338
|
],
|
1342
|
-
"
|
1339
|
+
"Toggle command": [
|
1343
1340
|
""
|
1344
1341
|
],
|
1345
|
-
"
|
1342
|
+
"Total hosts": [
|
1346
1343
|
""
|
1347
1344
|
],
|
1348
|
-
"
|
1345
|
+
"Try to abort the job on a host without waiting for its result": [
|
1349
1346
|
""
|
1350
1347
|
],
|
1351
|
-
"
|
1348
|
+
"Try to abort the job without waiting for the results from the remote hosts": [
|
1352
1349
|
""
|
1353
1350
|
],
|
1354
|
-
"
|
1351
|
+
"Try to cancel the job": [
|
1355
1352
|
""
|
1356
1353
|
],
|
1357
|
-
"
|
1354
|
+
"Try to cancel the job on a host": [
|
1358
1355
|
""
|
1359
1356
|
],
|
1360
|
-
"
|
1357
|
+
"Trying to abort the job": [
|
1361
1358
|
""
|
1362
1359
|
],
|
1363
|
-
"
|
1360
|
+
"Trying to cancel the job": [
|
1364
1361
|
""
|
1365
1362
|
],
|
1366
|
-
"
|
1363
|
+
"Type": [
|
1367
1364
|
""
|
1368
1365
|
],
|
1369
|
-
"
|
1366
|
+
"Type has impact on when is the query evaluated to hosts.": [
|
1370
1367
|
""
|
1371
1368
|
],
|
1372
|
-
"
|
1369
|
+
"Type has impact on when is the query evaluated to hosts.<br><ul><li><b>Static</b> - evaluates just after you submit this form</li><li><b>Dynamic</b> - evaluates just before the execution is started, so if it's planned in future, targeted hosts set may change before it</li></ul>": [
|
1373
1370
|
""
|
1374
1371
|
],
|
1375
|
-
"
|
1372
|
+
"Type of execution": [
|
1376
1373
|
""
|
1377
1374
|
],
|
1378
|
-
"
|
1375
|
+
"Type of query": [
|
1379
1376
|
""
|
1380
1377
|
],
|
1381
|
-
"
|
1378
|
+
"Unable to create mail notification: %s": [
|
1382
1379
|
""
|
1383
1380
|
],
|
1384
|
-
"
|
1381
|
+
"Unable to fetch public key": [
|
1385
1382
|
""
|
1386
1383
|
],
|
1387
|
-
"
|
1384
|
+
"Unable to remove host from known hosts": [
|
1388
1385
|
""
|
1389
1386
|
],
|
1390
|
-
"
|
1387
|
+
"Unable to save template. Correct highlighted errors": [
|
1391
1388
|
""
|
1392
1389
|
],
|
1393
|
-
"
|
1390
|
+
"Unknown execution status": [
|
1394
1391
|
""
|
1395
1392
|
],
|
1396
|
-
"
|
1393
|
+
"Unknown input %{input_name} for template %{template_name}": [
|
1397
1394
|
""
|
1398
1395
|
],
|
1399
|
-
"
|
1396
|
+
"Unknown remote execution feature %s": [
|
1400
1397
|
""
|
1401
1398
|
],
|
1402
|
-
"
|
1399
|
+
"Unsupported or no operating system found for this host.": [
|
1403
1400
|
""
|
1404
1401
|
],
|
1405
|
-
"
|
1402
|
+
"Update a foreign input set": [
|
1406
1403
|
""
|
1407
1404
|
],
|
1408
|
-
"
|
1405
|
+
"Update a job template": [
|
1409
1406
|
""
|
1410
1407
|
],
|
1411
|
-
"
|
1408
|
+
"Use default description template": [
|
1412
1409
|
""
|
1413
1410
|
],
|
1414
|
-
"
|
1411
|
+
"Use legacy form": [
|
1415
1412
|
""
|
1416
1413
|
],
|
1417
|
-
"
|
1414
|
+
"Use new job wizard": [
|
1418
1415
|
""
|
1419
1416
|
],
|
1420
|
-
"
|
1417
|
+
"Use old form": [
|
1421
1418
|
""
|
1422
1419
|
],
|
1423
|
-
"
|
1420
|
+
"User Inputs": [
|
1424
1421
|
""
|
1425
1422
|
],
|
1426
|
-
"
|
1423
|
+
"User can not execute job on host %s": [
|
1427
1424
|
""
|
1428
1425
|
],
|
1429
|
-
"
|
1426
|
+
"User can not execute job on infrastructure host %s": [
|
1430
1427
|
""
|
1431
1428
|
],
|
1432
|
-
"
|
1429
|
+
"User can not execute this job template": [
|
1433
1430
|
""
|
1434
1431
|
],
|
1435
|
-
"
|
1432
|
+
"User can not execute this job template on %s": [
|
1436
1433
|
""
|
1437
1434
|
],
|
1438
|
-
"
|
1435
|
+
"User input": [
|
1439
1436
|
""
|
1440
1437
|
],
|
1441
|
-
"
|
1438
|
+
"Value": [
|
1442
1439
|
""
|
1443
1440
|
],
|
1444
|
-
"
|
1441
|
+
"View all jobs": [
|
1445
1442
|
""
|
1446
1443
|
],
|
1447
|
-
"
|
1444
|
+
"View finished jobs": [
|
1448
1445
|
""
|
1449
1446
|
],
|
1450
|
-
"
|
1447
|
+
"View running jobs": [
|
1451
1448
|
""
|
1452
1449
|
],
|
1453
|
-
"
|
1450
|
+
"View scheduled jobs": [
|
1454
1451
|
""
|
1455
1452
|
],
|
1456
|
-
"
|
1453
|
+
"Web Console": [
|
1457
1454
|
""
|
1458
1455
|
],
|
1459
|
-
"
|
1456
|
+
"Weekly": [
|
1460
1457
|
""
|
1461
1458
|
],
|
1462
|
-
"
|
1459
|
+
"What command should be used to switch to the effective user. One of %s": [
|
1463
1460
|
""
|
1464
1461
|
],
|
1465
|
-
"
|
1462
|
+
"What user should be used to run the script (using sudo-like mechanisms)": [
|
1466
1463
|
""
|
1467
1464
|
],
|
1468
|
-
"
|
1465
|
+
"What user should be used to run the script (using sudo-like mechanisms). Defaults to a template parameter or global setting.": [
|
1469
1466
|
""
|
1470
1467
|
],
|
1471
|
-
"
|
1468
|
+
"When connecting using ip address, should the IPv6 addresses be preferred? If no IPv6 address is set, it falls back to IPv4 automatically. You may override this per host by setting a parameter called remote_execution_connect_by_ip_prefer_ipv6. By default and for compatibility, IPv4 will be preferred over IPv6 by default": [
|
1472
1469
|
""
|
1473
1470
|
],
|
1474
|
-
"
|
1471
|
+
"When enabled, working directories will be removed after task completion. You may override this per host by setting a parameter called remote_execution_cleanup_working_dirs.": [
|
1475
1472
|
""
|
1476
1473
|
],
|
1477
|
-
"
|
1474
|
+
"Where to find the Cockpit instance for the Web Console button. By default, no button is shown.": [
|
1478
1475
|
""
|
1479
1476
|
],
|
1480
|
-
"
|
1477
|
+
"Whether it should be allowed to override the effective user from the invocation form.": [
|
1481
1478
|
""
|
1482
1479
|
],
|
1483
|
-
"
|
1480
|
+
"Whether or not the template is locked for editing": [
|
1484
1481
|
""
|
1485
1482
|
],
|
1486
|
-
"
|
1483
|
+
"Whether the current user login should be used as the effective user": [
|
1487
1484
|
""
|
1488
1485
|
],
|
1489
|
-
"
|
1486
|
+
"Whether to overwrite the template if it already exists": [
|
1490
1487
|
""
|
1491
1488
|
],
|
1492
|
-
"
|
1489
|
+
"Whether we should sync templates from disk when running db:seed.": [
|
1493
1490
|
""
|
1494
1491
|
],
|
1495
|
-
"
|
1492
|
+
"Workers pool size": [
|
1496
1493
|
""
|
1497
1494
|
],
|
1498
|
-
"
|
1495
|
+
"Yes (override)": [
|
1499
1496
|
""
|
1500
1497
|
],
|
1501
|
-
"
|
1498
|
+
"You are not allowed to see the currently assigned template. Saving the form now would unassign the template.": [
|
1502
1499
|
""
|
1503
1500
|
],
|
1504
|
-
"
|
1501
|
+
"You are not authorized to perform this action.": [
|
1505
1502
|
""
|
1506
1503
|
],
|
1507
|
-
"
|
1504
|
+
"You have %s results to display. Showing first %s results": [
|
1508
1505
|
""
|
1509
1506
|
],
|
1510
|
-
"
|
1507
|
+
"add an input set for this template to reference a different template inputs": [
|
1511
1508
|
""
|
1512
1509
|
],
|
1513
|
-
"
|
1510
|
+
"cancelled": [
|
1514
1511
|
""
|
1515
1512
|
],
|
1516
|
-
"
|
1513
|
+
"default_capsule method missing from SmartProxy": [
|
1517
1514
|
""
|
1518
1515
|
],
|
1519
|
-
"
|
1516
|
+
"documentation": [
|
1520
1517
|
""
|
1521
1518
|
],
|
1522
|
-
"
|
1519
|
+
"effective user": [
|
1523
1520
|
""
|
1524
1521
|
],
|
1525
|
-
"
|
1522
|
+
"error": [
|
1526
1523
|
""
|
1527
1524
|
],
|
1528
|
-
"
|
1525
|
+
"error during rendering: %s": [
|
1529
1526
|
""
|
1530
1527
|
],
|
1531
|
-
"
|
1528
|
+
"evaluates just after you submit this form": [
|
1532
1529
|
""
|
1533
1530
|
],
|
1534
|
-
"
|
1531
|
+
"evaluates just before the execution is started, so if it's planned in future, targeted hosts set may change before it": [
|
1535
1532
|
""
|
1536
1533
|
],
|
1537
|
-
"
|
1534
|
+
"failed": [
|
1538
1535
|
""
|
1539
1536
|
],
|
1540
|
-
"
|
1537
|
+
"here": [
|
1541
1538
|
""
|
1542
1539
|
],
|
1543
|
-
"
|
1540
|
+
"host already has an execution interface": [
|
1544
1541
|
""
|
1545
1542
|
],
|
1546
|
-
"
|
1543
|
+
"hosts": [
|
1547
1544
|
""
|
1548
1545
|
],
|
1549
|
-
"
|
1546
|
+
"in %s": [
|
1550
1547
|
""
|
1551
1548
|
],
|
1552
|
-
"
|
1549
|
+
"included template '%s' not found": [
|
1553
1550
|
""
|
1554
1551
|
],
|
1555
|
-
"
|
1552
|
+
"input macro with name '%s' used, but no input with such name defined for this template": [
|
1556
1553
|
""
|
1557
1554
|
],
|
1558
|
-
"
|
1555
|
+
"is day of month (range: 1-31)": [
|
1559
1556
|
""
|
1560
1557
|
],
|
1561
|
-
"
|
1558
|
+
"is day of week (range: 0-6)": [
|
1562
1559
|
""
|
1563
1560
|
],
|
1564
|
-
"
|
1561
|
+
"is hour (range: 0-23)": [
|
1562
|
+
""
|
1563
|
+
],
|
1564
|
+
"is minute (range: 0-59)": [
|
1565
|
+
""
|
1566
|
+
],
|
1567
|
+
"is month (range: 1-12)": [
|
1565
1568
|
""
|
1566
1569
|
],
|
1567
1570
|
"no": [
|
1568
1571
|
""
|
1569
1572
|
],
|
1570
|
-
"
|
1573
|
+
"occurences": [
|
1571
1574
|
""
|
1572
1575
|
],
|
1573
|
-
"
|
1576
|
+
"open-help-tooltip-button": [
|
1574
1577
|
""
|
1575
1578
|
],
|
1576
|
-
"
|
1579
|
+
"queued": [
|
1577
1580
|
""
|
1578
1581
|
],
|
1579
|
-
"
|
1582
|
+
"queued to start executing in %{time}": [
|
1580
1583
|
""
|
1581
1584
|
],
|
1582
|
-
"
|
1585
|
+
"range: 0-59": [
|
1583
1586
|
""
|
1584
1587
|
],
|
1585
|
-
"
|
1588
|
+
"remove template input set": [
|
1586
1589
|
""
|
1587
1590
|
],
|
1588
|
-
"
|
1591
|
+
"running %{percent}%%": [
|
1589
1592
|
""
|
1590
1593
|
],
|
1591
|
-
"
|
1594
|
+
"seconds": [
|
1595
|
+
""
|
1596
|
+
],
|
1597
|
+
"succeeded": [
|
1598
|
+
""
|
1599
|
+
],
|
1600
|
+
"tasks at a time": [
|
1601
|
+
""
|
1602
|
+
],
|
1603
|
+
"template": [
|
1604
|
+
""
|
1605
|
+
],
|
1606
|
+
"unknown status": [
|
1607
|
+
""
|
1608
|
+
],
|
1609
|
+
"using ": [
|
1610
|
+
""
|
1611
|
+
],
|
1612
|
+
"using Smart Proxy": [
|
1613
|
+
""
|
1614
|
+
],
|
1615
|
+
"view host names": [
|
1616
|
+
""
|
1617
|
+
],
|
1618
|
+
"yes": [
|
1592
1619
|
""
|
1593
1620
|
]
|
1594
1621
|
}
|