foreman_remote_execution 1.3.0 → 1.3.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (84) hide show
  1. checksums.yaml +4 -4
  2. data/.rubocop.yml +28 -2
  3. data/.rubocop_todo.yml +0 -7
  4. data/Gemfile +1 -1
  5. data/app/controllers/api/v2/foreign_input_sets_controller.rb +1 -2
  6. data/app/controllers/api/v2/job_invocations_controller.rb +2 -2
  7. data/app/controllers/api/v2/job_templates_controller.rb +2 -3
  8. data/app/controllers/api/v2/remote_execution_features_controller.rb +1 -2
  9. data/app/controllers/api/v2/template_inputs_controller.rb +1 -2
  10. data/app/controllers/concerns/foreman/controller/parameters/job_template.rb +3 -3
  11. data/app/controllers/concerns/foreman/controller/parameters/template_input.rb +2 -2
  12. data/app/controllers/job_invocations_controller.rb +4 -7
  13. data/app/controllers/job_templates_controller.rb +2 -2
  14. data/app/controllers/remote_execution_features_controller.rb +1 -2
  15. data/app/helpers/remote_execution_helper.rb +22 -17
  16. data/app/lib/actions/remote_execution/run_host_job.rb +4 -10
  17. data/app/models/concerns/foreman_remote_execution/host_extensions.rb +29 -1
  18. data/app/models/host_status/execution_status.rb +1 -1
  19. data/app/models/input_template_renderer.rb +1 -1
  20. data/app/models/job_invocation.rb +12 -7
  21. data/app/models/job_invocation_composer.rb +15 -6
  22. data/app/models/job_invocation_task_group.rb +1 -1
  23. data/app/models/job_template.rb +45 -29
  24. data/app/models/job_template_importer.rb +21 -9
  25. data/app/models/remote_execution_feature.rb +4 -4
  26. data/app/models/setting/remote_execution.rb +7 -5
  27. data/app/models/ssh_execution_provider.rb +1 -3
  28. data/app/models/targeting.rb +6 -5
  29. data/app/models/template_invocation.rb +43 -1
  30. data/app/views/job_invocations/_form.html.erb +1 -1
  31. data/app/views/job_invocations/_tab_overview.html.erb +10 -1
  32. data/config/routes.rb +2 -2
  33. data/db/migrate/20150903192731_add_execution_to_interface.rb +6 -6
  34. data/db/migrate/20151215114631_add_host_id_to_template_invocation.rb +3 -2
  35. data/db/migrate/20160114120200_rename_job_categories.rb +1 -1
  36. data/db/migrate/20160127134031_add_advanced_to_template_input.rb +1 -1
  37. data/db/seeds.d/70-job_templates.rb +1 -1
  38. data/db/seeds.d/90-bookmarks.rb +1 -1
  39. data/doc/Gemfile +1 -1
  40. data/lib/foreman_remote_execution/engine.rb +1 -1
  41. data/lib/foreman_remote_execution/version.rb +1 -1
  42. data/lib/tasks/foreman_remote_execution_tasks.rake +1 -1
  43. data/locale/action_names.rb +1 -1
  44. data/locale/de/LC_MESSAGES/foreman_remote_execution.mo +0 -0
  45. data/locale/de/foreman_remote_execution.po +39 -12
  46. data/locale/en/foreman_remote_execution.po +38 -11
  47. data/locale/en_GB/foreman_remote_execution.po +38 -11
  48. data/locale/es/LC_MESSAGES/foreman_remote_execution.mo +0 -0
  49. data/locale/es/foreman_remote_execution.po +39 -12
  50. data/locale/foreman_remote_execution.pot +175 -141
  51. data/locale/fr/LC_MESSAGES/foreman_remote_execution.mo +0 -0
  52. data/locale/fr/foreman_remote_execution.po +39 -12
  53. data/locale/ja/LC_MESSAGES/foreman_remote_execution.mo +0 -0
  54. data/locale/ja/foreman_remote_execution.po +39 -12
  55. data/locale/ko/LC_MESSAGES/foreman_remote_execution.mo +0 -0
  56. data/locale/ko/foreman_remote_execution.po +39 -12
  57. data/locale/pt_BR/LC_MESSAGES/foreman_remote_execution.mo +0 -0
  58. data/locale/pt_BR/foreman_remote_execution.po +39 -12
  59. data/locale/ru/LC_MESSAGES/foreman_remote_execution.mo +0 -0
  60. data/locale/ru/foreman_remote_execution.po +39 -12
  61. data/locale/zh_CN/LC_MESSAGES/foreman_remote_execution.mo +0 -0
  62. data/locale/zh_CN/foreman_remote_execution.po +39 -12
  63. data/locale/zh_TW/LC_MESSAGES/foreman_remote_execution.mo +0 -0
  64. data/locale/zh_TW/foreman_remote_execution.po +39 -12
  65. data/test/benchmark/run_hosts_job_benchmark.rb +2 -2
  66. data/test/benchmark/targeting_benchmark.rb +2 -2
  67. data/test/factories/foreman_remote_execution_factories.rb +27 -2
  68. data/test/functional/api/v2/job_templates_controller_test.rb +1 -1
  69. data/test/test_plugin_helper.rb +2 -19
  70. data/test/unit/concerns/host_extensions_test.rb +54 -5
  71. data/test/unit/concerns/nic_extensions_test.rb +1 -1
  72. data/test/unit/execution_task_status_mapper_test.rb +1 -2
  73. data/test/unit/input_template_renderer_test.rb +1 -1
  74. data/test/unit/job_invocation_composer_test.rb +21 -29
  75. data/test/unit/job_invocation_test.rb +1 -2
  76. data/test/unit/job_template_effective_user_test.rb +1 -1
  77. data/test/unit/job_template_importer_test.rb +38 -20
  78. data/test/unit/job_template_test.rb +8 -8
  79. data/test/unit/remote_execution_feature_test.rb +6 -6
  80. data/test/unit/remote_execution_provider_test.rb +2 -1
  81. data/test/unit/targeting_test.rb +6 -6
  82. data/test/unit/template_input_test.rb +1 -1
  83. data/test/unit/template_invocation_input_value_test.rb +3 -3
  84. metadata +3 -3
