foreman_remote_execution 0.2.3 → 0.3.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitignore +2 -0
- data/.rubocop.yml +7 -0
- data/.rubocop_todo.yml +16 -5
- data/.tx/config +1 -1
- data/app/assets/javascripts/template_invocation.js +14 -1
- data/app/assets/stylesheets/job_invocations.css.scss +0 -13
- data/app/assets/stylesheets/template_invocation.css.scss +7 -13
- data/app/controllers/api/v2/foreign_input_sets_controller.rb +1 -1
- data/app/controllers/api/v2/job_invocations_controller.rb +12 -18
- data/app/controllers/api/v2/remote_execution_features_controller.rb +38 -0
- data/app/controllers/api/v2/template_inputs_controller.rb +1 -0
- data/app/controllers/job_invocations_controller.rb +3 -13
- data/app/controllers/job_templates_controller.rb +1 -1
- data/app/controllers/remote_execution_features_controller.rb +19 -0
- data/app/helpers/concerns/foreman_remote_execution/hosts_helper_extensions.rb +1 -22
- data/app/helpers/remote_execution_helper.rb +30 -12
- data/app/lib/actions/remote_execution/helpers/live_output.rb +2 -2
- data/app/lib/actions/remote_execution/run_host_job.rb +7 -4
- data/app/lib/actions/remote_execution/run_hosts_job.rb +14 -0
- data/app/lib/actions/remote_execution/run_proxy_command.rb +2 -2
- data/app/models/concerns/foreman_remote_execution/host_extensions.rb +5 -4
- data/app/models/concerns/foreman_remote_execution/subnet_extensions.rb +1 -0
- data/app/models/input_template_renderer.rb +14 -3
- data/app/models/job_invocation.rb +6 -15
- data/app/models/job_invocation_composer.rb +131 -21
- data/app/models/job_template.rb +77 -22
- data/app/models/job_template_effective_user.rb +0 -2
- data/app/models/remote_execution_feature.rb +34 -0
- data/app/models/setting/remote_execution.rb +4 -1
- data/app/models/targeting.rb +2 -2
- data/app/models/template_input.rb +17 -13
- data/app/views/api/v2/remote_execution_features/base.json.rabl +3 -0
- data/app/views/api/v2/remote_execution_features/index.json.rabl +3 -0
- data/app/views/api/v2/remote_execution_features/main.json.rabl +3 -0
- data/app/views/api/v2/remote_execution_features/show.json.rabl +3 -0
- data/app/views/job_invocations/_form.html.erb +51 -40
- data/app/views/job_invocations/_preview_hosts_list.html.erb +1 -1
- data/app/views/job_invocations/_tab_hosts.html.erb +6 -3
- data/app/views/job_invocations/index.html.erb +11 -11
- data/app/views/job_templates/_custom_tabs.html.erb +4 -4
- data/app/views/job_templates/index.html.erb +5 -5
- data/app/views/overrides/nics/_execution_interface.html.erb +9 -1
- data/app/views/remote_execution_features/_form.html.erb +24 -0
- data/app/views/remote_execution_features/index.html.erb +21 -0
- data/app/views/remote_execution_features/show.html.erb +3 -0
- data/app/views/template_inputs/_form.html.erb +1 -0
- data/app/views/template_inputs/_invocation_form.html.erb +7 -0
- data/app/views/templates/package_action.erb +17 -5
- data/app/views/templates/power_action.erb +22 -0
- data/app/views/templates/puppet_run_once.erb +1 -1
- data/config/routes.rb +4 -0
- data/db/migrate/20160113162007_expand_all_template_invocations.rb +1 -1
- data/db/migrate/20160118124600_create_remote_execution_features.rb +14 -0
- data/db/migrate/20160125155108_make_job_template_name_unique.rb +12 -0
- data/db/migrate/20160127134031_add_advanced_to_template_input.rb +11 -0
- data/db/migrate/20160127162711_reword_puppet_template_description.rb +9 -0
- data/db/migrate/20160203104056_add_concurrency_options_to_job_invocation.rb +6 -0
- data/db/seeds.d/70-job_templates.rb +2 -1
- data/doc/plugins/div_tag.rb +1 -1
- data/doc/plugins/plantuml.rb +1 -1
- data/doc/plugins/tags.rb +7 -8
- data/doc/plugins/toc.rb +0 -1
- data/foreman_remote_execution.gemspec +1 -1
- data/lib/foreman_remote_execution/engine.rb +10 -2
- data/lib/foreman_remote_execution/version.rb +1 -1
- data/locale/action_names.rb +8 -0
- data/locale/en/foreman_remote_execution.po +767 -11
- data/locale/foreman_remote_execution.pot +1026 -8
- data/test/functional/api/v2/foreign_input_sets_controller_test.rb +1 -1
- data/test/functional/api/v2/job_invocations_controller_test.rb +0 -9
- data/test/functional/api/v2/job_templates_controller_test.rb +11 -11
- data/test/functional/api/v2/remote_execution_features_controller_test.rb +35 -0
- data/test/functional/api/v2/template_inputs_controller_test.rb +1 -1
- data/test/unit/actions/run_hosts_job_test.rb +48 -7
- data/test/unit/actions/run_proxy_command_test.rb +1 -1
- data/test/unit/concerns/host_extensions_test.rb +11 -0
- data/test/unit/input_template_renderer_test.rb +4 -4
- data/test/unit/job_invocation_composer_test.rb +52 -2
- data/test/unit/job_invocation_test.rb +1 -1
- data/test/unit/job_template_test.rb +126 -3
- data/test/unit/remote_execution_feature_test.rb +42 -0
- data/test/unit/targeting_test.rb +4 -4
- metadata +26 -7
- data/app/views/job_invocation_task_groups/_job_invocation_task_group.html.erb +0 -31
- data/app/views/unattended/snippets/_remote_execution_ssh_keys.erb +0 -18
- data/db/seeds.d/80-provision_templates.rb +0 -21
@@ -1,19 +1,1037 @@
|
|
1
|
-
#
|
2
|
-
#
|
3
|
-
# This file is distributed under the same license as foreman_remote_execution.
|
1
|
+
# SOME DESCRIPTIVE TITLE.
|
2
|
+
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
3
|
+
# This file is distributed under the same license as the foreman_remote_execution package.
|
4
|
+
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
4
5
|
#
|
5
6
|
#, fuzzy
|
6
7
|
msgid ""
|
7
8
|
msgstr ""
|
8
|
-
"Project-Id-Version:
|
9
|
+
"Project-Id-Version: foreman_remote_execution 1.0.0\n"
|
9
10
|
"Report-Msgid-Bugs-To: \n"
|
10
|
-
"POT-Creation-Date:
|
11
|
-
"PO-Revision-Date:
|
12
|
-
"Last-Translator:
|
13
|
-
"Language-Team:
|
11
|
+
"POT-Creation-Date: 2016-02-12 10:25-0500\n"
|
12
|
+
"PO-Revision-Date: 2016-02-12 10:25-0500\n"
|
13
|
+
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
14
|
+
"Language-Team: LANGUAGE <LL@li.org>\n"
|
14
15
|
"Language: \n"
|
15
16
|
"MIME-Version: 1.0\n"
|
16
17
|
"Content-Type: text/plain; charset=UTF-8\n"
|
17
18
|
"Content-Transfer-Encoding: 8bit\n"
|
18
19
|
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
|
19
20
|
|
21
|
+
#: ../app/assets/javascripts/execution_interface.js:2
|
22
|
+
msgid ""
|
23
|
+
"Another interface is already set as execution. Are you sure you want to use th"
|
24
|
+
"is one instead?"
|
25
|
+
msgstr ""
|
26
|
+
|
27
|
+
#: ../app/assets/javascripts/template_invocation.js:99
|
28
|
+
msgid "There was an error while updating the status, try refreshing the page."
|
29
|
+
msgstr ""
|
30
|
+
|
31
|
+
#: ../app/controllers/api/v2/foreign_input_sets_controller.rb:10
|
32
|
+
msgid "List foreign input sets"
|
33
|
+
msgstr ""
|
34
|
+
|
35
|
+
#: ../app/controllers/api/v2/foreign_input_sets_controller.rb:17
|
36
|
+
msgid "Show foreign input set details"
|
37
|
+
msgstr ""
|
38
|
+
|
39
|
+
#: ../app/controllers/api/v2/foreign_input_sets_controller.rb:25
|
40
|
+
msgid "Target template ID"
|
41
|
+
msgstr ""
|
42
|
+
|
43
|
+
#: ../app/controllers/api/v2/foreign_input_sets_controller.rb:26
|
44
|
+
msgid "Include all inputs form the foreign template"
|
45
|
+
msgstr ""
|
46
|
+
|
47
|
+
#: ../app/controllers/api/v2/foreign_input_sets_controller.rb:27
|
48
|
+
#: ../app/controllers/api/v2/foreign_input_sets_controller.rb:28
|
49
|
+
#: ../app/views/template_inputs/_foreign_input_set_form.html.erb:8
|
50
|
+
msgid ""
|
51
|
+
"A comma separated list of input names to be included from the foreign template"
|
52
|
+
"."
|
53
|
+
msgstr ""
|
54
|
+
|
55
|
+
#: ../app/controllers/api/v2/foreign_input_sets_controller.rb:29
|
56
|
+
msgid "Input set description"
|
57
|
+
msgstr ""
|
58
|
+
|
59
|
+
#: ../app/controllers/api/v2/foreign_input_sets_controller.rb:33
|
60
|
+
msgid "Create a foreign input set"
|
61
|
+
msgstr ""
|
62
|
+
|
63
|
+
#: ../app/controllers/api/v2/foreign_input_sets_controller.rb:41
|
64
|
+
msgid "Delete a foreign input set"
|
65
|
+
msgstr ""
|
66
|
+
|
67
|
+
#: ../app/controllers/api/v2/foreign_input_sets_controller.rb:48
|
68
|
+
msgid "Update a foreign input set"
|
69
|
+
msgstr ""
|
70
|
+
|
71
|
+
#: ../app/controllers/api/v2/job_invocations_controller.rb:15
|
72
|
+
msgid "List job invocations"
|
73
|
+
msgstr ""
|
74
|
+
|
75
|
+
#: ../app/controllers/api/v2/job_invocations_controller.rb:21
|
76
|
+
msgid "Show job invocation"
|
77
|
+
msgstr ""
|
78
|
+
|
79
|
+
#: ../app/controllers/api/v2/job_invocations_controller.rb:28
|
80
|
+
msgid "The job template to use"
|
81
|
+
msgstr ""
|
82
|
+
|
83
|
+
#: ../app/controllers/api/v2/job_invocations_controller.rb:29
|
84
|
+
msgid "Invocation type, one of %s"
|
85
|
+
msgstr ""
|
86
|
+
|
87
|
+
#: ../app/controllers/api/v2/job_invocations_controller.rb:30
|
88
|
+
msgid "Inputs to use"
|
89
|
+
msgstr ""
|
90
|
+
|
91
|
+
#: ../app/controllers/api/v2/job_invocations_controller.rb:31
|
92
|
+
#: ../app/controllers/api/v2/job_templates_controller.rb:43
|
93
|
+
msgid "SSH provider specific options"
|
94
|
+
msgstr ""
|
95
|
+
|
96
|
+
#: ../app/controllers/api/v2/job_invocations_controller.rb:34
|
97
|
+
msgid ""
|
98
|
+
"What user should be used to run the script (using sudo-like mechanisms). Defau"
|
99
|
+
"lts to a template parameter or global setting."
|
100
|
+
msgstr ""
|
101
|
+
|
102
|
+
#: ../app/controllers/api/v2/job_invocations_controller.rb:37
|
103
|
+
msgid "Create a recurring job"
|
104
|
+
msgstr ""
|
105
|
+
|
106
|
+
#: ../app/controllers/api/v2/job_invocations_controller.rb:38
|
107
|
+
msgid "How often the job should occur, in the cron format"
|
108
|
+
msgstr ""
|
109
|
+
|
110
|
+
#: ../app/controllers/api/v2/job_invocations_controller.rb:39
|
111
|
+
msgid "Repeat a maximum of N times"
|
112
|
+
msgstr ""
|
113
|
+
|
114
|
+
#: ../app/controllers/api/v2/job_invocations_controller.rb:40
|
115
|
+
msgid "Perform no more executions after this time"
|
116
|
+
msgstr ""
|
117
|
+
|
118
|
+
#: ../app/controllers/api/v2/job_invocations_controller.rb:43
|
119
|
+
msgid "Schedule the job to start at a later time"
|
120
|
+
msgstr ""
|
121
|
+
|
122
|
+
#: ../app/controllers/api/v2/job_invocations_controller.rb:44
|
123
|
+
msgid "Schedule the job for a future time"
|
124
|
+
msgstr ""
|
125
|
+
|
126
|
+
#: ../app/controllers/api/v2/job_invocations_controller.rb:45
|
127
|
+
msgid ""
|
128
|
+
"Indicates that the action should be cancelled if it cannot be started before t"
|
129
|
+
"his time."
|
130
|
+
msgstr ""
|
131
|
+
|
132
|
+
#: ../app/controllers/api/v2/job_invocations_controller.rb:50
|
133
|
+
msgid "Override the description format from the template for this invocation only"
|
134
|
+
msgstr ""
|
135
|
+
|
136
|
+
#: ../app/controllers/api/v2/job_invocations_controller.rb:54
|
137
|
+
msgid "Create a job invocation"
|
138
|
+
msgstr ""
|
139
|
+
|
140
|
+
#: ../app/controllers/api/v2/job_invocations_controller.rb:65
|
141
|
+
msgid "Get output for a host"
|
142
|
+
msgstr ""
|
143
|
+
|
144
|
+
#: ../app/controllers/api/v2/job_invocations_controller.rb:98
|
145
|
+
msgid "Host with id '%{id}' was not found"
|
146
|
+
msgstr ""
|
147
|
+
|
148
|
+
#: ../app/controllers/api/v2/job_invocations_controller.rb:104
|
149
|
+
msgid "Template with id '%{id}' was not found"
|
150
|
+
msgstr ""
|
151
|
+
|
152
|
+
#: ../app/controllers/api/v2/job_templates_controller.rb:16
|
153
|
+
msgid "List job templates"
|
154
|
+
msgstr ""
|
155
|
+
|
156
|
+
#: ../app/controllers/api/v2/job_templates_controller.rb:17
|
157
|
+
msgid "List job templates per location"
|
158
|
+
msgstr ""
|
159
|
+
|
160
|
+
#: ../app/controllers/api/v2/job_templates_controller.rb:18
|
161
|
+
msgid "List job templates per organization"
|
162
|
+
msgstr ""
|
163
|
+
|
164
|
+
#: ../app/controllers/api/v2/job_templates_controller.rb:25
|
165
|
+
msgid "Show job template details"
|
166
|
+
msgstr ""
|
167
|
+
|
168
|
+
#: ../app/controllers/api/v2/job_templates_controller.rb:32
|
169
|
+
#: ../app/controllers/api/v2/job_templates_controller.rb:83
|
170
|
+
msgid "Template name"
|
171
|
+
msgstr ""
|
172
|
+
|
173
|
+
#: ../app/controllers/api/v2/job_templates_controller.rb:33
|
174
|
+
#: ../app/views/job_invocations/_form.html.erb:9
|
175
|
+
#: ../app/views/job_templates/_custom_tabs.html.erb:3
|
176
|
+
#: ../app/views/job_templates/_custom_tabs.html.erb:6
|
177
|
+
msgid "Job category"
|
178
|
+
msgstr ""
|
179
|
+
|
180
|
+
#: ../app/controllers/api/v2/job_templates_controller.rb:34
|
181
|
+
#: ../app/views/job_templates/_custom_tabs.html.erb:14
|
182
|
+
msgid ""
|
183
|
+
"This template is used to generate the description. Input values can be used us"
|
184
|
+
"ing the syntax %{package}. You may also include the job category and template "
|
185
|
+
"name using %{job_category} and %{template_name}."
|
186
|
+
msgstr ""
|
187
|
+
|
188
|
+
#: ../app/controllers/api/v2/job_templates_controller.rb:39
|
189
|
+
msgid "Provider type"
|
190
|
+
msgstr ""
|
191
|
+
|
192
|
+
#: ../app/controllers/api/v2/job_templates_controller.rb:42
|
193
|
+
msgid "Whether or not the template is locked for editing"
|
194
|
+
msgstr ""
|
195
|
+
|
196
|
+
#: ../app/controllers/api/v2/job_templates_controller.rb:44
|
197
|
+
msgid "Effective user options"
|
198
|
+
msgstr ""
|
199
|
+
|
200
|
+
#: ../app/controllers/api/v2/job_templates_controller.rb:45
|
201
|
+
msgid "What user should be used to run the script (using sudo-like mechanisms)"
|
202
|
+
msgstr ""
|
203
|
+
|
204
|
+
#: ../app/controllers/api/v2/job_templates_controller.rb:46
|
205
|
+
msgid ""
|
206
|
+
"Whether it should be allowed to override the effective user from the invocatio"
|
207
|
+
"n form."
|
208
|
+
msgstr ""
|
209
|
+
|
210
|
+
#: ../app/controllers/api/v2/job_templates_controller.rb:47
|
211
|
+
msgid "Whether the current user login should be used as the effective user"
|
212
|
+
msgstr ""
|
213
|
+
|
214
|
+
#: ../app/controllers/api/v2/job_templates_controller.rb:54
|
215
|
+
msgid "Create a job template"
|
216
|
+
msgstr ""
|
217
|
+
|
218
|
+
#: ../app/controllers/api/v2/job_templates_controller.rb:61
|
219
|
+
msgid "Update a job template"
|
220
|
+
msgstr ""
|
221
|
+
|
222
|
+
#: ../app/controllers/api/v2/job_templates_controller.rb:69
|
223
|
+
msgid "Template version"
|
224
|
+
msgstr ""
|
225
|
+
|
226
|
+
#: ../app/controllers/api/v2/job_templates_controller.rb:75
|
227
|
+
msgid "Delete a job template"
|
228
|
+
msgstr ""
|
229
|
+
|
230
|
+
#: ../app/controllers/api/v2/job_templates_controller.rb:87
|
231
|
+
msgid "Clone a provision template"
|
232
|
+
msgstr ""
|
233
|
+
|
234
|
+
#: ../app/controllers/api/v2/template_inputs_controller.rb:11
|
235
|
+
msgid "List template inputs"
|
236
|
+
msgstr ""
|
237
|
+
|
238
|
+
#: ../app/controllers/api/v2/template_inputs_controller.rb:18
|
239
|
+
msgid "Show template input details"
|
240
|
+
msgstr ""
|
241
|
+
|
242
|
+
#: ../app/controllers/api/v2/template_inputs_controller.rb:26
|
243
|
+
msgid "Input name"
|
244
|
+
msgstr ""
|
245
|
+
|
246
|
+
#: ../app/controllers/api/v2/template_inputs_controller.rb:27
|
247
|
+
msgid "Input description"
|
248
|
+
msgstr ""
|
249
|
+
|
250
|
+
#: ../app/controllers/api/v2/template_inputs_controller.rb:28
|
251
|
+
msgid "Input is required"
|
252
|
+
msgstr ""
|
253
|
+
|
254
|
+
#: ../app/controllers/api/v2/template_inputs_controller.rb:29
|
255
|
+
msgid "Input is advanced"
|
256
|
+
msgstr ""
|
257
|
+
|
258
|
+
#: ../app/controllers/api/v2/template_inputs_controller.rb:30
|
259
|
+
msgid "Input type"
|
260
|
+
msgstr ""
|
261
|
+
|
262
|
+
#: ../app/controllers/api/v2/template_inputs_controller.rb:31
|
263
|
+
msgid "Fact name, used when input type is fact"
|
264
|
+
msgstr ""
|
265
|
+
|
266
|
+
#: ../app/controllers/api/v2/template_inputs_controller.rb:32
|
267
|
+
msgid "Variable name, used when input type is variable"
|
268
|
+
msgstr ""
|
269
|
+
|
270
|
+
#: ../app/controllers/api/v2/template_inputs_controller.rb:33
|
271
|
+
msgid "Puppet class name, used when input type is puppet_parameter"
|
272
|
+
msgstr ""
|
273
|
+
|
274
|
+
#: ../app/controllers/api/v2/template_inputs_controller.rb:34
|
275
|
+
msgid "Puppet parameter name, used when input type is puppet_parameter"
|
276
|
+
msgstr ""
|
277
|
+
|
278
|
+
#: ../app/controllers/api/v2/template_inputs_controller.rb:35
|
279
|
+
msgid "Selectable values for user inputs"
|
280
|
+
msgstr ""
|
281
|
+
|
282
|
+
#: ../app/controllers/api/v2/template_inputs_controller.rb:39
|
283
|
+
msgid "Create a template input"
|
284
|
+
msgstr ""
|
285
|
+
|
286
|
+
#: ../app/controllers/api/v2/template_inputs_controller.rb:47
|
287
|
+
msgid "Delete a template input"
|
288
|
+
msgstr ""
|
289
|
+
|
290
|
+
#: ../app/controllers/api/v2/template_inputs_controller.rb:54
|
291
|
+
msgid "Update a template input"
|
292
|
+
msgstr ""
|
293
|
+
|
294
|
+
#: ../app/controllers/job_templates_controller.rb:23
|
295
|
+
msgid ""
|
296
|
+
"Problem with previewing the template: %{error}. Note that you must save templa"
|
297
|
+
"te input changes before you try to preview it."
|
298
|
+
msgstr ""
|
299
|
+
|
300
|
+
#:
|
301
|
+
#: ../app/helpers/concerns/foreman_remote_execution/hosts_helper_extensions.rb:11
|
302
|
+
#: ../app/helpers/concerns/foreman_remote_execution/hosts_helper_extensions.rb:15
|
303
|
+
#: ../app/helpers/remote_execution_helper.rb:97
|
304
|
+
msgid "Run Job"
|
305
|
+
msgstr ""
|
306
|
+
|
307
|
+
#:
|
308
|
+
#: ../app/helpers/concerns/foreman_remote_execution/job_templates_extensions.rb:13
|
309
|
+
msgid "Run"
|
310
|
+
msgstr ""
|
311
|
+
|
312
|
+
#: ../app/helpers/remote_execution_helper.rb:23
|
313
|
+
msgid "Success"
|
314
|
+
msgstr ""
|
315
|
+
|
316
|
+
#: ../app/helpers/remote_execution_helper.rb:24
|
317
|
+
#: ../app/views/job_invocations/index.html.erb:11
|
318
|
+
msgid "Failed"
|
319
|
+
msgstr ""
|
320
|
+
|
321
|
+
#: ../app/helpers/remote_execution_helper.rb:25
|
322
|
+
#: ../app/views/job_invocations/index.html.erb:12
|
323
|
+
msgid "Pending"
|
324
|
+
msgstr ""
|
325
|
+
|
326
|
+
#: ../app/helpers/remote_execution_helper.rb:26
|
327
|
+
msgid "Cancelled"
|
328
|
+
msgstr ""
|
329
|
+
|
330
|
+
#: ../app/helpers/remote_execution_helper.rb:36
|
331
|
+
msgid "queued"
|
332
|
+
msgstr ""
|
333
|
+
|
334
|
+
#: ../app/helpers/remote_execution_helper.rb:38
|
335
|
+
msgid "running %{percent}%"
|
336
|
+
msgstr ""
|
337
|
+
|
338
|
+
#: ../app/helpers/remote_execution_helper.rb:40
|
339
|
+
msgid "succeeded"
|
340
|
+
msgstr ""
|
341
|
+
|
342
|
+
#: ../app/helpers/remote_execution_helper.rb:42
|
343
|
+
#: ../app/helpers/remote_execution_helper.rb:71
|
344
|
+
msgid "failed"
|
345
|
+
msgstr ""
|
346
|
+
|
347
|
+
#: ../app/helpers/remote_execution_helper.rb:44
|
348
|
+
msgid "unknown status"
|
349
|
+
msgstr ""
|
350
|
+
|
351
|
+
#: ../app/helpers/remote_execution_helper.rb:69
|
352
|
+
msgid "cancelled"
|
353
|
+
msgstr ""
|
354
|
+
|
355
|
+
#: ../app/helpers/remote_execution_helper.rb:74
|
356
|
+
msgid "success"
|
357
|
+
msgstr ""
|
358
|
+
|
359
|
+
#: ../app/helpers/remote_execution_helper.rb:76
|
360
|
+
msgid "pending"
|
361
|
+
msgstr ""
|
362
|
+
|
363
|
+
#: ../app/helpers/remote_execution_helper.rb:85
|
364
|
+
msgid "Host detail"
|
365
|
+
msgstr ""
|
366
|
+
|
367
|
+
#: ../app/helpers/remote_execution_helper.rb:86
|
368
|
+
msgid "Rerun on %s"
|
369
|
+
msgstr ""
|
370
|
+
|
371
|
+
#: ../app/helpers/remote_execution_helper.rb:91
|
372
|
+
#: ../app/helpers/remote_execution_helper.rb:198
|
373
|
+
#: ../app/models/job_invocation.rb:125
|
374
|
+
msgid "N/A"
|
375
|
+
msgstr ""
|
376
|
+
|
377
|
+
#: ../app/helpers/remote_execution_helper.rb:105
|
378
|
+
msgid "Refresh this page"
|
379
|
+
msgstr ""
|
380
|
+
|
381
|
+
#: ../app/helpers/remote_execution_helper.rb:105
|
382
|
+
#: ../app/views/job_invocations/_form.html.erb:40
|
383
|
+
msgid "Refresh"
|
384
|
+
msgstr ""
|
385
|
+
|
386
|
+
#: ../app/helpers/remote_execution_helper.rb:107
|
387
|
+
msgid "Rerun"
|
388
|
+
msgstr ""
|
389
|
+
|
390
|
+
#: ../app/helpers/remote_execution_helper.rb:109
|
391
|
+
msgid "Rerun the job"
|
392
|
+
msgstr ""
|
393
|
+
|
394
|
+
#: ../app/helpers/remote_execution_helper.rb:112
|
395
|
+
msgid "Rerun failed"
|
396
|
+
msgstr ""
|
397
|
+
|
398
|
+
#: ../app/helpers/remote_execution_helper.rb:115
|
399
|
+
msgid "Rerun on failed hosts"
|
400
|
+
msgstr ""
|
401
|
+
|
402
|
+
#: ../app/helpers/remote_execution_helper.rb:118
|
403
|
+
msgid "Job Task"
|
404
|
+
msgstr ""
|
405
|
+
|
406
|
+
#: ../app/helpers/remote_execution_helper.rb:120
|
407
|
+
msgid "See the last task details"
|
408
|
+
msgstr ""
|
409
|
+
|
410
|
+
#: ../app/helpers/remote_execution_helper.rb:123
|
411
|
+
#: ../app/helpers/remote_execution_helper.rb:141
|
412
|
+
msgid "Cancel Job"
|
413
|
+
msgstr ""
|
414
|
+
|
415
|
+
#: ../app/helpers/remote_execution_helper.rb:125
|
416
|
+
msgid "Try to cancel the job"
|
417
|
+
msgstr ""
|
418
|
+
|
419
|
+
#: ../app/helpers/remote_execution_helper.rb:136
|
420
|
+
msgid "Task Details"
|
421
|
+
msgstr ""
|
422
|
+
|
423
|
+
#: ../app/helpers/remote_execution_helper.rb:138
|
424
|
+
msgid "See the task details"
|
425
|
+
msgstr ""
|
426
|
+
|
427
|
+
#: ../app/helpers/remote_execution_helper.rb:143
|
428
|
+
msgid "Try to cancel the job on a host"
|
429
|
+
msgstr ""
|
430
|
+
|
431
|
+
#: ../app/helpers/remote_execution_helper.rb:200
|
432
|
+
msgid "in %s"
|
433
|
+
msgstr ""
|
434
|
+
|
435
|
+
#: ../app/helpers/remote_execution_helper.rb:200
|
436
|
+
msgid "%s ago"
|
437
|
+
msgstr ""
|
438
|
+
|
439
|
+
#: ../app/helpers/remote_execution_helper.rb:210
|
440
|
+
msgid "Documentation"
|
441
|
+
msgstr ""
|
442
|
+
|
443
|
+
#: ../app/helpers/remote_execution_helper.rb:217
|
444
|
+
msgid "Template input"
|
445
|
+
msgstr ""
|
446
|
+
|
447
|
+
#: ../app/helpers/remote_execution_helper.rb:218
|
448
|
+
msgid "remove template input"
|
449
|
+
msgstr ""
|
450
|
+
|
451
|
+
#: ../app/helpers/remote_execution_helper.rb:230
|
452
|
+
msgid "Use default description template"
|
453
|
+
msgstr ""
|
454
|
+
|
455
|
+
#: ../app/helpers/remote_execution_helper.rb:235
|
456
|
+
msgid "Description template"
|
457
|
+
msgstr ""
|
458
|
+
|
459
|
+
#: ../app/helpers/remote_execution_helper.rb:241
|
460
|
+
#: ../app/views/job_invocations/_form.html.erb:96
|
461
|
+
#: ../app/views/job_templates/_custom_tabs.html.erb:14
|
462
|
+
msgid "Explanation"
|
463
|
+
msgstr ""
|
464
|
+
|
465
|
+
#: ../app/helpers/remote_execution_helper.rb:242
|
466
|
+
msgid ""
|
467
|
+
"This template is used to generate the description Input values can be used usi"
|
468
|
+
"ng the syntax %{package}. You may also include the job category and template n"
|
469
|
+
"ame using %{job_category} and %{template_name}."
|
470
|
+
msgstr ""
|
471
|
+
|
472
|
+
#: ../app/lib/actions/remote_execution/run_host_job.rb:25
|
473
|
+
msgid "Could not use any template used in the job invocation"
|
474
|
+
msgstr ""
|
475
|
+
|
476
|
+
#: ../app/lib/actions/remote_execution/run_host_job.rb:30
|
477
|
+
msgid ""
|
478
|
+
"Could not use any proxy. Consider configuring %{global_proxy} or %{fallback_pr"
|
479
|
+
"oxy} in settings"
|
480
|
+
msgstr ""
|
481
|
+
|
482
|
+
#: ../app/lib/actions/remote_execution/run_host_job.rb:35
|
483
|
+
msgid "Failed rendering template: %s"
|
484
|
+
msgstr ""
|
485
|
+
|
486
|
+
#: ../app/lib/actions/remote_execution/run_host_job.rb:58
|
487
|
+
msgid "Failed to initialize command"
|
488
|
+
msgstr ""
|
489
|
+
|
490
|
+
#: ../app/lib/actions/remote_execution/run_host_job.rb:63
|
491
|
+
msgid "%{description} on %{host}"
|
492
|
+
msgstr ""
|
493
|
+
|
494
|
+
#: ../app/lib/actions/remote_execution/run_host_job.rb:68 action_names.rb:8
|
495
|
+
msgid "Remote action:"
|
496
|
+
msgstr ""
|
497
|
+
|
498
|
+
#: ../app/lib/actions/remote_execution/run_host_job.rb:88
|
499
|
+
msgid "User can not execute job on host %s"
|
500
|
+
msgstr ""
|
501
|
+
|
502
|
+
#: ../app/lib/actions/remote_execution/run_host_job.rb:89
|
503
|
+
msgid "User can not execute this job template"
|
504
|
+
msgstr ""
|
505
|
+
|
506
|
+
#: ../app/lib/actions/remote_execution/run_host_job.rb:94
|
507
|
+
msgid "User can not execute this job template on %s"
|
508
|
+
msgstr ""
|
509
|
+
|
510
|
+
#: ../app/lib/actions/remote_execution/run_proxy_command.rb:24
|
511
|
+
msgid "Script execution failed"
|
512
|
+
msgstr ""
|
513
|
+
|
514
|
+
#: ../app/lib/actions/remote_execution/run_proxy_command.rb:56
|
515
|
+
msgid "Initialization error: %s"
|
516
|
+
msgstr ""
|
517
|
+
|
518
|
+
#: ../app/lib/actions/remote_execution/run_proxy_command.rb:66
|
519
|
+
msgid "Error loading data from proxy"
|
520
|
+
msgstr ""
|
521
|
+
|
522
|
+
#: ../app/lib/actions/remote_execution/run_proxy_command.rb:75
|
523
|
+
msgid "No output"
|
524
|
+
msgstr ""
|
525
|
+
|
526
|
+
#: ../app/lib/actions/remote_execution/run_proxy_command.rb:79
|
527
|
+
msgid "Exit status: %s"
|
528
|
+
msgstr ""
|
529
|
+
|
530
|
+
#: ../app/lib/actions/remote_execution/run_proxy_command.rb:81
|
531
|
+
msgid "Job finished with error"
|
532
|
+
msgstr ""
|
533
|
+
|
534
|
+
#: ../app/lib/proxy_api/remote_execution_ssh.rb:11
|
535
|
+
msgid "Unable to fetch public key"
|
536
|
+
msgstr ""
|
537
|
+
|
538
|
+
#: ../app/models/concerns/foreman_remote_execution/nic_extensions.rb:21
|
539
|
+
msgid "host already has an execution interface"
|
540
|
+
msgstr ""
|
541
|
+
|
542
|
+
#: ../app/models/foreign_input_set.rb:18
|
543
|
+
msgid ""
|
544
|
+
"Circular dependency detected in foreign input set '%{template}' -> '%{target_t"
|
545
|
+
"emplate}'. Templates stack: %{templates_stack}"
|
546
|
+
msgstr ""
|
547
|
+
|
548
|
+
#: ../app/models/host_status/execution_status.rb:30
|
549
|
+
msgid "Execution"
|
550
|
+
msgstr ""
|
551
|
+
|
552
|
+
#: ../app/models/host_status/execution_status.rb:36
|
553
|
+
msgid "No execution finished yet"
|
554
|
+
msgstr ""
|
555
|
+
|
556
|
+
#: ../app/models/host_status/execution_status.rb:36
|
557
|
+
msgid "Last execution succeeded"
|
558
|
+
msgstr ""
|
559
|
+
|
560
|
+
#: ../app/models/host_status/execution_status.rb:38
|
561
|
+
msgid "Last execution failed"
|
562
|
+
msgstr ""
|
563
|
+
|
564
|
+
#: ../app/models/host_status/execution_status.rb:40
|
565
|
+
msgid "Unknown execution status"
|
566
|
+
msgstr ""
|
567
|
+
|
568
|
+
#: ../app/models/input_template_renderer.rb:13
|
569
|
+
msgid "Recursive rendering of templates detected"
|
570
|
+
msgstr ""
|
571
|
+
|
572
|
+
#: ../app/models/input_template_renderer.rb:27
|
573
|
+
msgid "error during rendering: %s"
|
574
|
+
msgstr ""
|
575
|
+
|
576
|
+
#: ../app/models/input_template_renderer.rb:46
|
577
|
+
msgid ""
|
578
|
+
"input macro with name '%s' used, but no input with such name defined for this "
|
579
|
+
"template"
|
580
|
+
msgstr ""
|
581
|
+
|
582
|
+
#: ../app/models/input_template_renderer.rb:56
|
583
|
+
msgid "included template '%s' not found"
|
584
|
+
msgstr ""
|
585
|
+
|
586
|
+
#: ../app/models/job_invocation.rb:7
|
587
|
+
msgid "template"
|
588
|
+
msgstr ""
|
589
|
+
|
590
|
+
#: ../app/models/job_invocation_composer.rb:70
|
591
|
+
msgid "Cannot specify both bookmark_id and search_query"
|
592
|
+
msgstr ""
|
593
|
+
|
594
|
+
#: ../app/models/job_invocation_composer.rb:75
|
595
|
+
msgid "Cannot specify both recurrence and scheduling"
|
596
|
+
msgstr ""
|
597
|
+
|
598
|
+
#: ../app/models/job_invocation_composer.rb:102
|
599
|
+
msgid "Unknown input %{input_name} for template %{template_name}"
|
600
|
+
msgstr ""
|
601
|
+
|
602
|
+
#: ../app/models/job_invocation_task_group.rb:8
|
603
|
+
msgid "Job Invocation"
|
604
|
+
msgstr ""
|
605
|
+
|
606
|
+
#: ../app/models/job_template.rb:124
|
607
|
+
msgid "Duplicated inputs detected: %{duplicated_inputs}"
|
608
|
+
msgstr ""
|
609
|
+
|
610
|
+
#: ../app/models/job_template.rb:144
|
611
|
+
msgid "This template is locked. Please clone it to a new template to customize."
|
612
|
+
msgstr ""
|
613
|
+
|
614
|
+
#: ../app/models/setting/remote_execution.rb:10
|
615
|
+
msgid ""
|
616
|
+
"Search the host for any proxy with Remote Execution, useful when the host has "
|
617
|
+
"no subnet or the subnet does not have an execution proxy"
|
618
|
+
msgstr ""
|
619
|
+
|
620
|
+
#: ../app/models/setting/remote_execution.rb:13
|
621
|
+
msgid ""
|
622
|
+
"Search for remote execution proxy outside of the proxies assigned to the host."
|
623
|
+
" If locations or organizations are enabled, the search will be limited to the "
|
624
|
+
"host's organization or location."
|
625
|
+
msgstr ""
|
626
|
+
|
627
|
+
#: ../app/models/setting/remote_execution.rb:18
|
628
|
+
msgid ""
|
629
|
+
"Default user to use for SSH. You may override per host by setting a parameter"
|
630
|
+
" called remote_execution_ssh_user."
|
631
|
+
msgstr ""
|
632
|
+
|
633
|
+
#: ../app/models/setting/remote_execution.rb:21
|
634
|
+
msgid ""
|
635
|
+
"Default user to use for executing the script. If the user differs from the SSH"
|
636
|
+
" user, su or sudo is used to switch the user."
|
637
|
+
msgstr ""
|
638
|
+
|
639
|
+
#: ../app/models/setting/remote_execution.rb:24
|
640
|
+
msgid "What command should be used to switch to the effective user. One of %s"
|
641
|
+
msgstr ""
|
642
|
+
|
643
|
+
#: ../app/models/ssh_execution_provider.rb:13
|
644
|
+
msgid "SSH"
|
645
|
+
msgstr ""
|
646
|
+
|
647
|
+
#: ../app/models/ssh_execution_provider.rb:33
|
648
|
+
msgid "Effective user method \"%{current_value}\" is not one of %{valid_methods}"
|
649
|
+
msgstr ""
|
650
|
+
|
651
|
+
#: ../app/models/targeting.rb:5
|
652
|
+
msgid "Static Query"
|
653
|
+
msgstr ""
|
654
|
+
|
655
|
+
#: ../app/models/targeting.rb:5
|
656
|
+
msgid "Dynamic Query"
|
657
|
+
msgstr ""
|
658
|
+
|
659
|
+
#: ../app/models/targeting.rb:37
|
660
|
+
msgid "Cannot resolve hosts without a user"
|
661
|
+
msgstr ""
|
662
|
+
|
663
|
+
#: ../app/models/targeting.rb:38
|
664
|
+
msgid "Cannot resolve hosts without a bookmark or search query"
|
665
|
+
msgstr ""
|
666
|
+
|
667
|
+
#: ../app/models/targeting.rb:67 ../app/models/targeting.rb:68
|
668
|
+
msgid "Must select a bookmark or enter a search query"
|
669
|
+
msgstr ""
|
670
|
+
|
671
|
+
#: ../app/models/template_input.rb:7
|
672
|
+
msgid "User input"
|
673
|
+
msgstr ""
|
674
|
+
|
675
|
+
#: ../app/models/template_input.rb:7
|
676
|
+
msgid "Variable"
|
677
|
+
msgstr ""
|
678
|
+
|
679
|
+
#: ../app/models/template_input.rb:7
|
680
|
+
msgid "Fact value"
|
681
|
+
msgstr ""
|
682
|
+
|
683
|
+
#: ../app/models/template_input.rb:8
|
684
|
+
msgid "Puppet parameter"
|
685
|
+
msgstr ""
|
686
|
+
|
687
|
+
#: ../app/models/template_input.rb:109
|
688
|
+
msgid "Value for required input '%s' was not specified"
|
689
|
+
msgstr ""
|
690
|
+
|
691
|
+
#: ../app/models/template_invocation.rb:7
|
692
|
+
msgid "Input"
|
693
|
+
msgstr ""
|
694
|
+
|
695
|
+
#: ../app/models/template_invocation.rb:48
|
696
|
+
msgid "Not all required inputs have values. Missing inputs: %s"
|
697
|
+
msgstr ""
|
698
|
+
|
699
|
+
#: ../app/overrides/foreman/nics/_execution_interface.html.erb:5
|
700
|
+
msgid "The execution interface is used for remote execution"
|
701
|
+
msgstr ""
|
702
|
+
|
703
|
+
#: ../app/overrides/foreman/nics/_execution_interface.html.erb:8
|
704
|
+
msgid "Remote execution"
|
705
|
+
msgstr ""
|
706
|
+
|
707
|
+
#: ../app/overrides/foreman/subnets/_rex_tab.html.erb:1
|
708
|
+
msgid "Remote Execution"
|
709
|
+
msgstr ""
|
710
|
+
|
711
|
+
#: ../app/overrides/foreman/subnets/_rex_tab_pane.html.erb:3
|
712
|
+
msgid "Proxies"
|
713
|
+
msgstr ""
|
714
|
+
|
715
|
+
#: ../app/overrides/foreman/subnets/_rex_tab_pane.html.erb:3
|
716
|
+
msgid ""
|
717
|
+
"Select as many remote execution proxies as applicable for this subnet. When m"
|
718
|
+
"ultiple proxies with the same provider are added, actions will be load balance"
|
719
|
+
"d among them."
|
720
|
+
msgstr ""
|
721
|
+
|
722
|
+
#: ../app/views/job_invocations/_description_fields.html.erb:1
|
723
|
+
#: ../app/views/job_invocations/index.html.erb:8
|
724
|
+
msgid "Description"
|
725
|
+
msgstr ""
|
726
|
+
|
727
|
+
#: ../app/views/job_invocations/_form.html.erb:20
|
728
|
+
msgid "Job template"
|
729
|
+
msgstr ""
|
730
|
+
|
731
|
+
#: ../app/views/job_invocations/_form.html.erb:36
|
732
|
+
msgid "Resolves to"
|
733
|
+
msgstr ""
|
734
|
+
|
735
|
+
#: ../app/views/job_invocations/_form.html.erb:39
|
736
|
+
msgid "hosts"
|
737
|
+
msgstr ""
|
738
|
+
|
739
|
+
#: ../app/views/job_invocations/_form.html.erb:43
|
740
|
+
msgid "Preview"
|
741
|
+
msgstr ""
|
742
|
+
|
743
|
+
#: ../app/views/job_invocations/_form.html.erb:64
|
744
|
+
msgid "Hide advanced fields"
|
745
|
+
msgstr ""
|
746
|
+
|
747
|
+
#: ../app/views/job_invocations/_form.html.erb:64
|
748
|
+
msgid "Display advanced fields"
|
749
|
+
msgstr ""
|
750
|
+
|
751
|
+
#: ../app/views/job_invocations/_form.html.erb:75
|
752
|
+
#: ../app/views/job_invocations/_tab_overview.html.erb:44
|
753
|
+
#: ../app/views/job_templates/_custom_tabs.html.erb:39
|
754
|
+
msgid "Effective user"
|
755
|
+
msgstr ""
|
756
|
+
|
757
|
+
#: ../app/views/job_invocations/_form.html.erb:75
|
758
|
+
msgid ""
|
759
|
+
"A user to be used for executing the script. If it differs from the SSH user, s"
|
760
|
+
"u or sudo is used to switch the accounts."
|
761
|
+
msgstr ""
|
762
|
+
|
763
|
+
#: ../app/views/job_invocations/_form.html.erb:89
|
764
|
+
msgid "Type of query"
|
765
|
+
msgstr ""
|
766
|
+
|
767
|
+
#: ../app/views/job_invocations/_form.html.erb:97
|
768
|
+
msgid ""
|
769
|
+
"Type has impact on when is the query evaulated to hosts.<br><ul><li><b>Static<"
|
770
|
+
"/b> - evaluates just after you submit this form</li><li><b>Dynamic</b> - evalu"
|
771
|
+
"ates just before the execution is started, so if it's planed in future, target"
|
772
|
+
"ed hosts set may change before it</li></ul>"
|
773
|
+
msgstr ""
|
774
|
+
|
775
|
+
#: ../app/views/job_invocations/_preview_hosts_list.html.erb:3
|
776
|
+
msgid ""
|
777
|
+
"The final host list may change because the selected query is dynamic. It will"
|
778
|
+
" be rerun during execution."
|
779
|
+
msgstr ""
|
780
|
+
|
781
|
+
#: ../app/views/job_invocations/_preview_hosts_list.html.erb:14
|
782
|
+
msgid "...and %{count} more"
|
783
|
+
msgid_plural "...and %{count} more"
|
784
|
+
msgstr[0] ""
|
785
|
+
msgstr[1] ""
|
786
|
+
|
787
|
+
#: ../app/views/job_invocations/_preview_hosts_list.html.erb:18
|
788
|
+
msgid "No hosts found."
|
789
|
+
msgstr ""
|
790
|
+
|
791
|
+
#: ../app/views/job_invocations/_preview_hosts_modal.html.erb:6
|
792
|
+
msgid "Close"
|
793
|
+
msgstr ""
|
794
|
+
|
795
|
+
#: ../app/views/job_invocations/_tab_hosts.html.erb:6
|
796
|
+
msgid "Filter"
|
797
|
+
msgstr ""
|
798
|
+
|
799
|
+
#: ../app/views/job_invocations/_tab_hosts.html.erb:9
|
800
|
+
msgid "Search"
|
801
|
+
msgstr ""
|
802
|
+
|
803
|
+
#: ../app/views/job_invocations/_tab_hosts.html.erb:21
|
804
|
+
msgid "Host"
|
805
|
+
msgstr ""
|
806
|
+
|
807
|
+
#: ../app/views/job_invocations/_tab_hosts.html.erb:22
|
808
|
+
#: ../app/views/job_invocations/index.html.erb:9
|
809
|
+
msgid "Status"
|
810
|
+
msgstr ""
|
811
|
+
|
812
|
+
#: ../app/views/job_invocations/_tab_hosts.html.erb:23
|
813
|
+
#: ../app/views/job_templates/index.html.erb:16
|
814
|
+
msgid "Actions"
|
815
|
+
msgstr ""
|
816
|
+
|
817
|
+
#: ../app/views/job_invocations/_tab_hosts.html.erb:45
|
818
|
+
msgid ""
|
819
|
+
"The dynamic query '%{query}' was not resolved yet. The list of hosts to which "
|
820
|
+
"it would resolve now can be seen %{here}."
|
821
|
+
msgstr ""
|
822
|
+
|
823
|
+
#: ../app/views/job_invocations/_tab_hosts.html.erb:47
|
824
|
+
msgid "here"
|
825
|
+
msgstr ""
|
826
|
+
|
827
|
+
#: ../app/views/job_invocations/_tab_overview.html.erb:6
|
828
|
+
msgid "Target hosts"
|
829
|
+
msgstr ""
|
830
|
+
|
831
|
+
#: ../app/views/job_invocations/_tab_overview.html.erb:8
|
832
|
+
msgid "Bookmark"
|
833
|
+
msgstr ""
|
834
|
+
|
835
|
+
#: ../app/views/job_invocations/_tab_overview.html.erb:10
|
836
|
+
msgid "Manual selection"
|
837
|
+
msgstr ""
|
838
|
+
|
839
|
+
#: ../app/views/job_invocations/_tab_overview.html.erb:15
|
840
|
+
msgid "Evaluated at:"
|
841
|
+
msgstr ""
|
842
|
+
|
843
|
+
#: ../app/views/job_invocations/_tab_overview.html.erb:21
|
844
|
+
#: ../app/views/job_invocations/index.html.erb:13
|
845
|
+
msgid "Total hosts"
|
846
|
+
msgstr ""
|
847
|
+
|
848
|
+
#: ../app/views/job_invocations/_tab_overview.html.erb:25
|
849
|
+
msgid "Providers and templates"
|
850
|
+
msgstr ""
|
851
|
+
|
852
|
+
#: ../app/views/job_invocations/_tab_overview.html.erb:31
|
853
|
+
msgid "Preview for target %s"
|
854
|
+
msgstr ""
|
855
|
+
|
856
|
+
#: ../app/views/job_invocations/_tab_overview.html.erb:36
|
857
|
+
msgid "following user inputs were provided"
|
858
|
+
msgstr ""
|
859
|
+
|
860
|
+
#: ../app/views/job_invocations/index.html.erb:1
|
861
|
+
msgid "Job invocations"
|
862
|
+
msgstr ""
|
863
|
+
|
864
|
+
#: ../app/views/job_invocations/index.html.erb:10
|
865
|
+
msgid "Succeeded"
|
866
|
+
msgstr ""
|
867
|
+
|
868
|
+
#: ../app/views/job_invocations/index.html.erb:14
|
869
|
+
msgid "Start"
|
870
|
+
msgstr ""
|
871
|
+
|
872
|
+
#: ../app/views/job_invocations/new.html.erb:3
|
873
|
+
msgid "Job invocation"
|
874
|
+
msgstr ""
|
875
|
+
|
876
|
+
#: ../app/views/job_invocations/show.html.erb:10
|
877
|
+
msgid "Overview"
|
878
|
+
msgstr ""
|
879
|
+
|
880
|
+
#: ../app/views/job_invocations/show.html.erb:11
|
881
|
+
msgid "Hosts"
|
882
|
+
msgstr ""
|
883
|
+
|
884
|
+
#: ../app/views/job_invocations/show.html.erb:12
|
885
|
+
msgid "Recurring logic"
|
886
|
+
msgstr ""
|
887
|
+
|
888
|
+
#: ../app/views/job_templates/_custom_tab_headers.html.erb:1
|
889
|
+
msgid "Job"
|
890
|
+
msgstr ""
|
891
|
+
|
892
|
+
#: ../app/views/job_templates/_custom_tab_headers.html.erb:2
|
893
|
+
msgid "Type"
|
894
|
+
msgstr ""
|
895
|
+
|
896
|
+
#: ../app/views/job_templates/_custom_tabs.html.erb:28
|
897
|
+
msgid "add a input for this template"
|
898
|
+
msgstr ""
|
899
|
+
|
900
|
+
#: ../app/views/job_templates/_custom_tabs.html.erb:28
|
901
|
+
msgid "Add Input"
|
902
|
+
msgstr ""
|
903
|
+
|
904
|
+
#: ../app/views/job_templates/_custom_tabs.html.erb:35
|
905
|
+
msgid "Add Foreign Input Set"
|
906
|
+
msgstr ""
|
907
|
+
|
908
|
+
#: ../app/views/job_templates/_custom_tabs.html.erb:35
|
909
|
+
msgid "add an input set for this template to reference a different template inputs"
|
910
|
+
msgstr ""
|
911
|
+
|
912
|
+
#: ../app/views/job_templates/_custom_tabs.html.erb:53
|
913
|
+
msgid "Snippet"
|
914
|
+
msgstr ""
|
915
|
+
|
916
|
+
#: ../app/views/job_templates/edit.html.erb:4
|
917
|
+
msgid "Edit Job Template"
|
918
|
+
msgstr ""
|
919
|
+
|
920
|
+
#: ../app/views/job_templates/index.html.erb:5
|
921
|
+
msgid "Job Templates"
|
922
|
+
msgstr ""
|
923
|
+
|
924
|
+
#: ../app/views/job_templates/index.html.erb:7
|
925
|
+
#: ../app/views/job_templates/new.html.erb:4
|
926
|
+
msgid "New Job Template"
|
927
|
+
msgstr ""
|
928
|
+
|
929
|
+
#: ../app/views/job_templates/index.html.erb:13
|
930
|
+
msgid "JobTemplate|Name"
|
931
|
+
msgstr ""
|
932
|
+
|
933
|
+
#: ../app/views/job_templates/index.html.erb:14
|
934
|
+
msgid "JobTemplate|Snippet"
|
935
|
+
msgstr ""
|
936
|
+
|
937
|
+
#: ../app/views/job_templates/index.html.erb:15
|
938
|
+
msgid "JobTemplate|Locked"
|
939
|
+
msgstr ""
|
940
|
+
|
941
|
+
#: ../app/views/job_templates/index.html.erb:26
|
942
|
+
msgid "This template is locked for editing."
|
943
|
+
msgstr ""
|
944
|
+
|
945
|
+
#: ../app/views/template_inputs/_foreign_input_set_form.html.erb:3
|
946
|
+
msgid "Foreign input set"
|
947
|
+
msgstr ""
|
948
|
+
|
949
|
+
#: ../app/views/template_inputs/_foreign_input_set_form.html.erb:5
|
950
|
+
msgid "remove template input set"
|
951
|
+
msgstr ""
|
952
|
+
|
953
|
+
#: ../app/views/template_inputs/_foreign_input_set_form.html.erb:9
|
954
|
+
msgid ""
|
955
|
+
"A comma separated list of input names to be excluded from the foreign template"
|
956
|
+
"."
|
957
|
+
msgstr ""
|
958
|
+
|
959
|
+
#: ../app/views/template_inputs/_form.html.erb:19
|
960
|
+
msgid ""
|
961
|
+
"A list of options the user can select from. If not provided, the user will be "
|
962
|
+
"given a free-form field"
|
963
|
+
msgstr ""
|
964
|
+
|
965
|
+
#: ../app/views/template_invocations/show.html.erb:1
|
966
|
+
msgid "Detail of %s run"
|
967
|
+
msgstr ""
|
968
|
+
|
969
|
+
#: ../app/views/template_invocations/show.html.erb:7
|
970
|
+
msgid "Back to Job"
|
971
|
+
msgstr ""
|
972
|
+
|
973
|
+
#: ../app/views/template_invocations/show.html.erb:8
|
974
|
+
msgid "Toggle command"
|
975
|
+
msgstr ""
|
976
|
+
|
977
|
+
#: ../app/views/template_invocations/show.html.erb:9
|
978
|
+
msgid "Toggle STDERR"
|
979
|
+
msgstr ""
|
980
|
+
|
981
|
+
#: ../app/views/template_invocations/show.html.erb:10
|
982
|
+
msgid "Toggle STDOUT"
|
983
|
+
msgstr ""
|
984
|
+
|
985
|
+
#: ../app/views/template_invocations/show.html.erb:11
|
986
|
+
msgid "Toggle DEBUG"
|
987
|
+
msgstr ""
|
988
|
+
|
989
|
+
#: ../app/views/template_invocations/show.html.erb:16
|
990
|
+
msgid "Target: "
|
991
|
+
msgstr ""
|
992
|
+
|
993
|
+
#: ../app/views/template_invocations/show.html.erb:26
|
994
|
+
msgid "Scroll to bottom"
|
995
|
+
msgstr ""
|
996
|
+
|
997
|
+
#: ../app/views/template_invocations/show.html.erb:32
|
998
|
+
msgid "Scroll to top"
|
999
|
+
msgstr ""
|
1000
|
+
|
1001
|
+
#: ../lib/foreman_remote_execution/engine.rb:85
|
1002
|
+
msgid "Job templates"
|
1003
|
+
msgstr ""
|
1004
|
+
|
1005
|
+
#: ../lib/foreman_remote_execution/engine.rb:91
|
1006
|
+
msgid "Jobs"
|
1007
|
+
msgstr ""
|
1008
|
+
|
1009
|
+
#: action_names.rb:2
|
1010
|
+
msgid "Create architecture"
|
1011
|
+
msgstr ""
|
1012
|
+
|
1013
|
+
#: action_names.rb:3
|
1014
|
+
msgid "Delete architecture"
|
1015
|
+
msgstr ""
|
1016
|
+
|
1017
|
+
#: action_names.rb:4
|
1018
|
+
msgid "Update architecture"
|
1019
|
+
msgstr ""
|
1020
|
+
|
1021
|
+
#: action_names.rb:5
|
1022
|
+
msgid "Import facts"
|
1023
|
+
msgstr ""
|
1024
|
+
|
1025
|
+
#: action_names.rb:6
|
1026
|
+
msgid "Import puppetclasses"
|
1027
|
+
msgstr ""
|
1028
|
+
|
1029
|
+
#: action_names.rb:7
|
1030
|
+
msgid "Action with sub plans"
|
1031
|
+
msgstr ""
|
1032
|
+
|
1033
|
+
#: gemspec.rb:2
|
1034
|
+
msgid ""
|
1035
|
+
"A plugin bringing remote execution to the Foreman, completing the config manag"
|
1036
|
+
"ement functionality with remote management functionality."
|
1037
|
+
msgstr ""
|