foreman_remote_execution 1.3.1 → 1.3.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.rubocop.yml +16 -0
- data/.rubocop_todo.yml +0 -6
- data/Rakefile +0 -1
- data/app/controllers/api/v2/job_invocations_controller.rb +1 -0
- data/app/controllers/concerns/foreman/controller/parameters/job_template.rb +1 -1
- data/app/controllers/job_templates_controller.rb +1 -1
- data/app/lib/actions/remote_execution/run_host_job.rb +3 -1
- data/app/models/concerns/foreman_remote_execution/foreman_tasks_cleaner_extensions.rb +37 -0
- data/app/models/concerns/foreman_remote_execution/foreman_tasks_task_extensions.rb +1 -1
- data/app/models/concerns/foreman_remote_execution/host_extensions.rb +1 -1
- data/app/models/host_status/execution_status.rb +1 -1
- data/app/models/job_invocation_composer.rb +15 -3
- data/app/models/job_template.rb +1 -1
- data/app/models/setting/remote_execution.rb +1 -1
- data/app/models/targeting.rb +3 -2
- data/app/models/template_input.rb +5 -1
- data/app/views/api/v2/foreign_input_sets/create.json.rabl +1 -1
- data/app/views/api/v2/foreign_input_sets/index.json.rabl +1 -1
- data/app/views/api/v2/foreign_input_sets/main.json.rabl +1 -1
- data/app/views/api/v2/foreign_input_sets/show.json.rabl +1 -1
- data/app/views/api/v2/job_invocations/create.json.rabl +1 -1
- data/app/views/api/v2/job_invocations/index.json.rabl +1 -1
- data/app/views/api/v2/job_invocations/main.json.rabl +2 -2
- data/app/views/api/v2/job_invocations/show.json.rabl +1 -1
- data/app/views/api/v2/job_templates/create.json.rabl +1 -1
- data/app/views/api/v2/job_templates/index.json.rabl +1 -1
- data/app/views/api/v2/job_templates/main.json.rabl +3 -3
- data/app/views/api/v2/job_templates/show.json.rabl +1 -1
- data/app/views/api/v2/job_templates/update.json.rabl +1 -1
- data/app/views/api/v2/remote_execution_features/index.json.rabl +1 -1
- data/app/views/api/v2/remote_execution_features/main.json.rabl +1 -1
- data/app/views/api/v2/remote_execution_features/show.json.rabl +1 -1
- data/app/views/api/v2/template_inputs/create.json.rabl +1 -1
- data/app/views/api/v2/template_inputs/index.json.rabl +1 -1
- data/app/views/api/v2/template_inputs/main.json.rabl +2 -2
- data/app/views/api/v2/template_inputs/show.json.rabl +1 -1
- data/app/views/job_invocations/_form.html.erb +4 -0
- data/app/views/job_invocations/_tab_overview.html.erb +4 -1
- data/app/views/job_templates/_custom_tabs.html.erb +2 -0
- data/db/migrate/20170613101039_add_timeout_to_job_templates_and_job_invocations.rb +6 -0
- data/foreman_remote_execution.gemspec +1 -1
- data/lib/foreman_remote_execution/engine.rb +1 -0
- data/lib/foreman_remote_execution/version.rb +1 -1
- data/locale/de/foreman_remote_execution.po +21 -0
- data/locale/en/foreman_remote_execution.po +21 -0
- data/locale/en_GB/foreman_remote_execution.po +21 -0
- data/locale/es/foreman_remote_execution.po +21 -0
- data/locale/foreman_remote_execution.pot +86 -56
- data/locale/fr/foreman_remote_execution.po +21 -0
- data/locale/ja/foreman_remote_execution.po +21 -0
- data/locale/ko/foreman_remote_execution.po +21 -0
- data/locale/pt_BR/foreman_remote_execution.po +21 -0
- data/locale/ru/foreman_remote_execution.po +21 -0
- data/locale/zh_CN/foreman_remote_execution.po +21 -0
- data/locale/zh_TW/foreman_remote_execution.po +21 -0
- data/test/unit/actions/run_hosts_job_test.rb +1 -1
- data/test/unit/concerns/foreman_tasks_cleaner_extensions_test.rb +20 -0
- data/test/unit/input_template_renderer_test.rb +5 -7
- data/test/unit/job_template_importer_test.rb +6 -6
- metadata +10 -6
@@ -49,8 +49,11 @@
|
|
49
49
|
<% if job_invocation.time_span %>
|
50
50
|
<b><%= _("Set to distribute over") %></b>: <%= job_invocation.concurrency_level %> <%= _('minutes') %><br>
|
51
51
|
<% end %>
|
52
|
-
<% if job_invocation.task && job_invocation.task.delayed? || job_invocation.task.recurring? %>
|
52
|
+
<% if job_invocation.task && (job_invocation.task.delayed? || job_invocation.task.recurring?) %>
|
53
53
|
<b><%= _("Scheduled to start at") %></b>: <%= job_invocation.task.start_at.try(:in_time_zone) %><br>
|
54
54
|
<% end %>
|
55
|
+
<% unless job_invocation.execution_timeout_interval.nil? %>
|
56
|
+
<b><%= _("Timeout to kill after") %></b>: <%= job_invocation.execution_timeout_interval %> <%= _('seconds') %><br>
|
57
|
+
<% end %>
|
55
58
|
<% end %>
|
56
59
|
</div>
|
@@ -15,6 +15,8 @@
|
|
15
15
|
|
16
16
|
<%= select_f f, :provider_type, providers_options, :first, :last, :disabled => @template.locked? %>
|
17
17
|
|
18
|
+
<%= number_f f, :timeout_interval, :disabled => @template.locked?, :label => _('Timeout interval') %>
|
19
|
+
|
18
20
|
<div class="children_fields">
|
19
21
|
<%= new_child_fields_template(f, :template_inputs, { :partial => "template_inputs/form" }) %>
|
20
22
|
<%= f.fields_for :template_inputs do |ff| %>
|
@@ -26,7 +26,7 @@ Gem::Specification.new do |s|
|
|
26
26
|
s.add_dependency 'deface'
|
27
27
|
s.add_dependency 'dynflow', '~> 0.8.10'
|
28
28
|
s.add_dependency 'foreman_remote_execution_core'
|
29
|
-
s.add_dependency 'foreman-tasks', '
|
29
|
+
s.add_dependency 'foreman-tasks', '>= 0.9'
|
30
30
|
|
31
31
|
s.add_development_dependency 'rubocop'
|
32
32
|
s.add_development_dependency 'rdoc'
|
@@ -164,6 +164,7 @@ module ForemanRemoteExecution
|
|
164
164
|
# having issues with resolving it to Rake::Task otherwise
|
165
165
|
require_dependency 'foreman_tasks/task'
|
166
166
|
ForemanTasks::Task.send(:include, ForemanRemoteExecution::ForemanTasksTaskExtensions)
|
167
|
+
ForemanTasks::Cleaner.send(:include, ForemanRemoteExecution::ForemanTasksCleanerExtensions)
|
167
168
|
RemoteExecutionProvider.register(:SSH, SSHExecutionProvider)
|
168
169
|
end
|
169
170
|
|
@@ -397,6 +397,9 @@ msgstr "Nicht alle erforderlichen Eingaben haben Werte. Fehlende Eingaben: %s"
|
|
397
397
|
msgid "Override the description format from the template for this invocation only"
|
398
398
|
msgstr "Beschreibungsformat der Vorlage nur für diesen Aufruf außer Kraft setzen "
|
399
399
|
|
400
|
+
msgid "Override the timeout interval from the template for this invocation only"
|
401
|
+
msgstr ""
|
402
|
+
|
400
403
|
msgid "Overview"
|
401
404
|
msgstr "Überblick"
|
402
405
|
|
@@ -412,6 +415,9 @@ msgstr "Ausstehend"
|
|
412
415
|
msgid "Perform no more executions after this time"
|
413
416
|
msgstr "Danach nicht mehr ausführen"
|
414
417
|
|
418
|
+
msgid "Play Ansible roles"
|
419
|
+
msgstr ""
|
420
|
+
|
415
421
|
msgid "Port to use for SSH communication. Default port 22. You may override per host by setting a parameter called remote_execution_ssh_port."
|
416
422
|
msgstr ""
|
417
423
|
|
@@ -645,9 +651,21 @@ msgstr "Diese Vorlage wird für die Erstellung der Beschreibung verwendet. Einga
|
|
645
651
|
msgid "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}."
|
646
652
|
msgstr ""
|
647
653
|
|
654
|
+
msgid "Time in seconds from the start on the remote host after which the job should be killed."
|
655
|
+
msgstr ""
|
656
|
+
|
648
657
|
msgid "Time span"
|
649
658
|
msgstr "Zeitspanne"
|
650
659
|
|
660
|
+
msgid "Timeout interval"
|
661
|
+
msgstr ""
|
662
|
+
|
663
|
+
msgid "Timeout to kill"
|
664
|
+
msgstr ""
|
665
|
+
|
666
|
+
msgid "Timeout to kill after"
|
667
|
+
msgstr ""
|
668
|
+
|
651
669
|
msgid "Toggle DEBUG"
|
652
670
|
msgstr "Umschalt DEBUG"
|
653
671
|
|
@@ -821,6 +839,9 @@ msgstr ""
|
|
821
839
|
msgid "running %{percent}%%"
|
822
840
|
msgstr ""
|
823
841
|
|
842
|
+
msgid "seconds"
|
843
|
+
msgstr ""
|
844
|
+
|
824
845
|
msgid "succeeded"
|
825
846
|
msgstr "erfolgreich"
|
826
847
|
|
@@ -398,6 +398,9 @@ msgstr ""
|
|
398
398
|
msgid "Override the description format from the template for this invocation only"
|
399
399
|
msgstr ""
|
400
400
|
|
401
|
+
msgid "Override the timeout interval from the template for this invocation only"
|
402
|
+
msgstr ""
|
403
|
+
|
401
404
|
msgid "Overview"
|
402
405
|
msgstr ""
|
403
406
|
|
@@ -413,6 +416,9 @@ msgstr ""
|
|
413
416
|
msgid "Perform no more executions after this time"
|
414
417
|
msgstr ""
|
415
418
|
|
419
|
+
msgid "Play Ansible roles"
|
420
|
+
msgstr ""
|
421
|
+
|
416
422
|
msgid "Port to use for SSH communication. Default port 22. You may override per host by setting a parameter called remote_execution_ssh_port."
|
417
423
|
msgstr ""
|
418
424
|
|
@@ -646,9 +652,21 @@ msgstr ""
|
|
646
652
|
msgid "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}."
|
647
653
|
msgstr ""
|
648
654
|
|
655
|
+
msgid "Time in seconds from the start on the remote host after which the job should be killed."
|
656
|
+
msgstr ""
|
657
|
+
|
649
658
|
msgid "Time span"
|
650
659
|
msgstr ""
|
651
660
|
|
661
|
+
msgid "Timeout interval"
|
662
|
+
msgstr ""
|
663
|
+
|
664
|
+
msgid "Timeout to kill"
|
665
|
+
msgstr ""
|
666
|
+
|
667
|
+
msgid "Timeout to kill after"
|
668
|
+
msgstr ""
|
669
|
+
|
652
670
|
msgid "Toggle DEBUG"
|
653
671
|
msgstr ""
|
654
672
|
|
@@ -822,6 +840,9 @@ msgstr ""
|
|
822
840
|
msgid "running %{percent}%%"
|
823
841
|
msgstr ""
|
824
842
|
|
843
|
+
msgid "seconds"
|
844
|
+
msgstr ""
|
845
|
+
|
825
846
|
msgid "succeeded"
|
826
847
|
msgstr ""
|
827
848
|
|
@@ -398,6 +398,9 @@ msgstr ""
|
|
398
398
|
msgid "Override the description format from the template for this invocation only"
|
399
399
|
msgstr ""
|
400
400
|
|
401
|
+
msgid "Override the timeout interval from the template for this invocation only"
|
402
|
+
msgstr ""
|
403
|
+
|
401
404
|
msgid "Overview"
|
402
405
|
msgstr ""
|
403
406
|
|
@@ -413,6 +416,9 @@ msgstr ""
|
|
413
416
|
msgid "Perform no more executions after this time"
|
414
417
|
msgstr ""
|
415
418
|
|
419
|
+
msgid "Play Ansible roles"
|
420
|
+
msgstr ""
|
421
|
+
|
416
422
|
msgid "Port to use for SSH communication. Default port 22. You may override per host by setting a parameter called remote_execution_ssh_port."
|
417
423
|
msgstr ""
|
418
424
|
|
@@ -646,9 +652,21 @@ msgstr ""
|
|
646
652
|
msgid "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}."
|
647
653
|
msgstr ""
|
648
654
|
|
655
|
+
msgid "Time in seconds from the start on the remote host after which the job should be killed."
|
656
|
+
msgstr ""
|
657
|
+
|
649
658
|
msgid "Time span"
|
650
659
|
msgstr ""
|
651
660
|
|
661
|
+
msgid "Timeout interval"
|
662
|
+
msgstr ""
|
663
|
+
|
664
|
+
msgid "Timeout to kill"
|
665
|
+
msgstr ""
|
666
|
+
|
667
|
+
msgid "Timeout to kill after"
|
668
|
+
msgstr ""
|
669
|
+
|
652
670
|
msgid "Toggle DEBUG"
|
653
671
|
msgstr ""
|
654
672
|
|
@@ -822,6 +840,9 @@ msgstr ""
|
|
822
840
|
msgid "running %{percent}%%"
|
823
841
|
msgstr ""
|
824
842
|
|
843
|
+
msgid "seconds"
|
844
|
+
msgstr ""
|
845
|
+
|
825
846
|
msgid "succeeded"
|
826
847
|
msgstr ""
|
827
848
|
|
@@ -397,6 +397,9 @@ msgstr "No todas las entradas requeridas tienen valores. Entradas que faltan: %s
|
|
397
397
|
msgid "Override the description format from the template for this invocation only"
|
398
398
|
msgstr "Sustituir el formato de descripción de la plantilla solo para esta invocación"
|
399
399
|
|
400
|
+
msgid "Override the timeout interval from the template for this invocation only"
|
401
|
+
msgstr ""
|
402
|
+
|
400
403
|
msgid "Overview"
|
401
404
|
msgstr "Visión general"
|
402
405
|
|
@@ -412,6 +415,9 @@ msgstr "pendiente"
|
|
412
415
|
msgid "Perform no more executions after this time"
|
413
416
|
msgstr "No ejecutar más después de esta cantidad de veces"
|
414
417
|
|
418
|
+
msgid "Play Ansible roles"
|
419
|
+
msgstr ""
|
420
|
+
|
415
421
|
msgid "Port to use for SSH communication. Default port 22. You may override per host by setting a parameter called remote_execution_ssh_port."
|
416
422
|
msgstr ""
|
417
423
|
|
@@ -645,9 +651,21 @@ msgstr "Esta plantilla se utiliza para generar la descripción. Los valores de e
|
|
645
651
|
msgid "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}."
|
646
652
|
msgstr ""
|
647
653
|
|
654
|
+
msgid "Time in seconds from the start on the remote host after which the job should be killed."
|
655
|
+
msgstr ""
|
656
|
+
|
648
657
|
msgid "Time span"
|
649
658
|
msgstr "Período de tiempo"
|
650
659
|
|
660
|
+
msgid "Timeout interval"
|
661
|
+
msgstr ""
|
662
|
+
|
663
|
+
msgid "Timeout to kill"
|
664
|
+
msgstr ""
|
665
|
+
|
666
|
+
msgid "Timeout to kill after"
|
667
|
+
msgstr ""
|
668
|
+
|
651
669
|
msgid "Toggle DEBUG"
|
652
670
|
msgstr "Alternar DEBUG"
|
653
671
|
|
@@ -821,6 +839,9 @@ msgstr ""
|
|
821
839
|
msgid "running %{percent}%%"
|
822
840
|
msgstr ""
|
823
841
|
|
842
|
+
msgid "seconds"
|
843
|
+
msgstr ""
|
844
|
+
|
824
845
|
msgid "succeeded"
|
825
846
|
msgstr "exitoso"
|
826
847
|
|
@@ -8,8 +8,8 @@ msgid ""
|
|
8
8
|
msgstr ""
|
9
9
|
"Project-Id-Version: foreman_remote_execution 1.0.0\n"
|
10
10
|
"Report-Msgid-Bugs-To: \n"
|
11
|
-
"POT-Creation-Date: 2017-
|
12
|
-
"PO-Revision-Date: 2017-
|
11
|
+
"POT-Creation-Date: 2017-07-11 20:38+0200\n"
|
12
|
+
"PO-Revision-Date: 2017-07-11 20:38+0200\n"
|
13
13
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
14
14
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
15
15
|
"Language: \n"
|
@@ -138,7 +138,7 @@ msgid "Distribute tasks over N seconds"
|
|
138
138
|
msgstr ""
|
139
139
|
|
140
140
|
#: ../app/controllers/api/v2/job_invocations_controller.rb:50
|
141
|
-
#: ../app/views/job_invocations/_form.html.erb:
|
141
|
+
#: ../app/views/job_invocations/_form.html.erb:93
|
142
142
|
msgid "Run at most N tasks at a time"
|
143
143
|
msgstr ""
|
144
144
|
|
@@ -146,19 +146,23 @@ msgstr ""
|
|
146
146
|
msgid "Override the description format from the template for this invocation only"
|
147
147
|
msgstr ""
|
148
148
|
|
149
|
-
#: ../app/controllers/api/v2/job_invocations_controller.rb:
|
149
|
+
#: ../app/controllers/api/v2/job_invocations_controller.rb:56
|
150
|
+
msgid "Override the timeout interval from the template for this invocation only"
|
151
|
+
msgstr ""
|
152
|
+
|
153
|
+
#: ../app/controllers/api/v2/job_invocations_controller.rb:60
|
150
154
|
msgid "Create a job invocation"
|
151
155
|
msgstr ""
|
152
156
|
|
153
|
-
#: ../app/controllers/api/v2/job_invocations_controller.rb:
|
157
|
+
#: ../app/controllers/api/v2/job_invocations_controller.rb:69
|
154
158
|
msgid "Get output for a host"
|
155
159
|
msgstr ""
|
156
160
|
|
157
|
-
#: ../app/controllers/api/v2/job_invocations_controller.rb:
|
161
|
+
#: ../app/controllers/api/v2/job_invocations_controller.rb:102
|
158
162
|
msgid "Host with id '%{id}' was not found"
|
159
163
|
msgstr ""
|
160
164
|
|
161
|
-
#: ../app/controllers/api/v2/job_invocations_controller.rb:
|
165
|
+
#: ../app/controllers/api/v2/job_invocations_controller.rb:108
|
162
166
|
msgid "Template with id '%{id}' was not found"
|
163
167
|
msgstr ""
|
164
168
|
|
@@ -548,39 +552,39 @@ msgstr ""
|
|
548
552
|
msgid "Failed rendering template: %s"
|
549
553
|
msgstr ""
|
550
554
|
|
551
|
-
#: ../app/lib/actions/remote_execution/run_host_job.rb:
|
555
|
+
#: ../app/lib/actions/remote_execution/run_host_job.rb:63
|
552
556
|
msgid "Job execution failed"
|
553
557
|
msgstr ""
|
554
558
|
|
555
|
-
#: ../app/lib/actions/remote_execution/run_host_job.rb:
|
559
|
+
#: ../app/lib/actions/remote_execution/run_host_job.rb:72
|
556
560
|
msgid "%{description} on %{host}"
|
557
561
|
msgstr ""
|
558
562
|
|
559
|
-
#: ../app/lib/actions/remote_execution/run_host_job.rb:
|
563
|
+
#: ../app/lib/actions/remote_execution/run_host_job.rb:77 action_names.rb:3
|
560
564
|
msgid "Remote action:"
|
561
565
|
msgstr ""
|
562
566
|
|
563
|
-
#: ../app/lib/actions/remote_execution/run_host_job.rb:
|
567
|
+
#: ../app/lib/actions/remote_execution/run_host_job.rb:99
|
564
568
|
msgid "Exit status: %s"
|
565
569
|
msgstr ""
|
566
570
|
|
567
|
-
#: ../app/lib/actions/remote_execution/run_host_job.rb:
|
571
|
+
#: ../app/lib/actions/remote_execution/run_host_job.rb:101
|
568
572
|
msgid "Job finished with error"
|
569
573
|
msgstr ""
|
570
574
|
|
571
|
-
#: ../app/lib/actions/remote_execution/run_host_job.rb:
|
575
|
+
#: ../app/lib/actions/remote_execution/run_host_job.rb:104
|
572
576
|
msgid "Error loading data from proxy"
|
573
577
|
msgstr ""
|
574
578
|
|
575
|
-
#: ../app/lib/actions/remote_execution/run_host_job.rb:
|
579
|
+
#: ../app/lib/actions/remote_execution/run_host_job.rb:128
|
576
580
|
msgid "User can not execute job on host %s"
|
577
581
|
msgstr ""
|
578
582
|
|
579
|
-
#: ../app/lib/actions/remote_execution/run_host_job.rb:
|
583
|
+
#: ../app/lib/actions/remote_execution/run_host_job.rb:129
|
580
584
|
msgid "User can not execute this job template"
|
581
585
|
msgstr ""
|
582
586
|
|
583
|
-
#: ../app/lib/actions/remote_execution/run_host_job.rb:
|
587
|
+
#: ../app/lib/actions/remote_execution/run_host_job.rb:134
|
584
588
|
msgid "User can not execute this job template on %s"
|
585
589
|
msgstr ""
|
586
590
|
|
@@ -640,27 +644,27 @@ msgstr ""
|
|
640
644
|
msgid "template"
|
641
645
|
msgstr ""
|
642
646
|
|
643
|
-
#: ../app/models/job_invocation_composer.rb:
|
647
|
+
#: ../app/models/job_invocation_composer.rb:97
|
644
648
|
msgid "Cannot specify both bookmark_id and search_query"
|
645
649
|
msgstr ""
|
646
650
|
|
647
|
-
#: ../app/models/job_invocation_composer.rb:
|
651
|
+
#: ../app/models/job_invocation_composer.rb:102
|
648
652
|
msgid "Cannot specify both recurrence and scheduling"
|
649
653
|
msgstr ""
|
650
654
|
|
651
|
-
#: ../app/models/job_invocation_composer.rb:
|
655
|
+
#: ../app/models/job_invocation_composer.rb:136
|
652
656
|
msgid "Unknown input %{input_name} for template %{template_name}"
|
653
657
|
msgstr ""
|
654
658
|
|
655
|
-
#: ../app/models/job_invocation_composer.rb:
|
659
|
+
#: ../app/models/job_invocation_composer.rb:254
|
656
660
|
msgid "Feature input %{input_name} not defined in template %{template_name}"
|
657
661
|
msgstr ""
|
658
662
|
|
659
|
-
#: ../app/models/job_invocation_composer.rb:
|
663
|
+
#: ../app/models/job_invocation_composer.rb:263
|
660
664
|
msgid "No template mapped to feature %{feature_name}"
|
661
665
|
msgstr ""
|
662
666
|
|
663
|
-
#: ../app/models/job_invocation_composer.rb:
|
667
|
+
#: ../app/models/job_invocation_composer.rb:269
|
664
668
|
msgid ""
|
665
669
|
"The template %{template_name} mapped to feature %{feature_name} is not accessi"
|
666
670
|
"ble by the user"
|
@@ -749,11 +753,11 @@ msgid "Effective user method \"%{current_value}\" is not one of %{valid_methods}
|
|
749
753
|
msgstr ""
|
750
754
|
|
751
755
|
#: ../app/models/targeting.rb:5
|
752
|
-
msgid "
|
756
|
+
msgid "Static Query"
|
753
757
|
msgstr ""
|
754
758
|
|
755
759
|
#: ../app/models/targeting.rb:5
|
756
|
-
msgid "
|
760
|
+
msgid "Dynamic Query"
|
757
761
|
msgstr ""
|
758
762
|
|
759
763
|
#: ../app/models/targeting.rb:35
|
@@ -764,20 +768,20 @@ msgstr ""
|
|
764
768
|
msgid "Cannot resolve hosts without a bookmark or search query"
|
765
769
|
msgstr ""
|
766
770
|
|
767
|
-
#: ../app/models/targeting.rb:
|
771
|
+
#: ../app/models/targeting.rb:71 ../app/models/targeting.rb:72
|
768
772
|
msgid "Must select a bookmark or enter a search query"
|
769
773
|
msgstr ""
|
770
774
|
|
771
775
|
#: ../app/models/template_input.rb:9
|
772
|
-
msgid "
|
776
|
+
msgid "Variable"
|
773
777
|
msgstr ""
|
774
778
|
|
775
779
|
#: ../app/models/template_input.rb:9
|
776
|
-
msgid "
|
780
|
+
msgid "Fact value"
|
777
781
|
msgstr ""
|
778
782
|
|
779
783
|
#: ../app/models/template_input.rb:9
|
780
|
-
msgid "
|
784
|
+
msgid "User input"
|
781
785
|
msgstr ""
|
782
786
|
|
783
787
|
#: ../app/models/template_input.rb:10
|
@@ -819,11 +823,17 @@ msgid "Preview"
|
|
819
823
|
msgstr ""
|
820
824
|
|
821
825
|
#: ../app/views/job_invocations/_form.html.erb:64
|
822
|
-
msgid "
|
826
|
+
msgid "Hide advanced fields"
|
823
827
|
msgstr ""
|
824
828
|
|
825
829
|
#: ../app/views/job_invocations/_form.html.erb:64
|
826
|
-
msgid "
|
830
|
+
msgid "Display advanced fields"
|
831
|
+
msgstr ""
|
832
|
+
|
833
|
+
#: ../app/views/job_invocations/_form.html.erb:75
|
834
|
+
#: ../app/views/job_invocations/_tab_overview.html.erb:44
|
835
|
+
#: ../app/views/job_templates/_custom_tabs.html.erb:38
|
836
|
+
msgid "Effective user"
|
827
837
|
msgstr ""
|
828
838
|
|
829
839
|
#: ../app/views/job_invocations/_form.html.erb:75
|
@@ -832,25 +842,33 @@ msgid ""
|
|
832
842
|
"u or sudo is used to switch the accounts."
|
833
843
|
msgstr ""
|
834
844
|
|
835
|
-
#: ../app/views/job_invocations/_form.html.erb:
|
836
|
-
|
837
|
-
|
838
|
-
|
845
|
+
#: ../app/views/job_invocations/_form.html.erb:81
|
846
|
+
msgid ""
|
847
|
+
"Time in seconds from the start on the remote host after which the job should b"
|
848
|
+
"e killed."
|
849
|
+
msgstr ""
|
850
|
+
|
851
|
+
#: ../app/views/job_invocations/_form.html.erb:81
|
852
|
+
msgid "Timeout to kill"
|
839
853
|
msgstr ""
|
840
854
|
|
841
|
-
#: ../app/views/job_invocations/_form.html.erb:
|
855
|
+
#: ../app/views/job_invocations/_form.html.erb:93
|
842
856
|
msgid "Concurrency level"
|
843
857
|
msgstr ""
|
844
858
|
|
845
|
-
#: ../app/views/job_invocations/_form.html.erb:
|
859
|
+
#: ../app/views/job_invocations/_form.html.erb:94
|
846
860
|
msgid "Distribute execution over N seconds"
|
847
861
|
msgstr ""
|
848
862
|
|
849
|
-
#: ../app/views/job_invocations/_form.html.erb:
|
863
|
+
#: ../app/views/job_invocations/_form.html.erb:94
|
850
864
|
msgid "Time span"
|
851
865
|
msgstr ""
|
852
866
|
|
853
|
-
#: ../app/views/job_invocations/_form.html.erb:
|
867
|
+
#: ../app/views/job_invocations/_form.html.erb:98
|
868
|
+
msgid "Type of query"
|
869
|
+
msgstr ""
|
870
|
+
|
871
|
+
#: ../app/views/job_invocations/_form.html.erb:98
|
854
872
|
msgid ""
|
855
873
|
"Type has impact on when is the query evaulated to hosts.<br><ul><li><b>Static<"
|
856
874
|
"/b> - evaluates just after you submit this form</li><li><b>Dynamic</b> - evalu"
|
@@ -858,10 +876,6 @@ msgid ""
|
|
858
876
|
"ed hosts set may change before it</li></ul>"
|
859
877
|
msgstr ""
|
860
878
|
|
861
|
-
#: ../app/views/job_invocations/_form.html.erb:94
|
862
|
-
msgid "Type of query"
|
863
|
-
msgstr ""
|
864
|
-
|
865
879
|
#: ../app/views/job_invocations/_preview_hosts_list.html.erb:3
|
866
880
|
msgid ""
|
867
881
|
"The final host list may change because the selected query is dynamic. It will"
|
@@ -957,17 +971,25 @@ msgid "Concurrency level limited to"
|
|
957
971
|
msgstr ""
|
958
972
|
|
959
973
|
#: ../app/views/job_invocations/_tab_overview.html.erb:50
|
960
|
-
msgid "
|
974
|
+
msgid "Set to distribute over"
|
961
975
|
msgstr ""
|
962
976
|
|
963
977
|
#: ../app/views/job_invocations/_tab_overview.html.erb:50
|
964
|
-
msgid "
|
978
|
+
msgid "minutes"
|
965
979
|
msgstr ""
|
966
980
|
|
967
981
|
#: ../app/views/job_invocations/_tab_overview.html.erb:53
|
968
982
|
msgid "Scheduled to start at"
|
969
983
|
msgstr ""
|
970
984
|
|
985
|
+
#: ../app/views/job_invocations/_tab_overview.html.erb:56
|
986
|
+
msgid "Timeout to kill after"
|
987
|
+
msgstr ""
|
988
|
+
|
989
|
+
#: ../app/views/job_invocations/_tab_overview.html.erb:56
|
990
|
+
msgid "seconds"
|
991
|
+
msgstr ""
|
992
|
+
|
971
993
|
#: ../app/views/job_invocations/index.html.erb:1
|
972
994
|
msgid "Job invocations"
|
973
995
|
msgstr ""
|
@@ -1004,23 +1026,27 @@ msgstr ""
|
|
1004
1026
|
msgid "Type"
|
1005
1027
|
msgstr ""
|
1006
1028
|
|
1007
|
-
#: ../app/views/job_templates/_custom_tabs.html.erb:
|
1008
|
-
msgid "
|
1029
|
+
#: ../app/views/job_templates/_custom_tabs.html.erb:18
|
1030
|
+
msgid "Timeout interval"
|
1009
1031
|
msgstr ""
|
1010
1032
|
|
1011
|
-
#: ../app/views/job_templates/_custom_tabs.html.erb:
|
1033
|
+
#: ../app/views/job_templates/_custom_tabs.html.erb:27
|
1012
1034
|
msgid "add a input for this template"
|
1013
1035
|
msgstr ""
|
1014
1036
|
|
1015
|
-
#: ../app/views/job_templates/_custom_tabs.html.erb:
|
1037
|
+
#: ../app/views/job_templates/_custom_tabs.html.erb:27
|
1038
|
+
msgid "Add Input"
|
1039
|
+
msgstr ""
|
1040
|
+
|
1041
|
+
#: ../app/views/job_templates/_custom_tabs.html.erb:34
|
1016
1042
|
msgid "add an input set for this template to reference a different template inputs"
|
1017
1043
|
msgstr ""
|
1018
1044
|
|
1019
|
-
#: ../app/views/job_templates/_custom_tabs.html.erb:
|
1045
|
+
#: ../app/views/job_templates/_custom_tabs.html.erb:34
|
1020
1046
|
msgid "Add Foreign Input Set"
|
1021
1047
|
msgstr ""
|
1022
1048
|
|
1023
|
-
#: ../app/views/job_templates/_custom_tabs.html.erb:
|
1049
|
+
#: ../app/views/job_templates/_custom_tabs.html.erb:52
|
1024
1050
|
msgid "Snippet"
|
1025
1051
|
msgstr ""
|
1026
1052
|
|
@@ -1031,11 +1057,11 @@ msgid ""
|
|
1031
1057
|
msgstr ""
|
1032
1058
|
|
1033
1059
|
#: ../app/views/job_templates/_import_job_template_modal.html.erb:14
|
1034
|
-
msgid "
|
1060
|
+
msgid "Overwrite"
|
1035
1061
|
msgstr ""
|
1036
1062
|
|
1037
1063
|
#: ../app/views/job_templates/_import_job_template_modal.html.erb:14
|
1038
|
-
msgid "
|
1064
|
+
msgid "Whether to overwrite the template if it already exists"
|
1039
1065
|
msgstr ""
|
1040
1066
|
|
1041
1067
|
#: ../app/views/job_templates/edit.html.erb:4
|
@@ -1186,15 +1212,19 @@ msgid "Jobs"
|
|
1186
1212
|
msgstr ""
|
1187
1213
|
|
1188
1214
|
#: action_names.rb:2
|
1189
|
-
msgid "
|
1215
|
+
msgid "Play Ansible roles"
|
1190
1216
|
msgstr ""
|
1191
1217
|
|
1192
|
-
#: action_names.rb:
|
1218
|
+
#: action_names.rb:4
|
1219
|
+
msgid "Import Puppet classes"
|
1220
|
+
msgstr ""
|
1221
|
+
|
1222
|
+
#: action_names.rb:5
|
1193
1223
|
msgid "Import facts"
|
1194
1224
|
msgstr ""
|
1195
1225
|
|
1196
|
-
#: action_names.rb:
|
1197
|
-
msgid "
|
1226
|
+
#: action_names.rb:6
|
1227
|
+
msgid "Action with sub plans"
|
1198
1228
|
msgstr ""
|
1199
1229
|
|
1200
1230
|
#: gemspec.rb:2
|