@@ -57,13 +57,13 @@ Rails.application.routes.draw do
57
57
 
58
58
  if SETTINGS[:organizations_enabled]
59
59
  resources :organizations, :only => [:index] do
60
- resources :job_templates, :only =>[:index, :show]
60
+ resources :job_templates, :only => [:index, :show]
61
61
  end
62
62
  end
63
63
 
64
64
  if SETTINGS[:locations_enabled]
65
65
  resources :locations, :only => [:index] do
66
- resources :job_templates, :only =>[:index, :show]
66
+ resources :job_templates, :only => [:index, :show]
67
67
  end
68
68
  end
69
69
 
@@ -1,12 +1,12 @@
1
- class FakeNic < ActiveRecord::Base
2
- self.table_name = 'nics'
1
+ class AddExecutionToInterface < ActiveRecord::Migration
2
+ class FakeNic < ActiveRecord::Base
3
+ self.table_name = 'nics'
3
4
 
4
- def type
5
- Nic::Managed
5
+ def type
6
+ Nic::Managed
7
+ end
6
8
  end
7
- end
8
9
 
9
- class AddExecutionToInterface < ActiveRecord::Migration
10
10
  def up
11
11
  add_column :nics, :execution, :boolean, :default => false
12
12
 
@@ -12,10 +12,11 @@ class AddHostIdToTemplateInvocation < ActiveRecord::Migration
12
12
  FakeTemplateInvocation.all.each do |template_invocation|
