foreman_ansible 14.2.1 → 15.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/assets/javascripts/foreman_ansible/locale/ca/foreman_ansible.js +359 -386
- data/app/assets/javascripts/foreman_ansible/locale/cs_CZ/foreman_ansible.js +443 -470
- data/app/assets/javascripts/foreman_ansible/locale/de/foreman_ansible.js +518 -545
- data/app/assets/javascripts/foreman_ansible/locale/en/foreman_ansible.js +291 -318
- data/app/assets/javascripts/foreman_ansible/locale/en_GB/foreman_ansible.js +317 -344
- data/app/assets/javascripts/foreman_ansible/locale/es/foreman_ansible.js +580 -607
- data/app/assets/javascripts/foreman_ansible/locale/fr/foreman_ansible.js +582 -609
- data/app/assets/javascripts/foreman_ansible/locale/gl/foreman_ansible.js +333 -360
- data/app/assets/javascripts/foreman_ansible/locale/it/foreman_ansible.js +395 -422
- data/app/assets/javascripts/foreman_ansible/locale/ja/foreman_ansible.js +582 -609
- data/app/assets/javascripts/foreman_ansible/locale/ka/foreman_ansible.js +575 -602
- data/app/assets/javascripts/foreman_ansible/locale/ko/foreman_ansible.js +402 -429
- data/app/assets/javascripts/foreman_ansible/locale/nl_NL/foreman_ansible.js +350 -377
- data/app/assets/javascripts/foreman_ansible/locale/pl/foreman_ansible.js +369 -396
- data/app/assets/javascripts/foreman_ansible/locale/pt_BR/foreman_ansible.js +580 -607
- data/app/assets/javascripts/foreman_ansible/locale/ru/foreman_ansible.js +391 -418
- data/app/assets/javascripts/foreman_ansible/locale/sv_SE/foreman_ansible.js +335 -362
- data/app/assets/javascripts/foreman_ansible/locale/zh_CN/foreman_ansible.js +584 -611
- data/app/assets/javascripts/foreman_ansible/locale/zh_TW/foreman_ansible.js +402 -429
- data/app/controllers/ansible_roles_controller.rb +1 -1
- data/app/controllers/ansible_variables_controller.rb +1 -1
- data/app/controllers/api/v2/ansible_roles_controller.rb +1 -1
- data/app/controllers/ui_ansible_roles_controller.rb +1 -1
- data/app/jobs/sync_roles_and_variables.rb +1 -1
- data/app/models/ansible_role.rb +3 -0
- data/app/models/ansible_variable.rb +4 -0
- data/app/models/host_ansible_role.rb +6 -0
- data/app/services/foreman_ansible/api_roles_importer.rb +1 -1
- data/app/services/foreman_ansible/ui_roles_importer.rb +1 -1
- data/app/views/foreman_ansible/job_templates/capsule_update_-_ansible_default.erb +73 -0
- data/app/views/foreman_ansible/job_templates/capsule_upgrade_-_ansible_default.erb +1 -3
- data/lib/foreman_ansible/engine.rb +4 -10
- data/lib/foreman_ansible/register.rb +1 -1
- data/lib/foreman_ansible/remote_execution.rb +6 -0
- data/lib/foreman_ansible/version.rb +1 -1
- data/locale/ca/foreman_ansible.po +6 -33
- data/locale/cs_CZ/LC_MESSAGES/foreman_ansible.mo +0 -0
- data/locale/cs_CZ/foreman_ansible.po +6 -33
- data/locale/de/LC_MESSAGES/foreman_ansible.mo +0 -0
- data/locale/de/foreman_ansible.po +6 -33
- data/locale/en/foreman_ansible.po +6 -33
- data/locale/en_GB/LC_MESSAGES/foreman_ansible.mo +0 -0
- data/locale/en_GB/foreman_ansible.po +6 -33
- data/locale/es/LC_MESSAGES/foreman_ansible.mo +0 -0
- data/locale/es/foreman_ansible.po +6 -33
- data/locale/foreman_ansible.pot +47 -85
- data/locale/fr/LC_MESSAGES/foreman_ansible.mo +0 -0
- data/locale/fr/foreman_ansible.po +6 -33
- data/locale/gl/foreman_ansible.po +6 -33
- data/locale/it/LC_MESSAGES/foreman_ansible.mo +0 -0
- data/locale/it/foreman_ansible.po +6 -33
- data/locale/ja/LC_MESSAGES/foreman_ansible.mo +0 -0
- data/locale/ja/foreman_ansible.po +6 -33
- data/locale/ka/LC_MESSAGES/foreman_ansible.mo +0 -0
- data/locale/ka/foreman_ansible.po +6 -33
- data/locale/ko/LC_MESSAGES/foreman_ansible.mo +0 -0
- data/locale/ko/foreman_ansible.po +6 -33
- data/locale/nl_NL/foreman_ansible.po +6 -33
- data/locale/pl/foreman_ansible.po +6 -33
- data/locale/pt_BR/LC_MESSAGES/foreman_ansible.mo +0 -0
- data/locale/pt_BR/foreman_ansible.po +6 -33
- data/locale/ru/LC_MESSAGES/foreman_ansible.mo +0 -0
- data/locale/ru/foreman_ansible.po +6 -33
- data/locale/sv_SE/foreman_ansible.po +6 -33
- data/locale/zh_CN/LC_MESSAGES/foreman_ansible.mo +0 -0
- data/locale/zh_CN/foreman_ansible.po +6 -33
- data/locale/zh_TW/LC_MESSAGES/foreman_ansible.mo +0 -0
- data/locale/zh_TW/foreman_ansible.po +6 -33
- data/test/functional/ansible_variables_controller_test.rb +1 -1
- data/test/functional/ui_ansible_roles_controller_test.rb +1 -1
- data/test/unit/host_ansible_role_test.rb +30 -0
- data/test/unit/services/ui_roles_importer_test.rb +3 -3
- metadata +26 -12
- data/locale/action_names.rb +0 -7
- /data/app/jobs/{sync_playbooks.rb → import_playbooks_job/async/sync_playbooks.rb} +0 -0
@@ -46,7 +46,7 @@ class AnsibleRolesController < ::ApplicationController
|
|
46
46
|
end
|
47
47
|
|
48
48
|
def create_importer
|
49
|
-
@importer = ForemanAnsible::
|
49
|
+
@importer = ForemanAnsible::UIRolesImporter.new(@proxy)
|
50
50
|
@variables_importer = ForemanAnsible::VariablesImporter.new(@proxy)
|
51
51
|
end
|
52
52
|
|
@@ -92,7 +92,7 @@ class AnsibleVariablesController < ::LookupKeysController
|
|
92
92
|
|
93
93
|
def create_importer
|
94
94
|
@importer = ForemanAnsible::VariablesImporter.new(@proxy)
|
95
|
-
@importer_roles = ForemanAnsible::
|
95
|
+
@importer_roles = ForemanAnsible::UIRolesImporter.new(@proxy)
|
96
96
|
end
|
97
97
|
|
98
98
|
def find_required_proxy
|
@@ -98,7 +98,7 @@ module Api
|
|
98
98
|
# rubocop:enable Layout/DotPosition
|
99
99
|
|
100
100
|
def create_importer
|
101
|
-
@roles_importer = ForemanAnsible::
|
101
|
+
@roles_importer = ForemanAnsible::UIRolesImporter.new(@proxy)
|
102
102
|
@variables_importer = ForemanAnsible::VariablesImporter.new(@proxy)
|
103
103
|
@importer = ForemanAnsible::ApiRolesImporter.new(@proxy)
|
104
104
|
end
|
@@ -2,7 +2,7 @@ class SyncRolesAndVariables < ::ApplicationJob
|
|
2
2
|
queue_as :default
|
3
3
|
|
4
4
|
def perform(changed, proxy)
|
5
|
-
roles_importer = ForemanAnsible::
|
5
|
+
roles_importer = ForemanAnsible::UIRolesImporter.new(proxy)
|
6
6
|
variables_importer = ForemanAnsible::VariablesImporter.new(proxy)
|
7
7
|
roles_importer.finish_import(changed)
|
8
8
|
variables_importer.import_variables_roles(changed) if changed['new'] || changed['old']
|
data/app/models/ansible_role.rb
CHANGED
@@ -4,6 +4,7 @@
|
|
4
4
|
class AnsibleRole < ApplicationRecord
|
5
5
|
audited
|
6
6
|
include Authorizable
|
7
|
+
include Foreman::ObservableModel
|
7
8
|
|
8
9
|
self.include_root_in_json = false
|
9
10
|
validates :name, :presence => true, :uniqueness => true
|
@@ -28,6 +29,8 @@ class AnsibleRole < ApplicationRecord
|
|
28
29
|
scoped_search :relation => :hostgroups,
|
29
30
|
:on => :name, :rename => :hostgroup, :only_explicit => true
|
30
31
|
|
32
|
+
set_crud_hooks :ansible_role
|
33
|
+
|
31
34
|
apipie :class, "A class representing #{model_name.human} object" do
|
32
35
|
name 'Ansible role'
|
33
36
|
refs 'AnsibleRole'
|
@@ -2,6 +2,8 @@
|
|
2
2
|
|
3
3
|
# Represents the variables used in Ansible to parameterize playbooks
|
4
4
|
class AnsibleVariable < LookupKey
|
5
|
+
include Foreman::ObservableModel
|
6
|
+
|
5
7
|
belongs_to :ansible_role, :inverse_of => :ansible_variables
|
6
8
|
validates :ansible_role_id, :presence => true
|
7
9
|
before_validation :cast_default_value, :if => :override?
|
@@ -11,6 +13,8 @@ class AnsibleVariable < LookupKey
|
|
11
13
|
scoped_search :relation => :ansible_role, :on => :name,
|
12
14
|
:complete_value => true, :rename => :ansible_role
|
13
15
|
|
16
|
+
set_crud_hooks :ansible_variable
|
17
|
+
|
14
18
|
def ansible?
|
15
19
|
true
|
16
20
|
end
|
@@ -2,10 +2,16 @@
|
|
2
2
|
|
3
3
|
# Join model that hosts the connection between hosts and ansible_roles
|
4
4
|
class HostAnsibleRole < ApplicationRecord
|
5
|
+
audited associated_with: :host
|
6
|
+
|
5
7
|
belongs_to_host
|
6
8
|
belongs_to :ansible_role
|
7
9
|
acts_as_list scope: :host
|
8
10
|
|
9
11
|
validates :ansible_role_id, :presence => true,
|
10
12
|
:uniqueness => { :scope => :host_id }
|
13
|
+
|
14
|
+
def to_label
|
15
|
+
ansible_role.name
|
16
|
+
end
|
11
17
|
end
|
@@ -6,7 +6,7 @@ module ForemanAnsible
|
|
6
6
|
include ::ForemanAnsible::AnsibleRolesDataPreparations
|
7
7
|
|
8
8
|
def import!(role_names)
|
9
|
-
@roles_importer = ForemanAnsible::
|
9
|
+
@roles_importer = ForemanAnsible::UIRolesImporter.new(@ansible_proxy)
|
10
10
|
@variables_importer = ForemanAnsible::VariablesImporter.new(@ansible_proxy)
|
11
11
|
params = { 'changed' => {} }
|
12
12
|
roles = prepare_ansible_import_rows(@roles_importer.import!, @variables_importer, false)
|
@@ -0,0 +1,73 @@
|
|
1
|
+
<%#
|
2
|
+
name: Capsule Update Playbook
|
3
|
+
snippet: false
|
4
|
+
template_inputs:
|
5
|
+
- name: whitelist_options
|
6
|
+
required: false
|
7
|
+
input_type: user
|
8
|
+
advanced: false
|
9
|
+
value_type: plain
|
10
|
+
hidden_value: false
|
11
|
+
model: JobTemplate
|
12
|
+
job_category: Maintenance Operations
|
13
|
+
description_format: "%{template_name}"
|
14
|
+
provider_type: Ansible
|
15
|
+
kind: job_template
|
16
|
+
feature: ansible_run_capsule_update
|
17
|
+
%>
|
18
|
+
|
19
|
+
---
|
20
|
+
- hosts: all
|
21
|
+
tasks:
|
22
|
+
<% if plugin_present?('foreman_theme_satellite') -%>
|
23
|
+
- name: Gather the rpm package facts
|
24
|
+
package_facts:
|
25
|
+
manager: auto
|
26
|
+
|
27
|
+
- name: Fail if the target server is a Satellite server
|
28
|
+
fail:
|
29
|
+
msg: "This playbook cannot be executed on a Satellite server. Use only on a Capsule server."
|
30
|
+
when: "'satellite' in ansible_facts.packages"
|
31
|
+
|
32
|
+
- name: Install|Update satellite-maintain if not present
|
33
|
+
package:
|
34
|
+
name: rubygem-foreman_maintain
|
35
|
+
state: latest
|
36
|
+
|
37
|
+
- block:
|
38
|
+
<%- whitelist_option = if input('whitelist_options').present?
|
39
|
+
"--whitelist=#{input('whitelist_options')}"
|
40
|
+
end -%>
|
41
|
+
- name: Update Capsule server using satellite-maintain
|
42
|
+
shell: satellite-maintain update run --assumeyes <%= whitelist_option %>
|
43
|
+
register: result
|
44
|
+
|
45
|
+
- name: Re-Gather the rpm package facts after the update
|
46
|
+
package_facts:
|
47
|
+
manager: auto
|
48
|
+
|
49
|
+
- name: satellite-maintain update return code is zero
|
50
|
+
debug:
|
51
|
+
msg: "Success! Capsule server update completed. Current version of Capsule server server is {{ ansible_facts.packages['satellite-capsule'][0]['version'] }}."
|
52
|
+
|
53
|
+
rescue:
|
54
|
+
- name: Print satellite-maintain output
|
55
|
+
debug:
|
56
|
+
var: result
|
57
|
+
|
58
|
+
- name: Grep top 10 Error messages from /var/log/foreman-installer/capsule.log
|
59
|
+
shell: grep '^\[ERROR' /var/log/foreman-installer/capsule.log | head -n10
|
60
|
+
register: output_grep
|
61
|
+
|
62
|
+
- name: Print grepped Error messages
|
63
|
+
debug:
|
64
|
+
var: output_grep.stdout_lines
|
65
|
+
|
66
|
+
- name: satellite-maintain update return code is non-zero
|
67
|
+
fail:
|
68
|
+
msg: "Failed! Capsule server update failed. See /var/log/foreman-installer/capsule.log in the Capsule server for more information"
|
69
|
+
<% else -%>
|
70
|
+
- name: Fail if foreman_theme_satellite is missing
|
71
|
+
fail:
|
72
|
+
msg: "Failed! The plugin foreman_theme_satellite is not present. This playbook is only for use with Satellite."
|
73
|
+
<% end -%>
|
@@ -24,8 +24,6 @@ feature: ansible_run_capsule_upgrade
|
|
24
24
|
|
25
25
|
---
|
26
26
|
- hosts: all
|
27
|
-
vars:
|
28
|
-
target_version: "<%= input('target_version').present? ? input('target_version') : product_short_version %>"
|
29
27
|
tasks:
|
30
28
|
<% if plugin_present?('foreman_theme_satellite') -%>
|
31
29
|
- name: Gather the rpm package facts
|
@@ -47,7 +45,7 @@ feature: ansible_run_capsule_upgrade
|
|
47
45
|
"--whitelist=#{input('whitelist_options')}"
|
48
46
|
end -%>
|
49
47
|
- name: Upgrade Capsule server using satellite-maintain
|
50
|
-
shell: satellite-maintain upgrade run --assumeyes
|
48
|
+
shell: satellite-maintain upgrade run --assumeyes <%= whitelist_option %>
|
51
49
|
register: result
|
52
50
|
|
53
51
|
- name: Re-Gather the rpm package facts after the upgrade
|
@@ -11,16 +11,10 @@ module ForemanAnsible
|
|
11
11
|
class Engine < ::Rails::Engine
|
12
12
|
engine_name 'foreman_ansible'
|
13
13
|
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
config.autoload_paths += Dir["#{config.root}/app/services"]
|
19
|
-
config.autoload_paths += Dir["#{config.root}/app/views"]
|
20
|
-
config.autoload_paths += Dir["#{config.root}/app/lib"]
|
21
|
-
|
22
|
-
initializer 'foreman_ansible.register_plugin', :before => :finisher_hook do
|
23
|
-
require 'foreman_ansible/register'
|
14
|
+
initializer 'foreman_ansible.register_plugin', :before => :finisher_hook do |app|
|
15
|
+
app.reloader.to_prepare do
|
16
|
+
require 'foreman_ansible/register'
|
17
|
+
end
|
24
18
|
end
|
25
19
|
|
26
20
|
initializer('foreman_ansible.require_dynflow',
|
@@ -40,6 +40,12 @@ module ForemanAnsible
|
|
40
40
|
:description => N_('Upgrade Capsules on given Capsule server hosts'),
|
41
41
|
:proxy_selector_override => ::RemoteExecutionProxySelector::INTERNAL_PROXY
|
42
42
|
)
|
43
|
+
RemoteExecutionFeature.register(
|
44
|
+
:ansible_run_capsule_update,
|
45
|
+
N_('Update Capsules on given hosts'),
|
46
|
+
:description => N_('Update Capsules on given Capsule server hosts'),
|
47
|
+
:proxy_selector_override => ::RemoteExecutionProxySelector::INTERNAL_PROXY
|
48
|
+
)
|
43
49
|
end
|
44
50
|
end
|
45
51
|
end
|
@@ -34,9 +34,6 @@ msgstr ""
|
|
34
34
|
msgid "A comma separated list of tags to use for Ansible run"
|
35
35
|
msgstr ""
|
36
36
|
|
37
|
-
msgid "Action with sub plans"
|
38
|
-
msgstr ""
|
39
|
-
|
40
37
|
msgid "Actions"
|
41
38
|
msgstr "Accions"
|
42
39
|
|
@@ -139,9 +136,6 @@ msgstr ""
|
|
139
136
|
msgid "Ansible variable override was successfully deleted."
|
140
137
|
msgstr ""
|
141
138
|
|
142
|
-
msgid "Ansible: Run Insights maintenance plan"
|
143
|
-
msgstr ""
|
144
|
-
|
145
139
|
msgid "Are you sure you want to cancel Ansible config job?"
|
146
140
|
msgstr ""
|
147
141
|
|
@@ -181,9 +175,6 @@ msgstr ""
|
|
181
175
|
msgid "Changed Ansible roles"
|
182
176
|
msgstr ""
|
183
177
|
|
184
|
-
msgid "Check for long running tasks"
|
185
|
-
msgstr ""
|
186
|
-
|
187
178
|
msgid "Close"
|
188
179
|
msgstr "Tanca"
|
189
180
|
|
@@ -256,9 +247,6 @@ msgstr ""
|
|
256
247
|
msgid "Deletes Ansible variable"
|
257
248
|
msgstr ""
|
258
249
|
|
259
|
-
msgid "Deliver notifications about long running tasks"
|
260
|
-
msgstr ""
|
261
|
-
|
262
250
|
msgid "Description"
|
263
251
|
msgstr "Descripció"
|
264
252
|
|
@@ -388,15 +376,9 @@ msgstr "En cas que estigui marcat, es produirà un error si no hi ha cap valor p
|
|
388
376
|
msgid "Import"
|
389
377
|
msgstr "Importa"
|
390
378
|
|
391
|
-
msgid "Import Puppet classes"
|
392
|
-
msgstr ""
|
393
|
-
|
394
379
|
msgid "Import Role"
|
395
380
|
msgstr ""
|
396
381
|
|
397
|
-
msgid "Import facts"
|
398
|
-
msgstr ""
|
399
|
-
|
400
382
|
msgid "Import from %s"
|
401
383
|
msgstr "Importa de %s"
|
402
384
|
|
@@ -433,9 +415,6 @@ msgstr ""
|
|
433
415
|
msgid "Inherited from Hostgroup"
|
434
416
|
msgstr ""
|
435
417
|
|
436
|
-
msgid "Insights remediation on %{hosts_count} host(s) has finished successfully"
|
437
|
-
msgstr ""
|
438
|
-
|
439
418
|
msgid "Invalid, expected one of: %s"
|
440
419
|
msgstr ""
|
441
420
|
|
@@ -445,9 +424,6 @@ msgstr ""
|
|
445
424
|
msgid "Inventory"
|
446
425
|
msgstr ""
|
447
426
|
|
448
|
-
msgid "Job Details"
|
449
|
-
msgstr ""
|
450
|
-
|
451
427
|
msgid "Jobs"
|
452
428
|
msgstr "Treballs"
|
453
429
|
|
@@ -612,12 +588,6 @@ msgstr ""
|
|
612
588
|
msgid "Proxy tasks batch size for Ansible"
|
613
589
|
msgstr ""
|
614
590
|
|
615
|
-
msgid "Remediation Plan"
|
616
|
-
msgstr ""
|
617
|
-
|
618
|
-
msgid "Remote action:"
|
619
|
-
msgstr ""
|
620
|
-
|
621
591
|
msgid "Remove"
|
622
592
|
msgstr "Suprimeix"
|
623
593
|
|
@@ -678,9 +648,6 @@ msgstr ""
|
|
678
648
|
msgid "Run playbook"
|
679
649
|
msgstr ""
|
680
650
|
|
681
|
-
msgid "Runs a given maintenance plan from Red Hat Access Insights given an ID."
|
682
|
-
msgstr ""
|
683
|
-
|
684
651
|
msgid "Runs all Ansible roles on a host"
|
685
652
|
msgstr ""
|
686
653
|
|
@@ -843,6 +810,12 @@ msgstr ""
|
|
843
810
|
msgid "Update"
|
844
811
|
msgstr "Actualitza"
|
845
812
|
|
813
|
+
msgid "Update Capsules on given Capsule server hosts"
|
814
|
+
msgstr ""
|
815
|
+
|
816
|
+
msgid "Update Capsules on given hosts"
|
817
|
+
msgstr ""
|
818
|
+
|
846
819
|
msgid "Update Role Variables"
|
847
820
|
msgstr ""
|
848
821
|
|
Binary file
|
@@ -38,9 +38,6 @@ msgstr ""
|
|
38
38
|
msgid "A comma separated list of tags to use for Ansible run"
|
39
39
|
msgstr ""
|
40
40
|
|
41
|
-
msgid "Action with sub plans"
|
42
|
-
msgstr "Akce s dílčími plány"
|
43
|
-
|
44
41
|
msgid "Actions"
|
45
42
|
msgstr "Akce"
|
46
43
|
|
@@ -143,9 +140,6 @@ msgstr ""
|
|
143
140
|
msgid "Ansible variable override was successfully deleted."
|
144
141
|
msgstr ""
|
145
142
|
|
146
|
-
msgid "Ansible: Run Insights maintenance plan"
|
147
|
-
msgstr ""
|
148
|
-
|
149
143
|
msgid "Are you sure you want to cancel Ansible config job?"
|
150
144
|
msgstr ""
|
151
145
|
|
@@ -185,9 +179,6 @@ msgstr ""
|
|
185
179
|
msgid "Changed Ansible roles"
|
186
180
|
msgstr "Změněné Ansible role"
|
187
181
|
|
188
|
-
msgid "Check for long running tasks"
|
189
|
-
msgstr ""
|
190
|
-
|
191
182
|
msgid "Close"
|
192
183
|
msgstr "Zavřít"
|
193
184
|
|
@@ -260,9 +251,6 @@ msgstr "Smazat Ansible roli"
|
|
260
251
|
msgid "Deletes Ansible variable"
|
261
252
|
msgstr "Smazat Ansible proměnnou"
|
262
253
|
|
263
|
-
msgid "Deliver notifications about long running tasks"
|
264
|
-
msgstr ""
|
265
|
-
|
266
254
|
msgid "Description"
|
267
255
|
msgstr "Popis"
|
268
256
|
|
@@ -392,15 +380,9 @@ msgstr ""
|
|
392
380
|
msgid "Import"
|
393
381
|
msgstr "Import"
|
394
382
|
|
395
|
-
msgid "Import Puppet classes"
|
396
|
-
msgstr "Importovat Puppet třídy"
|
397
|
-
|
398
383
|
msgid "Import Role"
|
399
384
|
msgstr ""
|
400
385
|
|
401
|
-
msgid "Import facts"
|
402
|
-
msgstr "Importovat fakta"
|
403
|
-
|
404
386
|
msgid "Import from %s"
|
405
387
|
msgstr "Importovat z %s"
|
406
388
|
|
@@ -437,9 +419,6 @@ msgstr ""
|
|
437
419
|
msgid "Inherited from Hostgroup"
|
438
420
|
msgstr ""
|
439
421
|
|
440
|
-
msgid "Insights remediation on %{hosts_count} host(s) has finished successfully"
|
441
|
-
msgstr ""
|
442
|
-
|
443
422
|
msgid "Invalid, expected one of: %s"
|
444
423
|
msgstr ""
|
445
424
|
|
@@ -449,9 +428,6 @@ msgstr ""
|
|
449
428
|
msgid "Inventory"
|
450
429
|
msgstr ""
|
451
430
|
|
452
|
-
msgid "Job Details"
|
453
|
-
msgstr "Podrobnosti o úloze"
|
454
|
-
|
455
431
|
msgid "Jobs"
|
456
432
|
msgstr "Úlohy"
|
457
433
|
|
@@ -616,12 +592,6 @@ msgstr "Proxy nenalezena"
|
|
616
592
|
msgid "Proxy tasks batch size for Ansible"
|
617
593
|
msgstr ""
|
618
594
|
|
619
|
-
msgid "Remediation Plan"
|
620
|
-
msgstr ""
|
621
|
-
|
622
|
-
msgid "Remote action:"
|
623
|
-
msgstr "Akce na protějšku:"
|
624
|
-
|
625
595
|
msgid "Remove"
|
626
596
|
msgstr "Odebrat"
|
627
597
|
|
@@ -682,9 +652,6 @@ msgstr ""
|
|
682
652
|
msgid "Run playbook"
|
683
653
|
msgstr ""
|
684
654
|
|
685
|
-
msgid "Runs a given maintenance plan from Red Hat Access Insights given an ID."
|
686
|
-
msgstr ""
|
687
|
-
|
688
655
|
msgid "Runs all Ansible roles on a host"
|
689
656
|
msgstr ""
|
690
657
|
|
@@ -844,6 +811,12 @@ msgstr "Nedaří se získat role/proměnné z Ansible"
|
|
844
811
|
msgid "Update"
|
845
812
|
msgstr "Aktualizovat"
|
846
813
|
|
814
|
+
msgid "Update Capsules on given Capsule server hosts"
|
815
|
+
msgstr ""
|
816
|
+
|
817
|
+
msgid "Update Capsules on given hosts"
|
818
|
+
msgstr ""
|
819
|
+
|
847
820
|
msgid "Update Role Variables"
|
848
821
|
msgstr ""
|
849
822
|
|
Binary file
|
@@ -47,9 +47,6 @@ msgstr ""
|
|
47
47
|
msgid "A comma separated list of tags to use for Ansible run"
|
48
48
|
msgstr ""
|
49
49
|
|
50
|
-
msgid "Action with sub plans"
|
51
|
-
msgstr "Aktion mit Unterplänen"
|
52
|
-
|
53
50
|
msgid "Actions"
|
54
51
|
msgstr "Aktionen"
|
55
52
|
|
@@ -152,9 +149,6 @@ msgstr ""
|
|
152
149
|
msgid "Ansible variable override was successfully deleted."
|
153
150
|
msgstr ""
|
154
151
|
|
155
|
-
msgid "Ansible: Run Insights maintenance plan"
|
156
|
-
msgstr "Ansible: Insights-Wartungsplan ausführen"
|
157
|
-
|
158
152
|
msgid "Are you sure you want to cancel Ansible config job?"
|
159
153
|
msgstr ""
|
160
154
|
|
@@ -194,9 +188,6 @@ msgstr ""
|
|
194
188
|
msgid "Changed Ansible roles"
|
195
189
|
msgstr "Geänderte Ansible-Rollen"
|
196
190
|
|
197
|
-
msgid "Check for long running tasks"
|
198
|
-
msgstr ""
|
199
|
-
|
200
191
|
msgid "Close"
|
201
192
|
msgstr "Schließen"
|
202
193
|
|
@@ -269,9 +260,6 @@ msgstr "Löscht die Ansible-Rolle"
|
|
269
260
|
msgid "Deletes Ansible variable"
|
270
261
|
msgstr "Löscht die Ansible-Variable"
|
271
262
|
|
272
|
-
msgid "Deliver notifications about long running tasks"
|
273
|
-
msgstr ""
|
274
|
-
|
275
263
|
msgid "Description"
|
276
264
|
msgstr "Beschreibung"
|
277
265
|
|
@@ -401,15 +389,9 @@ msgstr "Falls aktiviert, wird dies einen Fehler erzeugen, wenn kein Standardwert
|
|
401
389
|
msgid "Import"
|
402
390
|
msgstr "Importieren"
|
403
391
|
|
404
|
-
msgid "Import Puppet classes"
|
405
|
-
msgstr "Puppet-Klassen importieren"
|
406
|
-
|
407
392
|
msgid "Import Role"
|
408
393
|
msgstr "Rolle importieren"
|
409
394
|
|
410
|
-
msgid "Import facts"
|
411
|
-
msgstr "Fakten importieren"
|
412
|
-
|
413
395
|
msgid "Import from %s"
|
414
396
|
msgstr "Aus %s importieren"
|
415
397
|
|
@@ -446,9 +428,6 @@ msgstr ""
|
|
446
428
|
msgid "Inherited from Hostgroup"
|
447
429
|
msgstr ""
|
448
430
|
|
449
|
-
msgid "Insights remediation on %{hosts_count} host(s) has finished successfully"
|
450
|
-
msgstr "Insights-Korrektur auf %{hosts_count} Host(s) wurde erfolgreich abgeschlossen"
|
451
|
-
|
452
431
|
msgid "Invalid, expected one of: %s"
|
453
432
|
msgstr ""
|
454
433
|
|
@@ -458,9 +437,6 @@ msgstr ""
|
|
458
437
|
msgid "Inventory"
|
459
438
|
msgstr "Bestand"
|
460
439
|
|
461
|
-
msgid "Job Details"
|
462
|
-
msgstr "Auftragsdetails"
|
463
|
-
|
464
440
|
msgid "Jobs"
|
465
441
|
msgstr "Aufträge"
|
466
442
|
|
@@ -625,12 +601,6 @@ msgstr "Kein Proxy gefunden"
|
|
625
601
|
msgid "Proxy tasks batch size for Ansible"
|
626
602
|
msgstr ""
|
627
603
|
|
628
|
-
msgid "Remediation Plan"
|
629
|
-
msgstr "Sanierungsplan"
|
630
|
-
|
631
|
-
msgid "Remote action:"
|
632
|
-
msgstr "Entfernte Aktion"
|
633
|
-
|
634
604
|
msgid "Remove"
|
635
605
|
msgstr "Entfernen"
|
636
606
|
|
@@ -691,9 +661,6 @@ msgstr ""
|
|
691
661
|
msgid "Run playbook"
|
692
662
|
msgstr "Playbook ausführen"
|
693
663
|
|
694
|
-
msgid "Runs a given maintenance plan from Red Hat Access Insights given an ID."
|
695
|
-
msgstr "Führt einen bestimmten Wartungsplan von Red Hat Access Insights mit einer ID aus."
|
696
|
-
|
697
664
|
msgid "Runs all Ansible roles on a host"
|
698
665
|
msgstr "Führt alle Ansible-Rollen auf einem Host aus"
|
699
666
|
|
@@ -853,6 +820,12 @@ msgstr "Rollen/Variablen von Ansible können nicht abgerufen werden"
|
|
853
820
|
msgid "Update"
|
854
821
|
msgstr "Aktualisieren"
|
855
822
|
|
823
|
+
msgid "Update Capsules on given Capsule server hosts"
|
824
|
+
msgstr ""
|
825
|
+
|
826
|
+
msgid "Update Capsules on given hosts"
|
827
|
+
msgstr ""
|
828
|
+
|
856
829
|
msgid "Update Role Variables"
|
857
830
|
msgstr "Rollenvariablen entfernen"
|
858
831
|
|