foreman_remote_execution 3.2.0 → 3.2.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/helpers/job_invocations_helper.rb +5 -0
- data/app/views/job_invocations/_card_user_input.html.erb +1 -1
- data/app/views/job_invocations/_user_input.html.erb +1 -1
- data/lib/foreman_remote_execution/version.rb +1 -1
- data/locale/action_names.rb +4 -3
- data/locale/de/LC_MESSAGES/foreman_remote_execution.mo +0 -0
- data/locale/de/foreman_remote_execution.po +65 -16
- data/locale/en/foreman_remote_execution.po +63 -15
- data/locale/en_GB/LC_MESSAGES/foreman_remote_execution.mo +0 -0
- data/locale/en_GB/foreman_remote_execution.po +64 -15
- data/locale/es/LC_MESSAGES/foreman_remote_execution.mo +0 -0
- data/locale/es/foreman_remote_execution.po +66 -17
- data/locale/foreman_remote_execution.pot +193 -148
- data/locale/fr/LC_MESSAGES/foreman_remote_execution.mo +0 -0
- data/locale/fr/foreman_remote_execution.po +66 -17
- data/locale/ja/LC_MESSAGES/foreman_remote_execution.mo +0 -0
- data/locale/ja/foreman_remote_execution.po +66 -17
- data/locale/ko/LC_MESSAGES/foreman_remote_execution.mo +0 -0
- data/locale/ko/foreman_remote_execution.po +65 -15
- data/locale/pt_BR/LC_MESSAGES/foreman_remote_execution.mo +0 -0
- data/locale/pt_BR/foreman_remote_execution.po +66 -17
- data/locale/ru/LC_MESSAGES/foreman_remote_execution.mo +0 -0
- data/locale/ru/foreman_remote_execution.po +65 -18
- data/locale/zh_CN/LC_MESSAGES/foreman_remote_execution.mo +0 -0
- data/locale/zh_CN/foreman_remote_execution.po +66 -17
- data/locale/zh_TW/LC_MESSAGES/foreman_remote_execution.mo +0 -0
- data/locale/zh_TW/foreman_remote_execution.po +65 -16
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9caedc0baf4a767d6b0149fd1b349b97081460193cdccad1cb9a3208d278b67f
|
4
|
+
data.tar.gz: 709c83b4582ffd65cab576e84d1b502ce31a70c57f0ce9af76e3ffd9978de031
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9ca7d43729ca2e9b8d2012c8f1e9055832ba52a7c7abe8b14c37ad92b73af1a689dd92ec6415e2f4f1532b18a10310caee45c2370579e389914237acb2496cbb
|
7
|
+
data.tar.gz: 687feaca288aec140529e59948290a4e99aae6261567953768340b0b36aa6a8920f9e2640fd0b7a8a02cb22f727b417302569fba4bfda736c0a2a0b6c04b41a1
|
@@ -55,4 +55,9 @@ module JobInvocationsHelper
|
|
55
55
|
def show_job_location(location)
|
56
56
|
location.presence || _('Any Location')
|
57
57
|
end
|
58
|
+
|
59
|
+
def input_safe_value(input)
|
60
|
+
template_input = input.template_input
|
61
|
+
template_input.respond_to?(:hidden_value) && template_input.hidden_value ? '*' * 5 : input.value
|
62
|
+
end
|
58
63
|
end
|
@@ -8,7 +8,7 @@
|
|
8
8
|
<p>
|
9
9
|
<ul>
|
10
10
|
<% template_invocation.input_values.joins(:template_input).each do |input_value| %>
|
11
|
-
<li><b><%= input_value.template_input.name %></b>: <%=
|
11
|
+
<li><b><%= input_value.template_input.name %></b>: <%= trunc_with_tooltip(input_safe_value(input_value), 255) %></li>
|
12
12
|
<% end %>
|
13
13
|
</ul>
|
14
14
|
</p>
|
@@ -12,7 +12,7 @@
|
|
12
12
|
<% template_invocation.input_values.joins(:template_input).each do |input_value| %>
|
13
13
|
<tr>
|
14
14
|
<td><b><%= input_value.template_input.name %></b></td>
|
15
|
-
<td><%= input_value
|
15
|
+
<td><%= input_safe_value(input_value) %></td>
|
16
16
|
</tr>
|
17
17
|
<% end %>
|
18
18
|
</tbody>
|
data/locale/action_names.rb
CHANGED
Binary file
|
@@ -27,11 +27,6 @@ msgstr "vor %s"
|
|
27
27
|
msgid "%{description} on %{host}"
|
28
28
|
msgstr "%{description} auf %{host}"
|
29
29
|
|
30
|
-
msgid "...and %{count} more"
|
31
|
-
msgid_plural "...and %{count} more"
|
32
|
-
msgstr[0] "...und %{count} weiteren"
|
33
|
-
msgstr[1] "...und %{count} weiteren"
|
34
|
-
|
35
30
|
msgid "A comma separated list of input names to be excluded from the foreign template."
|
36
31
|
msgstr "Kommagetrennte Liste von Eingabenamen, die aus der Fremdvorlage auszuschließen ist"
|
37
32
|
|
@@ -59,12 +54,21 @@ msgstr "Aktionen"
|
|
59
54
|
msgid "Add Foreign Input Set"
|
60
55
|
msgstr "Fremdeingabe-Satz hinzufügen"
|
61
56
|
|
57
|
+
msgid "Alphabetical"
|
58
|
+
msgstr ""
|
59
|
+
|
62
60
|
msgid "Amount of workers in the pool to handle the execution of the remote execution jobs. Restart of the dynflowd/foreman-tasks service is required."
|
63
61
|
msgstr ""
|
64
62
|
|
65
63
|
msgid "Another interface is already set as execution. Are you sure you want to use this one instead?"
|
66
64
|
msgstr "Es ist bereits eine andere Schnittstelle für die Ausführung bestimmt. Sind Sie sicher, dass Sie stattdessen diese Schnittstelle verwenden möchten?"
|
67
65
|
|
66
|
+
msgid "Any Location"
|
67
|
+
msgstr ""
|
68
|
+
|
69
|
+
msgid "Any Organization"
|
70
|
+
msgstr ""
|
71
|
+
|
68
72
|
msgid "Back to Job"
|
69
73
|
msgstr "Zurück zum Job"
|
70
74
|
|
@@ -92,6 +96,9 @@ msgstr "bookmark_id und search_query konnte nicht angegeben werden"
|
|
92
96
|
msgid "Cannot specify both recurrence and scheduling"
|
93
97
|
msgstr "Wiederholung und Planung konnten nicht angegeben werden"
|
94
98
|
|
99
|
+
msgid "Choose a job template that is pre-selected in job invocation form"
|
100
|
+
msgstr ""
|
101
|
+
|
95
102
|
msgid "Circular dependency detected in foreign input set '%{template}' -> '%{target_template}'. Templates stack: %{templates_stack}"
|
96
103
|
msgstr "Zirkuläre Abhängigkeit im Fremdeingabe-Satz gefunden '%{template}' -> '%{target_template}'. Vorlagen-Stack: %{templates_stack}"
|
97
104
|
|
@@ -146,6 +153,12 @@ msgstr "Job-Vorlage erstellen"
|
|
146
153
|
msgid "Create a recurring job"
|
147
154
|
msgstr "Wiederholten Job erstellen"
|
148
155
|
|
156
|
+
msgid "Current location %{loc_c} is different from job's location %{loc_j}."
|
157
|
+
msgstr ""
|
158
|
+
|
159
|
+
msgid "Current organization %{org_c} is different from job's organization %{org_j}."
|
160
|
+
msgstr ""
|
161
|
+
|
149
162
|
msgid "Default SSH key passphrase"
|
150
163
|
msgstr ""
|
151
164
|
|
@@ -179,8 +192,8 @@ msgstr "Beschreibungsvorlage"
|
|
179
192
|
msgid "Display advanced fields"
|
180
193
|
msgstr "Erweiterte Felder einblenden"
|
181
194
|
|
182
|
-
msgid "Distribute execution over N seconds"
|
183
|
-
msgstr "
|
195
|
+
msgid "Distribute execution over N seconds. If this is set and proxy batch triggering is enabled, then tasks are triggered on the smart proxy in batches of size 1."
|
196
|
+
msgstr ""
|
184
197
|
|
185
198
|
msgid "Distribute tasks over N seconds"
|
186
199
|
msgstr "Aufgaben über n Sekunden verteilen"
|
@@ -224,9 +237,21 @@ msgstr "Fehler die Daten vom Proxy zu laden."
|
|
224
237
|
msgid "Evaluated at:"
|
225
238
|
msgstr "Evaluiert an:"
|
226
239
|
|
240
|
+
msgid "Execute the jobs on hosts in randomized order"
|
241
|
+
msgstr ""
|
242
|
+
|
227
243
|
msgid "Execution"
|
228
244
|
msgstr "Ausführung"
|
229
245
|
|
246
|
+
msgid "Execution order"
|
247
|
+
msgstr ""
|
248
|
+
|
249
|
+
msgid "Execution ordering"
|
250
|
+
msgstr ""
|
251
|
+
|
252
|
+
msgid "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>"
|
253
|
+
msgstr ""
|
254
|
+
|
230
255
|
msgid "Exit status: %s"
|
231
256
|
msgstr "Exit-Status: %s"
|
232
257
|
|
@@ -257,6 +282,9 @@ msgstr "Fremdeingabe-Satz"
|
|
257
282
|
msgid "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."
|
258
283
|
msgstr ""
|
259
284
|
|
285
|
+
msgid "Form Job Template"
|
286
|
+
msgstr ""
|
287
|
+
|
260
288
|
msgid "Get output for a host"
|
261
289
|
msgstr "Ausgabe für einen Host abfragen"
|
262
290
|
|
@@ -377,6 +405,9 @@ msgstr ""
|
|
377
405
|
msgid "Label"
|
378
406
|
msgstr "Kennung"
|
379
407
|
|
408
|
+
msgid "Last execution cancelled"
|
409
|
+
msgstr ""
|
410
|
+
|
380
411
|
msgid "Last execution failed"
|
381
412
|
msgstr "Letzte Ausführung fehlgeschlagen"
|
382
413
|
|
@@ -407,6 +438,9 @@ msgstr "Entfernte Ausführungsfunktionen auflisten"
|
|
407
438
|
msgid "List template invocations belonging to job invocation"
|
408
439
|
msgstr ""
|
409
440
|
|
441
|
+
msgid "Location"
|
442
|
+
msgstr ""
|
443
|
+
|
410
444
|
msgid "Manual selection"
|
411
445
|
msgstr "Manuelle Auswahl"
|
412
446
|
|
@@ -425,15 +459,15 @@ msgstr "Neue Job-Vorlage"
|
|
425
459
|
msgid "No execution finished yet"
|
426
460
|
msgstr "Noch keine Ausführung abgeschlossen"
|
427
461
|
|
428
|
-
msgid "No hosts found."
|
429
|
-
msgstr "Keine Hosts gefunden"
|
430
|
-
|
431
462
|
msgid "No template mapped to feature %{feature_name}"
|
432
463
|
msgstr "Der Funktion %{feature_name} wurde keine Vorlage zugewiesen"
|
433
464
|
|
434
465
|
msgid "Not all required inputs have values. Missing inputs: %s"
|
435
466
|
msgstr "Nicht alle erforderlichen Eingaben haben Werte. Fehlende Eingaben: %s"
|
436
467
|
|
468
|
+
msgid "Organization"
|
469
|
+
msgstr ""
|
470
|
+
|
437
471
|
msgid "Override the description format from the template for this invocation only"
|
438
472
|
msgstr "Beschreibungsformat der Vorlage nur für diesen Aufruf außer Kraft setzen "
|
439
473
|
|
@@ -458,6 +492,9 @@ msgstr ""
|
|
458
492
|
msgid "Pending"
|
459
493
|
msgstr "Ausstehend"
|
460
494
|
|
495
|
+
msgid "Perform a single Puppet run"
|
496
|
+
msgstr ""
|
497
|
+
|
461
498
|
msgid "Perform no more executions after this time"
|
462
499
|
msgstr "Danach nicht mehr ausführen"
|
463
500
|
|
@@ -487,6 +524,9 @@ msgstr "Anbieter und Vorlagen"
|
|
487
524
|
msgid "Proxies"
|
488
525
|
msgstr "Proxys"
|
489
526
|
|
527
|
+
msgid "Randomized"
|
528
|
+
msgstr ""
|
529
|
+
|
490
530
|
msgid "Recurring logic"
|
491
531
|
msgstr "Wiederholungslogik"
|
492
532
|
|
@@ -511,6 +551,9 @@ msgstr "Entfernte Ausführung"
|
|
511
551
|
msgid "Remote execution feature label that should be triggered, job template assigned to this feature will be used"
|
512
552
|
msgstr ""
|
513
553
|
|
554
|
+
msgid "Remove SSH known hosts for %s"
|
555
|
+
msgstr ""
|
556
|
+
|
514
557
|
msgid "Repeat a maximum of N times"
|
515
558
|
msgstr "Maximal n-mal wiederholen"
|
516
559
|
|
@@ -544,9 +587,15 @@ msgstr "Ausführen"
|
|
544
587
|
msgid "Run Job"
|
545
588
|
msgstr "Job ausführen"
|
546
589
|
|
590
|
+
msgid "Run Puppet Once"
|
591
|
+
msgstr ""
|
592
|
+
|
547
593
|
msgid "Run at most N tasks at a time"
|
548
594
|
msgstr "Höchstens n Aufgaben gleichzeitig ausführen"
|
549
595
|
|
596
|
+
msgid "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."
|
597
|
+
msgstr ""
|
598
|
+
|
550
599
|
msgid "SSH"
|
551
600
|
msgstr "SSH"
|
552
601
|
|
@@ -589,8 +638,8 @@ msgstr "Suchen"
|
|
589
638
|
msgid "Search Query"
|
590
639
|
msgstr ""
|
591
640
|
|
592
|
-
msgid "Search for remote execution proxy outside of the proxies assigned to the host.
|
593
|
-
msgstr "
|
641
|
+
msgid "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."
|
642
|
+
msgstr ""
|
594
643
|
|
595
644
|
msgid "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"
|
596
645
|
msgstr "Den Host nach einem Proxy mit entfernter Ausführung durchsuchen. Dies ist nützlich, wenn der Host kein Subnetz hat oder das Subnetz keinen Proxy für die Ausführung hat."
|
@@ -610,7 +659,7 @@ msgstr "Wählen Sie so viele Proxys für entfernte Ausführung aus, wie es für
|
|
610
659
|
msgid "Set to distribute over"
|
611
660
|
msgstr ""
|
612
661
|
|
613
|
-
msgid "Should the ip addresses on host interfaces be preferred over the fqdn? It is useful
|
662
|
+
msgid "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. This setting only applies to IPv4. When the host has only an IPv6 address on the interface used for remote execution, hostname will be used even if this setting is set to true."
|
614
663
|
msgstr ""
|
615
664
|
|
616
665
|
msgid "Show foreign input set details"
|
@@ -682,9 +731,6 @@ msgstr "Vorlagenversion"
|
|
682
731
|
msgid "Template with id '%{id}' was not found"
|
683
732
|
msgstr "Vorlage mit ID '%{id}' nicht gefunden"
|
684
733
|
|
685
|
-
msgid "The dynamic query '#{job_invocation.targeting.search_query}' was not resolved yet. The list of hosts to which it would resolve now can be seen"
|
686
|
-
msgstr ""
|
687
|
-
|
688
734
|
msgid "The dynamic query '%{query}' was not resolved yet. The list of hosts to which it would resolve now can be seen %{here}."
|
689
735
|
msgstr "Die dynamische Anfrage '%{query}' wurde noch nicht aufgelöst. Die Liste von Hosts, zu denen sie sich auflösen würde, ist jetzt %{here} zu sehen."
|
690
736
|
|
@@ -786,6 +832,9 @@ msgstr "Anfragetyp"
|
|
786
832
|
msgid "Unable to fetch public key"
|
787
833
|
msgstr "Öffentlicher Schlüssel konnte nicht abgerufen werden"
|
788
834
|
|
835
|
+
msgid "Unable to remove host from known hosts"
|
836
|
+
msgstr ""
|
837
|
+
|
789
838
|
msgid "Unable to save template. Correct highlighted errors"
|
790
839
|
msgstr "Vorlage kann nicht gespeichert werden. Bitte korrigieren Sie die markierten Fehler"
|
791
840
|
|
@@ -26,12 +26,6 @@ msgstr ""
|
|
26
26
|
msgid "%{description} on %{host}"
|
27
27
|
msgstr ""
|
28
28
|
|
29
|
-
#, fuzzy
|
30
|
-
msgid "...and %{count} more"
|
31
|
-
msgid_plural "...and %{count} more"
|
32
|
-
msgstr[0] ""
|
33
|
-
msgstr[1] ""
|
34
|
-
|
35
29
|
msgid "A comma separated list of input names to be excluded from the foreign template."
|
36
30
|
msgstr ""
|
37
31
|
|
@@ -59,12 +53,21 @@ msgstr ""
|
|
59
53
|
msgid "Add Foreign Input Set"
|
60
54
|
msgstr ""
|
61
55
|
|
56
|
+
msgid "Alphabetical"
|
57
|
+
msgstr ""
|
58
|
+
|
62
59
|
msgid "Amount of workers in the pool to handle the execution of the remote execution jobs. Restart of the dynflowd/foreman-tasks service is required."
|
63
60
|
msgstr ""
|
64
61
|
|
65
62
|
msgid "Another interface is already set as execution. Are you sure you want to use this one instead?"
|
66
63
|
msgstr ""
|
67
64
|
|
65
|
+
msgid "Any Location"
|
66
|
+
msgstr ""
|
67
|
+
|
68
|
+
msgid "Any Organization"
|
69
|
+
msgstr ""
|
70
|
+
|
68
71
|
msgid "Back to Job"
|
69
72
|
msgstr ""
|
70
73
|
|
@@ -92,6 +95,9 @@ msgstr ""
|
|
92
95
|
msgid "Cannot specify both recurrence and scheduling"
|
93
96
|
msgstr ""
|
94
97
|
|
98
|
+
msgid "Choose a job template that is pre-selected in job invocation form"
|
99
|
+
msgstr ""
|
100
|
+
|
95
101
|
msgid "Circular dependency detected in foreign input set '%{template}' -> '%{target_template}'. Templates stack: %{templates_stack}"
|
96
102
|
msgstr ""
|
97
103
|
|
@@ -146,6 +152,12 @@ msgstr ""
|
|
146
152
|
msgid "Create a recurring job"
|
147
153
|
msgstr ""
|
148
154
|
|
155
|
+
msgid "Current location %{loc_c} is different from job's location %{loc_j}."
|
156
|
+
msgstr ""
|
157
|
+
|
158
|
+
msgid "Current organization %{org_c} is different from job's organization %{org_j}."
|
159
|
+
msgstr ""
|
160
|
+
|
149
161
|
msgid "Default SSH key passphrase"
|
150
162
|
msgstr ""
|
151
163
|
|
@@ -179,7 +191,7 @@ msgstr ""
|
|
179
191
|
msgid "Display advanced fields"
|
180
192
|
msgstr ""
|
181
193
|
|
182
|
-
msgid "Distribute execution over N seconds"
|
194
|
+
msgid "Distribute execution over N seconds. If this is set and proxy batch triggering is enabled, then tasks are triggered on the smart proxy in batches of size 1."
|
183
195
|
msgstr ""
|
184
196
|
|
185
197
|
msgid "Distribute tasks over N seconds"
|
@@ -224,9 +236,21 @@ msgstr ""
|
|
224
236
|
msgid "Evaluated at:"
|
225
237
|
msgstr ""
|
226
238
|
|
239
|
+
msgid "Execute the jobs on hosts in randomized order"
|
240
|
+
msgstr ""
|
241
|
+
|
227
242
|
msgid "Execution"
|
228
243
|
msgstr ""
|
229
244
|
|
245
|
+
msgid "Execution order"
|
246
|
+
msgstr ""
|
247
|
+
|
248
|
+
msgid "Execution ordering"
|
249
|
+
msgstr ""
|
250
|
+
|
251
|
+
msgid "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>"
|
252
|
+
msgstr ""
|
253
|
+
|
230
254
|
msgid "Exit status: %s"
|
231
255
|
msgstr ""
|
232
256
|
|
@@ -257,6 +281,9 @@ msgstr ""
|
|
257
281
|
msgid "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."
|
258
282
|
msgstr ""
|
259
283
|
|
284
|
+
msgid "Form Job Template"
|
285
|
+
msgstr ""
|
286
|
+
|
260
287
|
msgid "Get output for a host"
|
261
288
|
msgstr ""
|
262
289
|
|
@@ -377,6 +404,9 @@ msgstr ""
|
|
377
404
|
msgid "Label"
|
378
405
|
msgstr ""
|
379
406
|
|
407
|
+
msgid "Last execution cancelled"
|
408
|
+
msgstr ""
|
409
|
+
|
380
410
|
msgid "Last execution failed"
|
381
411
|
msgstr ""
|
382
412
|
|
@@ -407,6 +437,9 @@ msgstr ""
|
|
407
437
|
msgid "List template invocations belonging to job invocation"
|
408
438
|
msgstr ""
|
409
439
|
|
440
|
+
msgid "Location"
|
441
|
+
msgstr ""
|
442
|
+
|
410
443
|
msgid "Manual selection"
|
411
444
|
msgstr ""
|
412
445
|
|
@@ -425,15 +458,15 @@ msgstr ""
|
|
425
458
|
msgid "No execution finished yet"
|
426
459
|
msgstr ""
|
427
460
|
|
428
|
-
msgid "No hosts found."
|
429
|
-
msgstr ""
|
430
|
-
|
431
461
|
msgid "No template mapped to feature %{feature_name}"
|
432
462
|
msgstr ""
|
433
463
|
|
434
464
|
msgid "Not all required inputs have values. Missing inputs: %s"
|
435
465
|
msgstr ""
|
436
466
|
|
467
|
+
msgid "Organization"
|
468
|
+
msgstr ""
|
469
|
+
|
437
470
|
msgid "Override the description format from the template for this invocation only"
|
438
471
|
msgstr ""
|
439
472
|
|
@@ -458,6 +491,9 @@ msgstr ""
|
|
458
491
|
msgid "Pending"
|
459
492
|
msgstr ""
|
460
493
|
|
494
|
+
msgid "Perform a single Puppet run"
|
495
|
+
msgstr ""
|
496
|
+
|
461
497
|
msgid "Perform no more executions after this time"
|
462
498
|
msgstr ""
|
463
499
|
|
@@ -485,6 +521,9 @@ msgstr ""
|
|
485
521
|
msgid "Proxies"
|
486
522
|
msgstr ""
|
487
523
|
|
524
|
+
msgid "Randomized"
|
525
|
+
msgstr ""
|
526
|
+
|
488
527
|
msgid "Recurring logic"
|
489
528
|
msgstr ""
|
490
529
|
|
@@ -509,6 +548,9 @@ msgstr ""
|
|
509
548
|
msgid "Remote execution feature label that should be triggered, job template assigned to this feature will be used"
|
510
549
|
msgstr ""
|
511
550
|
|
551
|
+
msgid "Remove SSH known hosts for %s"
|
552
|
+
msgstr ""
|
553
|
+
|
512
554
|
msgid "Repeat a maximum of N times"
|
513
555
|
msgstr ""
|
514
556
|
|
@@ -542,9 +584,15 @@ msgstr ""
|
|
542
584
|
msgid "Run Job"
|
543
585
|
msgstr ""
|
544
586
|
|
587
|
+
msgid "Run Puppet Once"
|
588
|
+
msgstr ""
|
589
|
+
|
545
590
|
msgid "Run at most N tasks at a time"
|
546
591
|
msgstr ""
|
547
592
|
|
593
|
+
msgid "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."
|
594
|
+
msgstr ""
|
595
|
+
|
548
596
|
msgid "SSH"
|
549
597
|
msgstr ""
|
550
598
|
|
@@ -587,7 +635,7 @@ msgstr ""
|
|
587
635
|
msgid "Search Query"
|
588
636
|
msgstr ""
|
589
637
|
|
590
|
-
msgid "Search for remote execution proxy outside of the proxies assigned to the host.
|
638
|
+
msgid "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."
|
591
639
|
msgstr ""
|
592
640
|
|
593
641
|
msgid "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"
|
@@ -608,7 +656,7 @@ msgstr ""
|
|
608
656
|
msgid "Set to distribute over"
|
609
657
|
msgstr ""
|
610
658
|
|
611
|
-
msgid "Should the ip addresses on host interfaces be preferred over the fqdn? It is useful
|
659
|
+
msgid "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. This setting only applies to IPv4. When the host has only an IPv6 address on the interface used for remote execution, hostname will be used even if this setting is set to true."
|
612
660
|
msgstr ""
|
613
661
|
|
614
662
|
msgid "Show foreign input set details"
|
@@ -680,9 +728,6 @@ msgstr ""
|
|
680
728
|
msgid "Template with id '%{id}' was not found"
|
681
729
|
msgstr ""
|
682
730
|
|
683
|
-
msgid "The dynamic query '#{job_invocation.targeting.search_query}' was not resolved yet. The list of hosts to which it would resolve now can be seen"
|
684
|
-
msgstr ""
|
685
|
-
|
686
731
|
msgid "The dynamic query '%{query}' was not resolved yet. The list of hosts to which it would resolve now can be seen %{here}."
|
687
732
|
msgstr ""
|
688
733
|
|
@@ -784,6 +829,9 @@ msgstr ""
|
|
784
829
|
msgid "Unable to fetch public key"
|
785
830
|
msgstr ""
|
786
831
|
|
832
|
+
msgid "Unable to remove host from known hosts"
|
833
|
+
msgstr ""
|
834
|
+
|
787
835
|
msgid "Unable to save template. Correct highlighted errors"
|
788
836
|
msgstr ""
|
789
837
|
|