13
13
  task = ForemanTasks::Task.for_action_types('Actions::RemoteExecution::RunHostJob').joins(:locks).where(
14
14
  :'foreman_tasks_locks.resource_type' => 'TemplateInvocation',
15
- :'foreman_tasks_locks.resource_id' => template_invocation.id).first
15
+ :'foreman_tasks_locks.resource_id' => template_invocation.id
16
+ ).first
16
17
  next if task.nil? # skip invocations from very early versions of remote executions
17
18
  host_id = task.locks.where(:'foreman_tasks_locks.resource_type' => 'Host::Managed').first.resource_id
18
- next unless Host.find_by_id(host_id)
19
+ next unless Host.find_by(id: host_id)
19
20
 
20
21
  template_invocation.host_id = host_id
21
22
  template_invocation.save!
@@ -4,7 +4,7 @@ class RenameJobCategories < ActiveRecord::Migration
4
4
  'Puppet Run Once - SSH Default' => ['Puppet Run Once', 'Puppet'],
5
5
  'Run Command - SSH Default' => ['Run Command', 'Commands'],
6
6
  'Service Action - SSH Default' => ['Service Action', 'Services'],
7
- }
7
+ }.freeze
8
8
 
9
9
  def up
10
10
  MAP.each do |name, transition|
@@ -1,7 +1,7 @@
1
1
  class AddAdvancedToTemplateInput < ActiveRecord::Migration
2
2
  def up
3
3
  add_column :template_inputs, :advanced, :boolean, :default => false, :null => false
4
- template = JobTemplate.find_by_name('Package Action - SSH Default')
4
+ template = JobTemplate.find_by(name: 'Package Action - SSH Default')
5
5
  TemplateInput.where(:name => ['pre_script', 'post_script'], :template_id => template.try(:id)).update_all(:advanced => true)
6
6
  end
7
7
 
@@ -2,7 +2,7 @@ User.as_anonymous_admin do
2
2
  JobTemplate.without_auditing do
3
3
  Dir[File.join("#{ForemanRemoteExecution::Engine.root}/app/views/templates/**/*.erb")].each do |template|
4
4
  sync = !Rails.env.test? && Setting[:remote_execution_sync_templates]
5
- JobTemplate.import!(File.read(template), :default => true, :locked => true, :update => sync)
5
+ JobTemplate.import_raw!(File.read(template), :default => true, :locked => true, :update => sync)
6
6
  end
7
7
  end
8
8
  end
@@ -7,7 +7,7 @@ Bookmark.without_auditing do
7
7
  { :name => 'recurring', :query => 'recurring = true', :controller => 'job_invocations'},
8
8
  { :name => 'recent', :query => 'started_at > "24 hours ago"', :controller => 'job_invocations'},
9
9
  ].each do |input|
10
- next if Bookmark.where(:controller => 'job_invocations').find_by_name(input[:name])
10
+ next if Bookmark.where(:controller => 'job_invocations').find_by(name: input[:name])
11
11
  # TODO audit should be fixed once core #13109 gets merged
12
12
  next if audit_modified? Bookmark, input[:name]
13
13
  attributes = { :public => true }.merge(input)
@@ -1,7 +1,7 @@
1
1
  source 'https://rubygems.org'
2
2
 
3
- gem 'rake'
4
3
  gem 'jekyll'
5
4
  gem 'pry'
5
+ gem 'rake'
6
6
  gem 'ruby-nuggets' # require by tags plugin
7
7
  gem 'therubyracer'
@@ -69,7 +69,7 @@ module ForemanRemoteExecution
69
69
  :execute_template_invocation,
70
70
  :view_hosts,
71
71
  :view_smart_proxies
72
- ]
72
+ ].freeze
73
73
  MANAGER_PERMISSIONS = USER_PERMISSIONS + [
74
74
  :destroy_job_templates,
75
75
  :edit_job_templates,
@@ -1,3 +1,3 @@
1
1
  module ForemanRemoteExecution
2
- VERSION = '1.3.0'
2
+ VERSION = '1.3.1'.freeze
3
3
  end
@@ -11,7 +11,7 @@ end
11
11
  # Tests
12
12
  namespace :test do
13
13
  desc 'Test ForemanRemoteExecution'
14
- Rake::TestTask.new(:foreman_remote_execution) do |t|
14
+ Rake::TestTask.new(:foreman_remote_execution => ['db:test:prepare']) do |t|
15
15
  test_dir = File.join(File.dirname(__FILE__), '../..', 'test')
16
16
  t.libs << ['test', test_dir]
17
17
  t.pattern = "#{test_dir}/**/*_test.rb"
@@ -2,4 +2,4 @@
2
2
  _("Import Puppet classes")
3
3
  _("Import facts")
4
4
  _("Action with sub plans")
5
- _("Remote action:")
5
+ _("Remote action:")
@@ -17,6 +17,9 @@ msgstr ""
17
17
  "Language: de\n"
18
18
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
19
19
 
20
+ msgid "%s"
21
+ msgstr ""
22
+
20
23
  msgid "%s ago"
21
24
  msgstr "vor %s"
22
25
 
@@ -94,9 +97,18 @@ msgstr "Schließen"
94
97
  msgid "Concurrency level"
95
98
  msgstr "Parallelitätsebene"
96
99
 
100
+ msgid "Concurrency level limited to"
101
+ msgstr ""
102
+
97
103
  msgid "Control concurrency level and distribution over time"
98
104
  msgstr "Parallelitätsebene und zeitliche Verteilung steuern"
99
105
 
106
+ msgid "Could not find any suitable interface for execution"
107
+ msgstr ""
108
+
109
+ msgid "Could not render the preview because no host matches the search query."
110
+ msgstr ""
111
+
100
112
  msgid "Could not use any proxy. Consider configuring %{global_proxy}, %{fallback_proxy} or %{no_proxy} in settings"
101
113
  msgstr ""
102
114
 
@@ -184,12 +196,6 @@ msgstr "Ausführung"
184
196
  msgid "Exit status: %s"
185
197
  msgstr "Exit-Status: %s"
186
198
 
187
- msgid "Explanation"
188
- msgstr "Erklärung"
189
-
190
- msgid "Export"
191
- msgstr "Export"
192
-
193
199
  msgid "Export a job template to ERB"
194
200
  msgstr "Job-Vorlage nach ERB exportieren"
195
201
 
@@ -295,6 +301,9 @@ msgstr "Job-Vorlagen"
295
301
  msgid "Job category"
296
302
  msgstr "Job-Kategorie"
297
303
 
304
+ msgid "Job execution failed"
305
+ msgstr ""
306
+
298
307
  msgid "Job finished with error"
299
308
  msgstr "Job abgeschlossen mit Fehler"
300
309
 
@@ -403,9 +412,6 @@ msgstr "Ausstehend"
403
412
  msgid "Perform no more executions after this time"
404
413
  msgstr "Danach nicht mehr ausführen"
405
414
 
406
- msgid "Playbook execution failed"
407
- msgstr ""
408
-
409
415
  msgid "Port to use for SSH communication. Default port 22. You may override per host by setting a parameter called remote_execution_ssh_port."
410
416
  msgstr ""
411
417
 
@@ -496,12 +502,18 @@ msgstr "SSH"
496
502
  msgid "SSH provider specific options"
497
503
  msgstr "Besondere Optionen des SSH-Anbieters"
498
504
 
505
+ msgid "Schedule Remote Job"
506
+ msgstr ""
507
+
499
508
  msgid "Schedule the job for a future time"
500
509
  msgstr "Job zu einem zukünftigen Zeitpunkt starten lassen"
501
510
 
502
511
  msgid "Schedule the job to start at a later time"
503
512
  msgstr "Job zu einer späteren Zeit starten lassen"
504
513
 
514
+ msgid "Scheduled to start at"
515
+ msgstr ""
516
+
505
517
  msgid "Scroll to bottom"
506
518
  msgstr "Zum Ende scrollen"
507
519
 
@@ -532,6 +544,12 @@ msgstr "Wählen Sie so viele Proxys für entfernte Ausführung aus, wie es für
532
544
  msgid "Selectable values for user inputs"
533
545
  msgstr "Auswählbare Werte für Benutzereingaben"
534
546
 
547
+ msgid "Set to distribute over"
548
+ msgstr ""
549
+
550
+ 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."
551
+ msgstr ""
552
+
535
553
  msgid "Show foreign input set details"
536
554
  msgstr " Details zu Fremdeingabe-Satz anzeigen"
537
555
 
@@ -621,12 +639,12 @@ msgstr "Diese Vorlage ist schreibgeschützt."
621
639
  msgid "This template is locked. Please clone it to a new template to customize."
622
640
  msgstr "Diese Vorlage ist gesperrt. Bitte klonen Sie sie zum Bearbeiten in eine neue Vorlage."
623
641
 
624
- msgid "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}."
625
- msgstr "Diese Vorlage wird für die Erstellung der Beschreibung verwendet. Eingabewerte können mittels Syntax %{package} verwendet werden. Sie können auch Job-Kategorie und Vorlagennamen über %{job_category} und %{template_name} einschließen."
626
-
627
642
  msgid "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}."
628
643
  msgstr "Diese Vorlage wird für die Erstellung der Beschreibung verwendet. Eingabewerte können mittels Syntax %{package} verwendet werden. Sie können auch Job-Kategorie und Vorlagennamen über %{job_category} und %{template_name} einschließen."
629
644
 
645
+ 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
+ msgstr ""
647
+
630
648
  msgid "Time span"
631
649
  msgstr "Zeitspanne"
632
650
 
@@ -779,12 +797,18 @@ msgstr "enthaltene Vorlage '%s' nicht gefunden"
779
797
  msgid "input macro with name '%s' used, but no input with such name defined for this template"
780
798
  msgstr "Es wurde ein Eingabe-Macro namens '%s' verwendet, aber es wurde keine Eingabe mit diesem Namen für diese Vorlage definiert"
781
799
 
800
+ msgid "minutes"
801
+ msgstr ""
802
+
782
803
  msgid "planned"
783
804
  msgstr ""
784
805
 
785
806
  msgid "queued"
786
807
  msgstr "in der Warteschlange"
787
808
 
809
+ msgid "queued to start executing in %{time}"
810
+ msgstr ""
811
+
788
812
  msgid "remove template input"
789
813
  msgstr "Vorlageneingabe entfernen"
790
814
 
@@ -803,6 +827,9 @@ msgstr "erfolgreich"
803
827
  msgid "success"
804
828
  msgstr "erfolgreich"
805
829
 
830
+ msgid "tasks at a time"
831
+ msgstr ""
832
+
806
833
  msgid "template"
807
834
  msgstr "Vorlage"
808
835
 
@@ -17,6 +17,9 @@ msgstr ""
17
17
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
18
18
  "\n"
19
19
 
20
+ msgid "%s"
21
+ msgstr ""
22
+
20
23
  msgid "%s ago"
21
24
  msgstr ""
22
25
 
@@ -95,9 +98,18 @@ msgstr ""
95
98
  msgid "Concurrency level"
96
99
  msgstr ""
97
100
 
101
+ msgid "Concurrency level limited to"
102
+ msgstr ""
103
+
98
104
  msgid "Control concurrency level and distribution over time"
99
105
  msgstr ""
100
106
 
107
+ msgid "Could not find any suitable interface for execution"
108
+ msgstr ""
109
+
110
+ msgid "Could not render the preview because no host matches the search query."
111
+ msgstr ""
112
+
101
113
  msgid "Could not use any proxy. Consider configuring %{global_proxy}, %{fallback_proxy} or %{no_proxy} in settings"
102
114
  msgstr ""
103
115
 
@@ -185,12 +197,6 @@ msgstr ""
185
197
  msgid "Exit status: %s"
186
198
  msgstr ""
187
199
 
188
- msgid "Explanation"
189
- msgstr ""
190
-
191
- msgid "Export"
192
- msgstr ""
193
-
194
200
  msgid "Export a job template to ERB"
195
201
  msgstr ""
196
202
 
@@ -296,6 +302,9 @@ msgstr ""
296
302
  msgid "Job category"
297
303
  msgstr ""
298
304
 
305
+ msgid "Job execution failed"
306
+ msgstr ""
307
+
299
308
  msgid "Job finished with error"
300
309
  msgstr ""
301
310
 
@@ -404,9 +413,6 @@ msgstr ""
404
413
  msgid "Perform no more executions after this time"
405
414
  msgstr ""
406
415
 
407
- msgid "Playbook execution failed"
408
- msgstr ""
409
-
410
416
  msgid "Port to use for SSH communication. Default port 22. You may override per host by setting a parameter called remote_execution_ssh_port."
411
417
  msgstr ""
412
418
 
@@ -497,12 +503,18 @@ msgstr ""
497
503
  msgid "SSH provider specific options"
498
504
  msgstr ""
499
505
 
506
+ msgid "Schedule Remote Job"
507
+ msgstr ""
508
+
500
509
  msgid "Schedule the job for a future time"
501
510
  msgstr ""
502
511
 
503
512
  msgid "Schedule the job to start at a later time"
504
513
  msgstr ""
505
514
 
515
+ msgid "Scheduled to start at"
516
+ msgstr ""
517
+
506
518
  msgid "Scroll to bottom"
507
519
  msgstr ""
508
520
 
@@ -533,6 +545,12 @@ msgstr ""
533
545
  msgid "Selectable values for user inputs"
534
546
  msgstr ""
535
547
 
548
+ msgid "Set to distribute over"
549
+ msgstr ""
550
+
551
+ 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."
552
+ msgstr ""
553
+
536
554
  msgid "Show foreign input set details"
537
555
  msgstr ""
538
556
 
@@ -622,10 +640,10 @@ msgstr ""
622
640
  msgid "This template is locked. Please clone it to a new template to customize."
623
641
  msgstr ""
624
642
 
625
- msgid "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}."
643
+ msgid "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}."
626
644
  msgstr ""
627
645
 
628
- msgid "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}."
646
+ 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}."
629
647
  msgstr ""
630
648
 
631
649
  msgid "Time span"
@@ -780,12 +798,18 @@ msgstr ""
780
798
  msgid "input macro with name '%s' used, but no input with such name defined for this template"
781
799
  msgstr ""
782
800
 
801
+ msgid "minutes"
802
+ msgstr ""
803
+
783
804
  msgid "planned"
784
805
  msgstr ""
785
806
 
786
807
  msgid "queued"
787
808
  msgstr ""
788
809
 
810
+ msgid "queued to start executing in %{time}"
811
+ msgstr ""
812
+
789
813
  msgid "remove template input"
790
814
  msgstr ""
791
815
 
@@ -804,6 +828,9 @@ msgstr ""
804
828
  msgid "success"
805
829
  msgstr ""
806
830
 
831
+ msgid "tasks at a time"
832
+ msgstr ""
833
+
807
834
  msgid "template"
808
835
  msgstr ""
809
836
 
@@ -18,6 +18,9 @@ msgstr ""
18
18
  "Language: en_GB\n"
19
19
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
20
20
 
21
+ msgid "%s"
22
+ msgstr ""
23
+
21
24
  msgid "%s ago"
22
25
  msgstr "%s ago"
23
26
 
@@ -95,9 +98,18 @@ msgstr ""
95
98
  msgid "Concurrency level"
96
99
  msgstr ""
97
100
 
101
+ msgid "Concurrency level limited to"
102
+ msgstr ""
103
+
98
104
  msgid "Control concurrency level and distribution over time"
99
105
  msgstr ""
100
106
 
107
+ msgid "Could not find any suitable interface for execution"
108
+ msgstr ""
109
+
110
+ msgid "Could not render the preview because no host matches the search query."
111
+ msgstr ""
112
+
101
113
  msgid "Could not use any proxy. Consider configuring %{global_proxy}, %{fallback_proxy} or %{no_proxy} in settings"
102
114
  msgstr ""
103
115
 
@@ -185,12 +197,6 @@ msgstr ""
185
197
  msgid "Exit status: %s"
186
198
  msgstr ""
187
199
 
188
- msgid "Explanation"
189
- msgstr ""
190
-
191
- msgid "Export"
192
- msgstr ""
193
-
194
200
  msgid "Export a job template to ERB"
195
201
  msgstr ""
196
202
 
@@ -296,6 +302,9 @@ msgstr ""
296
302
  msgid "Job category"
297
303
  msgstr ""
298
304
 
305
+ msgid "Job execution failed"
306
+ msgstr ""
307
+
299
308
  msgid "Job finished with error"
300
309
  msgstr ""
301
310
 
@@ -404,9 +413,6 @@ msgstr ""
404
413
  msgid "Perform no more executions after this time"
405
414
  msgstr ""
406
415
 
407
- msgid "Playbook execution failed"
408
- msgstr ""
409
-
410
416
  msgid "Port to use for SSH communication. Default port 22. You may override per host by setting a parameter called remote_execution_ssh_port."
411
417
  msgstr ""
412
418
 
@@ -497,12 +503,18 @@ msgstr ""
497
503
  msgid "SSH provider specific options"
498
504
  msgstr ""
499
505
 
506
+ msgid "Schedule Remote Job"
507
+ msgstr ""
508
+
500
509
  msgid "Schedule the job for a future time"
501
510
  msgstr ""
502
511
 
503
512
  msgid "Schedule the job to start at a later time"
504
513
  msgstr ""
505
514
 
515
+ msgid "Scheduled to start at"
516
+ msgstr ""
517
+
506
518
  msgid "Scroll to bottom"
507
519
  msgstr ""
508
520
 
@@ -533,6 +545,12 @@ msgstr ""
533
545
  msgid "Selectable values for user inputs"
534
546
  msgstr ""
535
547
 
548
+ msgid "Set to distribute over"
549
+ msgstr ""
550
+
551
+ 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."
552
+ msgstr ""
553
+
536
554
  msgid "Show foreign input set details"
537
555
  msgstr ""
538
556
 
@@ -622,10 +640,10 @@ msgstr ""
622
640
  msgid "This template is locked. Please clone it to a new template to customize."
623
641
  msgstr "This template is locked. Please clone it to a new template to customise."
624
642
 
625
- msgid "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}."
643
+ msgid "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}."
626
644
  msgstr ""
627
645
 
628
- msgid "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}."
646
+ 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}."
629
647
  msgstr ""
630
648
 
631
649
  msgid "Time span"
@@ -780,12 +798,18 @@ msgstr ""
780
798
  msgid "input macro with name '%s' used, but no input with such name defined for this template"
781
799
  msgstr ""
782
800
 
801
+ msgid "minutes"
802
+ msgstr ""
803
+
783
804
  msgid "planned"
784
805
  msgstr ""
785
806
 
786
807
  msgid "queued"
787
808
  msgstr ""
788
809
 
810
+ msgid "queued to start executing in %{time}"
811
+ msgstr ""
812
+
789
813
  msgid "remove template input"
790
814
  msgstr ""
791
815
 
@@ -804,6 +828,9 @@ msgstr ""
804
828
  msgid "success"
805
829
  msgstr ""
806
830
 
831
+ msgid "tasks at a time"
832
+ msgstr ""
833
+
807
834
  msgid "template"
808
835
  msgstr ""
809
836