foreman_ansible 3.0.2 → 3.0.3
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/app/controllers/api/v2/ansible_inventories_controller.rb +51 -0
- data/app/controllers/api/v2/ansible_roles_controller.rb +6 -2
- data/app/controllers/api/v2/ansible_variables_controller.rb +2 -0
- data/app/views/foreman_ansible/job_templates/ansible_roles_-_ansible_default.erb +1 -1
- data/app/views/foreman_ansible/job_templates/run_command_-_ansible_default.erb +3 -2
- data/config/routes.rb +9 -0
- data/lib/foreman_ansible/register.rb +8 -3
- data/lib/foreman_ansible/version.rb +1 -1
- data/locale/de/foreman_ansible.edit.po +271 -170
- data/locale/de/foreman_ansible.po +19 -1
- data/locale/en/foreman_ansible.edit.po +56 -32
- data/locale/en/foreman_ansible.po +19 -1
- data/locale/es/foreman_ansible.edit.po +296 -175
- data/locale/es/foreman_ansible.po +19 -1
- data/locale/foreman_ansible.pot +60 -32
- data/locale/fr/foreman_ansible.edit.po +310 -187
- data/locale/fr/foreman_ansible.po +19 -1
- data/locale/it/foreman_ansible.edit.po +214 -120
- data/locale/it/foreman_ansible.po +19 -1
- data/locale/ja/foreman_ansible.edit.po +276 -182
- data/locale/ja/foreman_ansible.po +19 -1
- data/locale/ko/foreman_ansible.edit.po +196 -116
- data/locale/ko/foreman_ansible.po +19 -1
- data/locale/pt_BR/foreman_ansible.edit.po +294 -173
- data/locale/pt_BR/foreman_ansible.po +19 -1
- data/locale/ru/foreman_ansible.edit.po +207 -113
- data/locale/ru/foreman_ansible.po +19 -1
- data/locale/zh_CN/foreman_ansible.edit.po +272 -183
- data/locale/zh_CN/foreman_ansible.po +19 -1
- data/locale/zh_TW/foreman_ansible.edit.po +196 -116
- data/locale/zh_TW/foreman_ansible.po +19 -1
- data/test/factories/ansible_variables.rb +1 -1
- data/test/functional/api/v2/ansible_inventories_controller_test.rb +51 -0
- metadata +5 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: efc9d0f1dbc292fd3af8888ab840e78049520045
|
4
|
+
data.tar.gz: ac8c6e2d4d2316a659f0478f0497c23d1c21c4a1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9f81a9ca9bc5bb125986f04499ae16153eb48974445e2ce51bb9496daaecdb0cc1f46dfff87307ca2b8c082f3c8ac5ea4daaa4fcf670478ff7f998526fd52b3e
|
7
|
+
data.tar.gz: dd8ea6403b8632d246f2d21f23debffd08d3270aecc8d7d118d8a4e74188f9682b6315a0e16f6b53e8a17449297f7bb71e5b323bdac751dae464723f8cecf99a
|
@@ -0,0 +1,51 @@
|
|
1
|
+
module Api
|
2
|
+
module V2
|
3
|
+
class AnsibleInventoriesController < ::Api::V2::BaseController
|
4
|
+
include ::Api::Version2
|
5
|
+
|
6
|
+
api :POST, '/ansible_inventories/hosts',
|
7
|
+
N_('Show Ansible inventory for hosts')
|
8
|
+
param :host_ids, Array, N_('IDs of hosts included in inventory'),
|
9
|
+
:required => true
|
10
|
+
|
11
|
+
api :GET, '/ansible_inventories/hosts',
|
12
|
+
N_('Show Ansible inventory for hosts')
|
13
|
+
param :host_ids, Array, N_('IDs of hosts included in inventory'),
|
14
|
+
:required => true
|
15
|
+
|
16
|
+
api :POST, '/ansible_inventories/hostgroups',
|
17
|
+
N_('Show Ansible inventory for hostgroups')
|
18
|
+
param :hostgroup_ids, Array, N_('IDs of hostgroups included in inventory'),
|
19
|
+
:required => true
|
20
|
+
|
21
|
+
api :GET, '/ansible_inventories/hostgroups',
|
22
|
+
N_('Show Ansible inventory for hostgroups')
|
23
|
+
param :hostgroup_ids, Array, N_('IDs of hostgroups included in inventory'),
|
24
|
+
:required => true
|
25
|
+
|
26
|
+
def hosts
|
27
|
+
show_inventory :host_ids, :id
|
28
|
+
end
|
29
|
+
|
30
|
+
def hostgroups
|
31
|
+
show_inventory :hostgroup_ids, :hostgroup_id
|
32
|
+
end
|
33
|
+
|
34
|
+
def action_permission
|
35
|
+
case params[:action]
|
36
|
+
when 'hosts', 'hostgroups'
|
37
|
+
:view
|
38
|
+
else
|
39
|
+
super
|
40
|
+
end
|
41
|
+
end
|
42
|
+
|
43
|
+
private
|
44
|
+
|
45
|
+
def show_inventory(ids_key, condition_key)
|
46
|
+
ids = params.fetch(ids_key, []).uniq
|
47
|
+
render :json => ForemanAnsible::InventoryCreator.new(Host.where(condition_key => ids)).to_hash.to_json
|
48
|
+
end
|
49
|
+
end
|
50
|
+
end
|
51
|
+
end
|
@@ -21,6 +21,7 @@ module Api
|
|
21
21
|
|
22
22
|
api :GET, '/ansible_roles', N_('List Ansible roles')
|
23
23
|
param_group :search_and_pagination, ::Api::V2::BaseController
|
24
|
+
add_scoped_search_description_for(AnsibleRole)
|
24
25
|
def index
|
25
26
|
@ansible_roles = resource_scope_for_index
|
26
27
|
end
|
@@ -32,7 +33,7 @@ module Api
|
|
32
33
|
end
|
33
34
|
|
34
35
|
api :PUT, '/ansible_roles/import', N_('Import Ansible roles')
|
35
|
-
param :proxy_id, :identifier, N_('Smart Proxy to import from')
|
36
|
+
param :proxy_id, :identifier, :required => true, :desc => N_('Smart Proxy to import from')
|
36
37
|
param :role_names, Array, N_('Ansible role names to import')
|
37
38
|
def import
|
38
39
|
@imported = @importer.import!(role_names)
|
@@ -68,7 +69,10 @@ module Api
|
|
68
69
|
|
69
70
|
# rubocop:disable DotPosition
|
70
71
|
def find_proxy
|
71
|
-
|
72
|
+
unless params[:proxy_id]
|
73
|
+
msg = _('Smart proxy id is required')
|
74
|
+
return render_error('custom_error', :status => :unprocessable_entity, :locals => { :message => msg })
|
75
|
+
end
|
72
76
|
@proxy = SmartProxy.authorized(:view_smart_proxies)
|
73
77
|
.find(params[:proxy_id])
|
74
78
|
end
|
@@ -23,6 +23,7 @@ module Api
|
|
23
23
|
|
24
24
|
api :GET, '/ansible_variables', N_('List Ansible variables')
|
25
25
|
param_group :search_and_pagination, ::Api::V2::BaseController
|
26
|
+
add_scoped_search_description_for(AnsibleVariable)
|
26
27
|
def index
|
27
28
|
@ansible_variables = resource_scope_for_index
|
28
29
|
end
|
@@ -48,6 +49,7 @@ module Api
|
|
48
49
|
param :merge_overrides, :bool, :desc => N_("Merge all matching values (only array/hash type)")
|
49
50
|
param :merge_default, :bool, :desc => N_("Include default value when merging all matching values")
|
50
51
|
param :avoid_duplicates, :bool, :desc => N_("Remove duplicate values (only array type)")
|
52
|
+
param :override, :bool, :desc => N_("Whether to override variable or not")
|
51
53
|
end
|
52
54
|
end
|
53
55
|
|
data/config/routes.rb
CHANGED
@@ -92,6 +92,15 @@ Rails.application.routes.draw do
|
|
92
92
|
end
|
93
93
|
|
94
94
|
resources :ansible_override_values, :only => [:create, :destroy]
|
95
|
+
|
96
|
+
resources :ansible_inventories, :only => [] do
|
97
|
+
collection do
|
98
|
+
post :hosts
|
99
|
+
get :hosts
|
100
|
+
post :hostgroups
|
101
|
+
get :hostgroups
|
102
|
+
end
|
103
|
+
end
|
95
104
|
end
|
96
105
|
end
|
97
106
|
end
|
@@ -58,10 +58,12 @@ Foreman::Plugin.register :foreman_ansible do
|
|
58
58
|
},
|
59
59
|
:resource_type => 'AnsibleVariable'
|
60
60
|
permission :view_hosts,
|
61
|
-
{ :'api/v2/hosts' => [:ansible_roles]
|
61
|
+
{ :'api/v2/hosts' => [:ansible_roles],
|
62
|
+
:'api/v2/ansible_inventories' => [:hosts] },
|
62
63
|
:resource_type => 'Host'
|
63
64
|
permission :view_hostgroups,
|
64
|
-
{ :'api/v2/hostgroups' => [:ansible_roles]
|
65
|
+
{ :'api/v2/hostgroups' => [:ansible_roles],
|
66
|
+
:'api/v2/ansible_inventories' => [:hostgroups] },
|
65
67
|
:resource_type => 'Hostgroup'
|
66
68
|
permission :edit_hosts,
|
67
69
|
{ :'api/v2/hosts' => [:assign_ansible_roles] },
|
@@ -74,7 +76,10 @@ Foreman::Plugin.register :foreman_ansible do
|
|
74
76
|
role 'Ansible Roles Manager',
|
75
77
|
[:play_roles_on_host, :play_roles_on_hostgroup,
|
76
78
|
:view_ansible_roles, :destroy_ansible_roles,
|
77
|
-
:import_ansible_roles
|
79
|
+
:import_ansible_roles,
|
80
|
+
:view_ansible_variables,
|
81
|
+
:create_ansible_variables, :import_ansible_variables,
|
82
|
+
:edit_ansible_variables, :destroy_ansible_variables]
|
78
83
|
|
79
84
|
role 'Ansible Tower Inventory Reader',
|
80
85
|
[:view_hosts, :view_hostgroups, :view_facts],
|
@@ -1,37 +1,53 @@
|
|
1
|
-
#
|
2
|
-
# Copyright (C)
|
1
|
+
# SOME DESCRIPTIVE TITLE.
|
2
|
+
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
3
3
|
# This file is distributed under the same license as the foreman_ansible package.
|
4
|
-
# FIRST AUTHOR <EMAIL@ADDRESS>,
|
5
|
-
#
|
4
|
+
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
5
|
+
#
|
6
|
+
# Translators:
|
7
|
+
# abf90805572190d649c59f7a021d76cb, 2018
|
8
|
+
# Ulrich Habel <rhaen@pkgbox.de>, 2018
|
9
|
+
# Arnold Bechtoldt <mail@arnoldbechtoldt.com>, 2018
|
10
|
+
# mbacovsky <martin.bacovsky@gmail.com>, 2018
|
11
|
+
# Ettore Atalan <atalanttore@googlemail.com>, 2018
|
12
|
+
# simon11 <simon.stieger.98@live.de>, 2018
|
13
|
+
# Christina Gurski <Gurski_christina@yahoo.de>, 2019
|
14
|
+
# Bernhard Suttner <bernhard.suttner@atix.de>, 2019
|
15
|
+
# Dominic Cleal <dominic@cleal.org>, 2019
|
16
|
+
# Wiederoder <stefanwiederoder@googlemail.com>, 2019
|
17
|
+
# Bryan Kearney <bryan.kearney@gmail.com>, 2019
|
18
|
+
# Martin Zimmermann <martin.zimmermann@gmx.com>, 2019
|
19
|
+
# Alexander Stoll <Alexander.Stoll@netways.de>, 2019
|
20
|
+
#
|
21
|
+
#, fuzzy
|
6
22
|
msgid ""
|
7
23
|
msgstr ""
|
8
|
-
"Project-Id-Version: foreman_ansible
|
24
|
+
"Project-Id-Version: foreman_ansible 3.0.2\n"
|
9
25
|
"Report-Msgid-Bugs-To: \n"
|
10
|
-
"
|
11
|
-
"
|
12
|
-
"
|
13
|
-
"Language: de\n"
|
26
|
+
"POT-Creation-Date: 2019-04-30 20:53+0200\n"
|
27
|
+
"PO-Revision-Date: 2018-11-14 21:36+0000\n"
|
28
|
+
"Last-Translator: Alexander Stoll <Alexander.Stoll@netways.de>, 2019\n"
|
29
|
+
"Language-Team: German (https://www.transifex.com/foreman/teams/114/de/)\n"
|
14
30
|
"MIME-Version: 1.0\n"
|
15
31
|
"Content-Type: text/plain; charset=UTF-8\n"
|
16
32
|
"Content-Transfer-Encoding: 8bit\n"
|
17
|
-
"
|
18
|
-
"
|
33
|
+
"Language: de\n"
|
34
|
+
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
19
35
|
|
20
36
|
#: ../app/controllers/ansible_roles_controller.rb:35
|
21
37
|
msgid "Import of roles successfully finished."
|
22
|
-
msgstr ""
|
38
|
+
msgstr "Importieren der Rollen erfolgreich abgeschlossen."
|
23
39
|
|
24
40
|
#: ../app/controllers/ansible_roles_controller.rb:50
|
25
41
|
msgid "No changes in roles detected."
|
26
|
-
msgstr ""
|
42
|
+
msgstr "Keine Änderungen in den Rollen erkannt."
|
27
43
|
|
28
44
|
#: ../app/controllers/ansible_roles_controller.rb:51
|
29
45
|
msgid "No changes in roles detected on %s."
|
30
|
-
msgstr ""
|
46
|
+
msgstr "Keine Änderungen an den Rollen erkannt auf %s."
|
31
47
|
|
32
48
|
#: ../app/controllers/ansible_variables_controller.rb:39
|
33
49
|
msgid "No changes in variables detected on %s."
|
34
|
-
msgstr ""
|
50
|
+
msgstr "Keine Änderungen an den Variablen erkannt auf %s."
|
35
51
|
|
36
52
|
#: ../app/controllers/ansible_variables_controller.rb:49
|
37
53
|
msgid ""
|
@@ -42,48 +58,55 @@ msgid ""
|
|
42
58
|
msgstr ""
|
43
59
|
|
44
60
|
#: ../app/controllers/ansible_variables_controller.rb:102
|
45
|
-
msgid "
|
61
|
+
msgid ""
|
62
|
+
"No proxy found to import variables from, ensure that the smart proxy has the"
|
63
|
+
" Ansible feature enabled."
|
46
64
|
msgstr ""
|
47
65
|
|
48
66
|
#: ../app/controllers/api/v2/ansible_override_values_controller.rb:17
|
49
67
|
msgid "Override match"
|
50
|
-
msgstr ""
|
68
|
+
msgstr "Übereinstimmung überschreiben"
|
51
69
|
|
52
70
|
#: ../app/controllers/api/v2/ansible_override_values_controller.rb:18
|
53
71
|
msgid "Override value, required if omit is false"
|
54
72
|
msgstr ""
|
73
|
+
"Überschreibungswert, wird benötigt falls der Parameter \"Übergehen\" den "
|
74
|
+
"Wert \"false\" hat"
|
55
75
|
|
56
76
|
#: ../app/controllers/api/v2/ansible_override_values_controller.rb:22
|
57
77
|
msgid "Create an override value for a specific ansible variable"
|
58
|
-
msgstr ""
|
78
|
+
msgstr "Überschreibungswert für eine bestimmte Ansible-Variable erzeugen"
|
59
79
|
|
60
80
|
#: ../app/controllers/api/v2/ansible_override_values_controller.rb:34
|
61
81
|
msgid "Destroy an override value"
|
62
|
-
msgstr ""
|
82
|
+
msgstr "Überschreibungswert löschen"
|
63
83
|
|
64
84
|
#: ../app/controllers/api/v2/ansible_roles_controller.rb:18
|
65
85
|
msgid "Show role"
|
66
|
-
msgstr ""
|
86
|
+
msgstr "Zeige Rolle"
|
67
87
|
|
68
88
|
#: ../app/controllers/api/v2/ansible_roles_controller.rb:22
|
69
89
|
msgid "List Ansible roles"
|
70
|
-
msgstr ""
|
90
|
+
msgstr "Ansible Rollen auflisten"
|
71
91
|
|
72
92
|
#: ../app/controllers/api/v2/ansible_roles_controller.rb:28
|
73
93
|
msgid "Deletes Ansible role"
|
74
|
-
msgstr ""
|
94
|
+
msgstr "Ansible Rolle löschen"
|
75
95
|
|
76
96
|
#: ../app/controllers/api/v2/ansible_roles_controller.rb:34
|
77
97
|
msgid "Import Ansible roles"
|
78
|
-
msgstr ""
|
98
|
+
msgstr "Ansible Rollen importieren"
|
79
99
|
|
80
|
-
#: ../app/controllers/api/v2/ansible_roles_controller.rb:35
|
100
|
+
#: ../app/controllers/api/v2/ansible_roles_controller.rb:35
|
101
|
+
#: ../app/controllers/api/v2/ansible_roles_controller.rb:42
|
102
|
+
#: ../app/controllers/api/v2/ansible_variables_controller.rb:73
|
103
|
+
#: ../app/controllers/api/v2/ansible_variables_controller.rb:83
|
81
104
|
msgid "Smart Proxy to import from"
|
82
|
-
msgstr ""
|
105
|
+
msgstr "Smart-Proxy von dem importiert wird"
|
83
106
|
|
84
107
|
#: ../app/controllers/api/v2/ansible_roles_controller.rb:36
|
85
108
|
msgid "Ansible role names to import"
|
86
|
-
msgstr ""
|
109
|
+
msgstr "importiere Ansible-Rolle"
|
87
110
|
|
88
111
|
#: ../app/controllers/api/v2/ansible_roles_controller.rb:41
|
89
112
|
msgid "Obsolete Ansible roles"
|
@@ -91,7 +114,7 @@ msgstr ""
|
|
91
114
|
|
92
115
|
#: ../app/controllers/api/v2/ansible_roles_controller.rb:48
|
93
116
|
msgid "Fetch Ansible roles available to be imported"
|
94
|
-
msgstr ""
|
117
|
+
msgstr "Ansible Rollen anziehen, die verfügbar zum importieren sind"
|
95
118
|
|
96
119
|
#: ../app/controllers/api/v2/ansible_roles_controller.rb:49
|
97
120
|
msgid "Smart Proxy to fetch from"
|
@@ -99,78 +122,84 @@ msgstr ""
|
|
99
122
|
|
100
123
|
#: ../app/controllers/api/v2/ansible_variables_controller.rb:20
|
101
124
|
msgid "Show variable"
|
102
|
-
msgstr ""
|
125
|
+
msgstr "Variable anzeigen"
|
103
126
|
|
104
127
|
#: ../app/controllers/api/v2/ansible_variables_controller.rb:24
|
105
128
|
msgid "List Ansible variables"
|
106
|
-
msgstr ""
|
129
|
+
msgstr "Ansible Variablen auflisten"
|
107
130
|
|
108
131
|
#: ../app/controllers/api/v2/ansible_variables_controller.rb:30
|
109
132
|
msgid "Deletes Ansible variable"
|
110
|
-
msgstr ""
|
133
|
+
msgstr "Ansible Variable löschen"
|
111
134
|
|
112
135
|
#: ../app/controllers/api/v2/ansible_variables_controller.rb:39
|
113
136
|
msgid "Name of variable"
|
114
|
-
msgstr ""
|
137
|
+
msgstr "Name der Variable"
|
115
138
|
|
116
139
|
#: ../app/controllers/api/v2/ansible_variables_controller.rb:40
|
117
140
|
msgid "Role ID"
|
118
|
-
msgstr ""
|
141
|
+
msgstr "Rollen-Kennung"
|
119
142
|
|
120
143
|
#: ../app/controllers/api/v2/ansible_variables_controller.rb:41
|
121
144
|
msgid "Default value of variable"
|
122
|
-
msgstr ""
|
145
|
+
msgstr "Standardwert der Variable"
|
123
146
|
|
124
147
|
#: ../app/controllers/api/v2/ansible_variables_controller.rb:42
|
125
148
|
msgid "When enabled the parameter is hidden in the UI"
|
126
|
-
msgstr ""
|
149
|
+
msgstr "Wenn aktiviert, so ist der Parameter im UI verborgen "
|
127
150
|
|
128
151
|
#: ../app/controllers/api/v2/ansible_variables_controller.rb:43
|
129
152
|
msgid "The order in which values are resolved"
|
130
|
-
msgstr ""
|
153
|
+
msgstr "Reihenfolge, in der Werte aufgelöst werden"
|
131
154
|
|
132
155
|
#: ../app/controllers/api/v2/ansible_variables_controller.rb:44
|
133
156
|
msgid "Description of variable"
|
134
|
-
msgstr ""
|
157
|
+
msgstr "Beschreibung der Variable"
|
135
158
|
|
136
159
|
#: ../app/controllers/api/v2/ansible_variables_controller.rb:45
|
137
160
|
msgid "Types of validation values"
|
138
|
-
msgstr ""
|
161
|
+
msgstr "Typen von Validierungswerten"
|
139
162
|
|
140
163
|
#: ../app/controllers/api/v2/ansible_variables_controller.rb:46
|
141
164
|
msgid "Used to enforce certain values for the parameter values"
|
142
|
-
msgstr ""
|
165
|
+
msgstr "Verwendet, um bestimmte Werte für die Parameterwerte umzusetzen"
|
143
166
|
|
144
167
|
#: ../app/controllers/api/v2/ansible_variables_controller.rb:47
|
145
168
|
msgid "Types of variable values"
|
146
|
-
msgstr ""
|
169
|
+
msgstr "Typen von Variablenwerten"
|
147
170
|
|
148
171
|
#: ../app/controllers/api/v2/ansible_variables_controller.rb:48
|
149
172
|
msgid "Merge all matching values (only array/hash type)"
|
150
|
-
msgstr ""
|
173
|
+
msgstr "Alle übereinstimmenden Werte (nur vom Typ Array/Hash) zusammenführen"
|
151
174
|
|
152
175
|
#: ../app/controllers/api/v2/ansible_variables_controller.rb:49
|
153
176
|
msgid "Include default value when merging all matching values"
|
154
177
|
msgstr ""
|
178
|
+
"Standardwert einschließen, wenn alle übereinstimmenden Werte zusammengeführt"
|
179
|
+
" werden"
|
155
180
|
|
156
181
|
#: ../app/controllers/api/v2/ansible_variables_controller.rb:50
|
157
182
|
msgid "Remove duplicate values (only array type)"
|
158
|
-
msgstr ""
|
183
|
+
msgstr "Duplikate (nur vom Typ Array) entfernen"
|
159
184
|
|
160
185
|
#: ../app/controllers/api/v2/ansible_variables_controller.rb:54
|
161
186
|
msgid "Create Ansible variable"
|
162
|
-
msgstr ""
|
187
|
+
msgstr "Ansible Variable erstellen"
|
163
188
|
|
164
189
|
#: ../app/controllers/api/v2/ansible_variables_controller.rb:61
|
165
190
|
msgid "Updates Ansible variable"
|
166
|
-
msgstr ""
|
191
|
+
msgstr "Ansible Variable aktualisieren"
|
167
192
|
|
168
193
|
#: ../app/controllers/api/v2/ansible_variables_controller.rb:71
|
169
|
-
msgid "
|
194
|
+
msgid ""
|
195
|
+
"Import Ansible variables. This will only import variables for already "
|
196
|
+
"existing roles, it will not import any new roles"
|
170
197
|
msgstr ""
|
171
198
|
|
172
199
|
#: ../app/controllers/api/v2/ansible_variables_controller.rb:81
|
173
|
-
msgid "
|
200
|
+
msgid ""
|
201
|
+
"Obsolete Ansible variables. This will only obsolete variables for already "
|
202
|
+
"existing roles, it will not delete any old roles"
|
174
203
|
msgstr ""
|
175
204
|
|
176
205
|
#: ../app/controllers/foreman_ansible/api/v2/hostgroups_controller_extensions.rb:20
|
@@ -187,17 +216,18 @@ msgstr ""
|
|
187
216
|
|
188
217
|
#: ../app/controllers/foreman_ansible/api/v2/hostgroups_controller_extensions.rb:42
|
189
218
|
msgid "List all Ansible roles for a hostgroup"
|
190
|
-
msgstr ""
|
219
|
+
msgstr "Auflisten aller Ansible Rollen einer Hostgruppe"
|
191
220
|
|
192
221
|
#: ../app/controllers/foreman_ansible/api/v2/hostgroups_controller_extensions.rb:53
|
193
222
|
msgid "Assigns Ansible roles to a hostgroup"
|
194
|
-
msgstr ""
|
223
|
+
msgstr "Weißt Ansible Rollen einer Hostgruppe zu"
|
195
224
|
|
196
225
|
#: ../app/controllers/foreman_ansible/api/v2/hostgroups_controller_extensions.rb:56
|
197
226
|
msgid "Ansible roles to assign to a hostgroup"
|
198
227
|
msgstr ""
|
199
228
|
|
200
|
-
#: ../app/controllers/foreman_ansible/api/v2/hostgroups_param_group_extensions.rb:13
|
229
|
+
#: ../app/controllers/foreman_ansible/api/v2/hostgroups_param_group_extensions.rb:13
|
230
|
+
#: ../app/controllers/foreman_ansible/api/v2/hosts_param_group_extensions.rb:13
|
201
231
|
msgid "IDs of associated ansible roles"
|
202
232
|
msgstr ""
|
203
233
|
|
@@ -215,7 +245,7 @@ msgstr ""
|
|
215
245
|
|
216
246
|
#: ../app/controllers/foreman_ansible/api/v2/hosts_controller_extensions.rb:46
|
217
247
|
msgid "List all Ansible roles for a host"
|
218
|
-
msgstr ""
|
248
|
+
msgstr "Auflisten aller Ansible Rollen eines Hosts"
|
219
249
|
|
220
250
|
#: ../app/controllers/foreman_ansible/api/v2/hosts_controller_extensions.rb:56
|
221
251
|
msgid "Assigns Ansible roles to a host"
|
@@ -239,35 +269,37 @@ msgstr ""
|
|
239
269
|
|
240
270
|
#: ../app/helpers/foreman_ansible/ansible_roles_helper.rb:8
|
241
271
|
msgid "Import from %s"
|
242
|
-
msgstr ""
|
272
|
+
msgstr "Importieren aus %s"
|
243
273
|
|
244
274
|
#: ../app/helpers/foreman_ansible/ansible_roles_helper.rb:23
|
245
275
|
msgid "Ansible Role"
|
246
|
-
msgstr ""
|
276
|
+
msgstr "Ansible Rolle"
|
247
277
|
|
248
278
|
#: ../app/helpers/foreman_ansible/ansible_roles_helper.rb:29
|
249
279
|
msgid "Import"
|
250
|
-
msgstr ""
|
280
|
+
msgstr "Import"
|
251
281
|
|
252
282
|
#: ../app/helpers/foreman_ansible/ansible_roles_helper.rb:35
|
253
283
|
msgid "%s ago"
|
254
|
-
msgstr ""
|
284
|
+
msgstr "vor %s"
|
255
285
|
|
256
|
-
#: ../app/helpers/foreman_ansible/hosts_helper_extensions.rb:13
|
286
|
+
#: ../app/helpers/foreman_ansible/hosts_helper_extensions.rb:13
|
287
|
+
#: ../app/lib/actions/foreman_ansible/helpers/host_common.rb:18
|
257
288
|
msgid "Play Ansible roles"
|
258
289
|
msgstr ""
|
259
290
|
|
260
291
|
#: ../app/lib/actions/foreman_ansible/helpers/host_common.rb:10
|
261
292
|
msgid "Playbook execution failed"
|
262
|
-
msgstr ""
|
293
|
+
msgstr "Ausführung des Playbooks fehlgeschlagen"
|
263
294
|
|
264
|
-
#: ../app/lib/actions/foreman_ansible/helpers/host_common.rb:30
|
295
|
+
#: ../app/lib/actions/foreman_ansible/helpers/host_common.rb:30
|
296
|
+
#: ../lib/foreman_ansible_core/remote_execution_core/ansible_runner.rb:36
|
265
297
|
msgid "Error loading data from proxy"
|
266
|
-
msgstr ""
|
298
|
+
msgstr "Fehler die Daten vom Proxy zu laden."
|
267
299
|
|
268
300
|
#: ../app/lib/actions/foreman_ansible/helpers/play_roles_description.rb:13
|
269
301
|
msgid "Foreman"
|
270
|
-
msgstr ""
|
302
|
+
msgstr "Foreman"
|
271
303
|
|
272
304
|
#: ../app/lib/proxy_api/ansible.rb:27
|
273
305
|
msgid "Unable to get roles from Ansible"
|
@@ -278,31 +310,41 @@ msgid "Unable to get roles/variables from Ansible"
|
|
278
310
|
msgstr ""
|
279
311
|
|
280
312
|
#: ../app/models/setting/ansible.rb:20
|
281
|
-
msgid "
|
313
|
+
msgid ""
|
314
|
+
"Use this to supply a path to an SSH Private Key that Ansible will use in "
|
315
|
+
"lieu of a password Override with \"ansible_ssh_private_key_file\" host "
|
316
|
+
"parameter"
|
282
317
|
msgstr ""
|
283
318
|
|
284
319
|
#: ../app/models/setting/ansible.rb:25
|
285
320
|
msgid "Private Key Path"
|
286
|
-
msgstr ""
|
321
|
+
msgstr "Privat-Key Pfad"
|
287
322
|
|
288
323
|
#: ../app/models/setting/ansible.rb:29
|
289
|
-
msgid "
|
324
|
+
msgid ""
|
325
|
+
"Use this connection type by default when running Ansible playbooks. You can "
|
326
|
+
"override this on hosts by adding a parameter \"ansible_connection\""
|
290
327
|
msgstr ""
|
291
328
|
|
292
329
|
#: ../app/models/setting/ansible.rb:33
|
293
330
|
msgid "Connection type"
|
294
|
-
msgstr ""
|
331
|
+
msgstr "Verbindungstyp"
|
295
332
|
|
296
333
|
#: ../app/models/setting/ansible.rb:37
|
297
|
-
msgid "
|
334
|
+
msgid ""
|
335
|
+
"Enable/disable WinRM server certificate validation when running Ansible "
|
336
|
+
"playbooks. You can override this on hosts by adding a parameter "
|
337
|
+
"\"ansible_winrm_server_cert_validation\""
|
298
338
|
msgstr ""
|
299
339
|
|
300
340
|
#: ../app/models/setting/ansible.rb:42
|
301
341
|
msgid "WinRM cert Validation"
|
302
|
-
msgstr ""
|
342
|
+
msgstr "WinRM Zertifikatsbestätigung"
|
303
343
|
|
304
344
|
#: ../app/models/setting/ansible.rb:46
|
305
|
-
msgid "
|
345
|
+
msgid ""
|
346
|
+
"Foreman will add the this level of verbosity for additional debugging output"
|
347
|
+
" when running Ansible playbooks."
|
306
348
|
msgstr ""
|
307
349
|
|
308
350
|
#: ../app/models/setting/ansible.rb:49
|
@@ -311,26 +353,29 @@ msgstr ""
|
|
311
353
|
|
312
354
|
#: ../app/models/setting/ansible.rb:52
|
313
355
|
msgid "Disabled"
|
314
|
-
msgstr ""
|
356
|
+
msgstr "Deaktiviert"
|
315
357
|
|
316
358
|
#: ../app/models/setting/ansible.rb:53
|
317
359
|
msgid "Level 1 (-v)"
|
318
|
-
msgstr ""
|
360
|
+
msgstr "Level 1 (-v)"
|
319
361
|
|
320
362
|
#: ../app/models/setting/ansible.rb:54
|
321
363
|
msgid "Level 2 (-vv)"
|
322
|
-
msgstr ""
|
364
|
+
msgstr "Level 2 (-vv)"
|
323
365
|
|
324
366
|
#: ../app/models/setting/ansible.rb:55
|
325
367
|
msgid "Level 3 (-vvv)"
|
326
|
-
msgstr ""
|
368
|
+
msgstr "Level 3 (-vvv)"
|
327
369
|
|
328
370
|
#: ../app/models/setting/ansible.rb:56
|
329
371
|
msgid "Level 4 (-vvvv)"
|
330
|
-
msgstr ""
|
372
|
+
msgstr "Level 4 (-vvvv)"
|
331
373
|
|
332
374
|
#: ../app/models/setting/ansible.rb:62
|
333
|
-
msgid "
|
375
|
+
msgid ""
|
376
|
+
"Timeout (in seconds) to set when Foreman will trigger a play Ansible roles "
|
377
|
+
"task after a host is fully provisioned. Set this to the maximum time you "
|
378
|
+
"expect a host to take until it is ready after a reboot."
|
334
379
|
msgstr ""
|
335
380
|
|
336
381
|
#: ../app/models/setting/ansible.rb:67
|
@@ -346,7 +391,9 @@ msgid "Ansible report timeout"
|
|
346
391
|
msgstr ""
|
347
392
|
|
348
393
|
#: ../app/models/setting/ansible.rb:77
|
349
|
-
msgid "
|
394
|
+
msgid ""
|
395
|
+
"Disable host configuration status turning to out of sync for %{cfgmgmt} "
|
396
|
+
"after report does not arrive within configured interval"
|
350
397
|
msgstr ""
|
351
398
|
|
352
399
|
#: ../app/models/setting/ansible.rb:81
|
@@ -363,119 +410,144 @@ msgstr ""
|
|
363
410
|
|
364
411
|
#: ../app/models/setting/ansible.rb:104 ../lib/foreman_ansible/register.rb:92
|
365
412
|
msgid "Ansible"
|
366
|
-
msgstr ""
|
413
|
+
msgstr "Ansible"
|
367
414
|
|
368
415
|
#: ../app/services/foreman_ansible/insights_notification_builder.rb:51
|
369
416
|
msgid "Remediation Plan"
|
370
417
|
msgstr ""
|
371
418
|
|
372
|
-
#: ../app/services/foreman_ansible/insights_notification_builder.rb:61
|
419
|
+
#: ../app/services/foreman_ansible/insights_notification_builder.rb:61
|
420
|
+
#: ../db/seeds.d/90_notification_blueprints.rb:13
|
373
421
|
msgid "Job Details"
|
374
|
-
msgstr ""
|
422
|
+
msgstr "Job Details"
|
375
423
|
|
376
424
|
#: ../app/services/foreman_ansible/proxy_api.rb:13
|
377
425
|
msgid "Proxy not found"
|
378
|
-
msgstr ""
|
426
|
+
msgstr "Kein Proxy gefunden"
|
379
427
|
|
380
428
|
#: ../app/views/ansible_roles/import.html.erb:1
|
381
429
|
msgid "Changed Ansible roles"
|
382
430
|
msgstr ""
|
383
431
|
|
384
|
-
#: ../app/views/ansible_roles/import.html.erb:3
|
432
|
+
#: ../app/views/ansible_roles/import.html.erb:3
|
433
|
+
#: ../app/views/ansible_variables/import.html.erb:3
|
385
434
|
msgid "Select the changes you want to realize in Foreman"
|
386
|
-
msgstr ""
|
435
|
+
msgstr "Wählen Sie die Änderungen, die Sie in Foreman anwenden möchten"
|
387
436
|
|
388
|
-
#: ../app/views/ansible_roles/import.html.erb:5
|
437
|
+
#: ../app/views/ansible_roles/import.html.erb:5
|
438
|
+
#: ../app/views/ansible_variables/import.html.erb:5
|
389
439
|
msgid "Toggle"
|
390
|
-
msgstr ""
|
440
|
+
msgstr "Umschalten"
|
391
441
|
|
392
|
-
#: ../app/views/ansible_roles/import.html.erb:6
|
442
|
+
#: ../app/views/ansible_roles/import.html.erb:6
|
443
|
+
#: ../app/views/ansible_variables/import.html.erb:6
|
393
444
|
msgid "New"
|
394
|
-
msgstr ""
|
445
|
+
msgstr "Neu"
|
395
446
|
|
396
|
-
#: ../app/views/ansible_roles/import.html.erb:8
|
447
|
+
#: ../app/views/ansible_roles/import.html.erb:8
|
448
|
+
#: ../app/views/ansible_variables/import.html.erb:8
|
397
449
|
msgid "Check/Uncheck new"
|
398
|
-
msgstr ""
|
450
|
+
msgstr "Neue auswählen/abwählen"
|
399
451
|
|
400
|
-
#: ../app/views/ansible_roles/import.html.erb:9
|
452
|
+
#: ../app/views/ansible_roles/import.html.erb:9
|
453
|
+
#: ../app/views/ansible_variables/import.html.erb:9
|
401
454
|
msgid "Obsolete"
|
402
|
-
msgstr ""
|
455
|
+
msgstr "Veraltet"
|
403
456
|
|
404
|
-
#: ../app/views/ansible_roles/import.html.erb:11
|
457
|
+
#: ../app/views/ansible_roles/import.html.erb:11
|
458
|
+
#: ../app/views/ansible_variables/import.html.erb:11
|
405
459
|
msgid "Check/Uncheck obsolete"
|
406
|
-
msgstr ""
|
460
|
+
msgstr "Veraltete auswählen/abwählen"
|
407
461
|
|
408
|
-
#: ../app/views/ansible_roles/import.html.erb:19
|
462
|
+
#: ../app/views/ansible_roles/import.html.erb:19
|
463
|
+
#: ../app/views/ansible_variables/import.html.erb:22
|
409
464
|
msgid "Check/Uncheck all"
|
410
|
-
msgstr ""
|
465
|
+
msgstr "Alle auswählen/abwählen"
|
411
466
|
|
412
|
-
#: ../app/views/ansible_roles/import.html.erb:21
|
467
|
+
#: ../app/views/ansible_roles/import.html.erb:21
|
468
|
+
#: ../app/views/ansible_variables/import.html.erb:24
|
413
469
|
msgid "Name"
|
414
|
-
msgstr ""
|
470
|
+
msgstr "Name"
|
415
471
|
|
416
|
-
#: ../app/views/ansible_roles/import.html.erb:22
|
472
|
+
#: ../app/views/ansible_roles/import.html.erb:22
|
473
|
+
#: ../app/views/ansible_variables/import.html.erb:26
|
417
474
|
msgid "Hosts count"
|
418
|
-
msgstr ""
|
475
|
+
msgstr "Hostanzahl"
|
419
476
|
|
420
|
-
#: ../app/views/ansible_roles/import.html.erb:23
|
477
|
+
#: ../app/views/ansible_roles/import.html.erb:23
|
478
|
+
#: ../app/views/ansible_variables/import.html.erb:27
|
421
479
|
msgid "Hostgroups count"
|
422
|
-
msgstr ""
|
480
|
+
msgstr "Hostgruppen-Anzahl"
|
423
481
|
|
424
|
-
#: ../app/views/ansible_roles/import.html.erb:24
|
482
|
+
#: ../app/views/ansible_roles/import.html.erb:24
|
483
|
+
#: ../app/views/ansible_variables/import.html.erb:28
|
425
484
|
msgid "Operation"
|
426
|
-
msgstr ""
|
485
|
+
msgstr "Vorgang"
|
427
486
|
|
428
|
-
#: ../app/views/ansible_roles/import.html.erb:35
|
487
|
+
#: ../app/views/ansible_roles/import.html.erb:35
|
488
|
+
#: ../app/views/ansible_variables/import.html.erb:39
|
429
489
|
msgid "Check/Uncheck all %s changes"
|
430
|
-
msgstr ""
|
490
|
+
msgstr "Alle %s Änderungen auswählen/abwählen"
|
431
491
|
|
432
|
-
#: ../app/views/ansible_roles/import.html.erb:40
|
492
|
+
#: ../app/views/ansible_roles/import.html.erb:40
|
493
|
+
#: ../app/views/ansible_variables/import.html.erb:45
|
433
494
|
msgid "Add"
|
434
|
-
msgstr ""
|
495
|
+
msgstr "Hinzufügen"
|
435
496
|
|
436
|
-
#: ../app/views/ansible_roles/import.html.erb:40
|
497
|
+
#: ../app/views/ansible_roles/import.html.erb:40
|
498
|
+
#: ../app/views/ansible_variables/import.html.erb:45
|
437
499
|
msgid "Remove"
|
438
|
-
msgstr ""
|
500
|
+
msgstr "Entfernen"
|
439
501
|
|
440
|
-
#: ../app/views/ansible_roles/import.html.erb:48
|
502
|
+
#: ../app/views/ansible_roles/import.html.erb:48
|
503
|
+
#: ../app/views/ansible_variables/import.html.erb:53
|
441
504
|
msgid "Cancel"
|
442
|
-
msgstr ""
|
505
|
+
msgstr "Abbrechen"
|
443
506
|
|
444
|
-
#: ../app/views/ansible_roles/import.html.erb:49
|
507
|
+
#: ../app/views/ansible_roles/import.html.erb:49
|
508
|
+
#: ../app/views/ansible_variables/import.html.erb:12
|
509
|
+
#: ../app/views/ansible_variables/import.html.erb:45
|
510
|
+
#: ../app/views/ansible_variables/import.html.erb:54
|
445
511
|
msgid "Update"
|
446
|
-
msgstr ""
|
512
|
+
msgstr "Aktualisieren"
|
447
513
|
|
448
|
-
#: ../app/views/ansible_roles/index.html.erb:1
|
514
|
+
#: ../app/views/ansible_roles/index.html.erb:1
|
515
|
+
#: ../app/views/ansible_roles/welcome.html.erb:1
|
516
|
+
#: ../app/views/ansible_roles/welcome.html.erb:6
|
517
|
+
#: ../app/views/foreman_ansible/ansible_roles/_select_tab_title.html.erb:1
|
449
518
|
msgid "Ansible Roles"
|
450
|
-
msgstr ""
|
519
|
+
msgstr "Ansible Rollen"
|
451
520
|
|
452
521
|
#: ../app/views/ansible_roles/index.html.erb:9
|
453
522
|
msgid "Role|Name"
|
454
|
-
msgstr ""
|
523
|
+
msgstr "Name"
|
455
524
|
|
456
525
|
#: ../app/views/ansible_roles/index.html.erb:10
|
457
526
|
msgid "Hostgroups"
|
458
|
-
msgstr ""
|
527
|
+
msgstr "Hostgruppen"
|
459
528
|
|
460
529
|
#: ../app/views/ansible_roles/index.html.erb:11
|
461
530
|
msgid "Hosts"
|
462
|
-
msgstr ""
|
531
|
+
msgstr "Hosts"
|
463
532
|
|
464
533
|
#: ../app/views/ansible_roles/index.html.erb:12
|
465
534
|
msgid "Imported at"
|
466
535
|
msgstr ""
|
467
536
|
|
468
|
-
#: ../app/views/ansible_roles/index.html.erb:13
|
537
|
+
#: ../app/views/ansible_roles/index.html.erb:13
|
538
|
+
#: ../app/views/ansible_variables/index.html.erb:16
|
469
539
|
msgid "Actions"
|
470
|
-
msgstr ""
|
540
|
+
msgstr "Aktionen"
|
471
541
|
|
472
|
-
#: ../app/views/ansible_roles/index.html.erb:27
|
542
|
+
#: ../app/views/ansible_roles/index.html.erb:27
|
543
|
+
#: ../lib/foreman_ansible/register.rb:98
|
473
544
|
msgid "Variables"
|
474
|
-
msgstr ""
|
545
|
+
msgstr "Variablen"
|
475
546
|
|
476
|
-
#: ../app/views/ansible_roles/index.html.erb:33
|
547
|
+
#: ../app/views/ansible_roles/index.html.erb:33
|
548
|
+
#: ../app/views/ansible_variables/index.html.erb:41
|
477
549
|
msgid "Delete %s?"
|
478
|
-
msgstr ""
|
550
|
+
msgstr "%s löschen?"
|
479
551
|
|
480
552
|
#: ../app/views/ansible_roles/welcome.html.erb:7
|
481
553
|
msgid ""
|
@@ -485,99 +557,124 @@ msgstr ""
|
|
485
557
|
|
486
558
|
#: ../app/views/ansible_roles/welcome.html.erb:10
|
487
559
|
msgid "Learn more about this in the documentation."
|
488
|
-
msgstr ""
|
560
|
+
msgstr "Mehr dazu in der Dokumentation."
|
489
561
|
|
490
562
|
#: ../app/views/ansible_variables/_fields.erb:4
|
491
563
|
msgid "Ansible Variable Details (Imported)"
|
492
|
-
msgstr ""
|
564
|
+
msgstr "Ansible Variablen Details (Importiert)"
|
493
565
|
|
494
566
|
#: ../app/views/ansible_variables/_fields.erb:4
|
495
567
|
msgid "Ansible Variable Details"
|
496
|
-
msgstr ""
|
568
|
+
msgstr "Ansible Variablen Details"
|
497
569
|
|
498
570
|
#: ../app/views/ansible_variables/_fields.erb:11
|
499
571
|
msgid "Default Behavior"
|
500
|
-
msgstr ""
|
572
|
+
msgstr "Standardmäßiges Verhalten"
|
501
573
|
|
502
574
|
#: ../app/views/ansible_variables/_fields.erb:12
|
503
575
|
msgid "Override the default value of the Ansible variable."
|
504
|
-
msgstr ""
|
576
|
+
msgstr "Überschreibe den Standardwert der Ansible Variable."
|
505
577
|
|
506
578
|
#: ../app/views/ansible_variables/_fields.erb:14
|
507
|
-
msgid "
|
579
|
+
msgid ""
|
580
|
+
"Mark the variable to be managed by Foreman. When the Ansible role of this "
|
581
|
+
"variable is assigned to a host, the default value will be added to Ansible "
|
582
|
+
"inventory as a host variable. Specify matchers to set a different value for "
|
583
|
+
"such variable."
|
508
584
|
msgstr ""
|
509
585
|
|
510
586
|
#: ../app/views/ansible_variables/_fields.erb:27
|
511
587
|
msgid "Value to use when there is no match."
|
512
|
-
msgstr ""
|
588
|
+
msgstr "Zu verwendender Wert, falls es keine Übereinstimmung gibt"
|
513
589
|
|
514
590
|
#: ../app/views/ansible_variables/_fields.erb:30
|
515
591
|
msgid "Hidden Value"
|
516
|
-
msgstr ""
|
592
|
+
msgstr "Verborgener Wert"
|
517
593
|
|
518
594
|
#: ../app/views/ansible_variables/_fields.erb:33
|
519
595
|
msgid "Hide all values for this parameter."
|
520
|
-
msgstr ""
|
596
|
+
msgstr "Alle Werte für diesen Parameter verbergen."
|
521
597
|
|
522
598
|
#: ../app/views/ansible_variables/_fields.erb:39
|
523
599
|
msgid "Optional Input Validator"
|
524
|
-
msgstr ""
|
600
|
+
msgstr "Optionaler Eingabe-Validator"
|
525
601
|
|
526
602
|
#: ../app/views/ansible_variables/_fields.erb:41
|
527
|
-
msgid "
|
603
|
+
msgid ""
|
604
|
+
"Before including these variables on your playbooks, Foreman will validate "
|
605
|
+
"that your variables comply with the validation."
|
528
606
|
msgstr ""
|
529
607
|
|
530
608
|
#: ../app/views/ansible_variables/_fields.erb:44
|
531
|
-
msgid "
|
609
|
+
msgid ""
|
610
|
+
"If checked, will raise an error if there is no default value and no matcher "
|
611
|
+
"provide a value."
|
532
612
|
msgstr ""
|
613
|
+
"Falls aktiviert, wird dies einen Fehler erzeugen, wenn kein Standardwert "
|
614
|
+
"vorhanden ist und kein Treffer einen Wert vorschlägt."
|
533
615
|
|
534
616
|
#: ../app/views/ansible_variables/_fields.erb:53
|
535
617
|
msgid "Prioritize Attribute Order"
|
536
|
-
msgstr ""
|
618
|
+
msgstr "Priorisiere Eigenschaft-Reihenfolge"
|
537
619
|
|
538
620
|
#: ../app/views/ansible_variables/_fields.erb:54
|
539
621
|
msgid "Set the order in which values are resolved."
|
540
|
-
msgstr ""
|
622
|
+
msgstr "Reihenfolge festlegen, in der die Werte aufgelöst werden."
|
541
623
|
|
542
624
|
#: ../app/views/ansible_variables/_fields.erb:55
|
543
625
|
msgid "Order"
|
544
|
-
msgstr ""
|
626
|
+
msgstr "Reihenfolge"
|
545
627
|
|
546
628
|
#: ../app/views/ansible_variables/_fields.erb:56
|
547
|
-
msgid "
|
629
|
+
msgid ""
|
630
|
+
"The order in which matchers keys are processed, first match wins.<br> You "
|
631
|
+
"may use multiple attributes as a matcher key, for example, an order of "
|
632
|
+
"<code>host group, environment</code> would expect a matcher such as "
|
633
|
+
"<code>hostgroup = \"web servers\", environment = production</code>"
|
548
634
|
msgstr ""
|
635
|
+
"Die Reihenfolge, in der Prüfwertschlüssel verarbeitet werden. Die erste "
|
636
|
+
"Übereinstimmung ist maßgeblich.<br> Sie können mehrere Attribute als "
|
637
|
+
"Prüfwertschlüssel verwenden. Beispielsweise würde die Reihenfolge <code>host"
|
638
|
+
" group, environment</code> einen Prüfwert wie etwa <code>hostgroup = \"web "
|
639
|
+
"servers\", environment = production</code> erwarten."
|
549
640
|
|
550
641
|
#: ../app/views/ansible_variables/_fields.erb:59
|
551
|
-
msgid "
|
642
|
+
msgid ""
|
643
|
+
"Continue to look for matches after first find (only array/hash type)? Note: "
|
644
|
+
"merging overrides ignores all matchers that are omitted."
|
552
645
|
msgstr ""
|
553
646
|
|
554
647
|
#: ../app/views/ansible_variables/_fields.erb:61
|
555
648
|
msgid "Include default value when merging all matching values."
|
556
649
|
msgstr ""
|
650
|
+
"Standardwert bei der Zusammenführung aller übereinstimmenden Werte "
|
651
|
+
"einschließen."
|
557
652
|
|
558
653
|
#: ../app/views/ansible_variables/_fields.erb:64
|
559
654
|
msgid "Avoid duplicate values when merging them (only array type)?"
|
560
|
-
msgstr ""
|
655
|
+
msgstr "Doppelte Werte bei der Zusammenführung vermeiden (nur Array Typ)?"
|
561
656
|
|
562
657
|
#: ../app/views/ansible_variables/_fields.erb:68
|
563
658
|
msgid "Specify Matchers"
|
564
|
-
msgstr ""
|
659
|
+
msgstr "Prüfwert spezifizieren"
|
565
660
|
|
566
|
-
#: ../app/views/ansible_variables/edit.html.erb:4
|
661
|
+
#: ../app/views/ansible_variables/edit.html.erb:4
|
662
|
+
#: ../app/views/ansible_variables/index.html.erb:1
|
663
|
+
#: ../app/views/ansible_variables/new.html.erb:4
|
567
664
|
msgid "Ansible Variables"
|
568
|
-
msgstr ""
|
665
|
+
msgstr "Ansible Variablen"
|
569
666
|
|
570
667
|
#: ../app/views/ansible_variables/edit.html.erb:8
|
571
668
|
msgid "Edit %s"
|
572
|
-
msgstr ""
|
669
|
+
msgstr "%s bearbeiten"
|
573
670
|
|
574
671
|
#: ../app/views/ansible_variables/edit.html.erb:13
|
575
672
|
msgid "Edit Ansible Variable"
|
576
|
-
msgstr ""
|
673
|
+
msgstr "Ansible Variable ändern"
|
577
674
|
|
578
675
|
#: ../app/views/ansible_variables/import.html.erb:1
|
579
676
|
msgid "Changed Ansible variables"
|
580
|
-
msgstr ""
|
677
|
+
msgstr "Geänderte Ansible Variablen"
|
581
678
|
|
582
679
|
#: ../app/views/ansible_variables/import.html.erb:14
|
583
680
|
msgid "Check/Uncheck update"
|
@@ -585,11 +682,11 @@ msgstr ""
|
|
585
682
|
|
586
683
|
#: ../app/views/ansible_variables/import.html.erb:25
|
587
684
|
msgid "Ansible role"
|
588
|
-
msgstr ""
|
685
|
+
msgstr "Ansible Rolle"
|
589
686
|
|
590
687
|
#: ../app/views/ansible_variables/index.html.erb:5
|
591
688
|
msgid "New Ansible Variable"
|
592
|
-
msgstr ""
|
689
|
+
msgstr "Neue Ansible Variable"
|
593
690
|
|
594
691
|
#: ../app/views/ansible_variables/index.html.erb:12
|
595
692
|
msgid "Variable|Name"
|
@@ -601,19 +698,20 @@ msgstr ""
|
|
601
698
|
|
602
699
|
#: ../app/views/ansible_variables/index.html.erb:14
|
603
700
|
msgid "Type"
|
604
|
-
msgstr ""
|
701
|
+
msgstr "Typ"
|
605
702
|
|
606
703
|
#: ../app/views/ansible_variables/index.html.erb:15
|
607
704
|
msgid "Imported?"
|
608
|
-
msgstr ""
|
705
|
+
msgstr "Importiert?"
|
609
706
|
|
610
707
|
#: ../app/views/ansible_variables/index.html.erb:23
|
611
708
|
msgid "Overriden"
|
612
709
|
msgstr ""
|
613
710
|
|
614
|
-
#: ../app/views/ansible_variables/new.html.erb:8
|
711
|
+
#: ../app/views/ansible_variables/new.html.erb:8
|
712
|
+
#: ../app/views/ansible_variables/new.html.erb:13
|
615
713
|
msgid "Create Ansible Variable"
|
616
|
-
msgstr ""
|
714
|
+
msgstr "Ansible Variable erstellen"
|
617
715
|
|
618
716
|
#: ../app/views/foreman_ansible/ansible_roles/_hostgroup_ansible_roles_button.erb:5
|
619
717
|
msgid "Play Roles"
|
@@ -621,50 +719,52 @@ msgstr ""
|
|
621
719
|
|
622
720
|
#: ../app/views/foreman_ansible/ansible_roles/_hostgroup_ansible_roles_button.erb:9
|
623
721
|
msgid "Nest"
|
624
|
-
msgstr ""
|
722
|
+
msgstr "Verschachteln"
|
625
723
|
|
626
724
|
#: ../app/views/foreman_ansible/ansible_roles/_hostgroup_ansible_roles_button.erb:10
|
627
725
|
msgid "Clone"
|
628
|
-
msgstr ""
|
726
|
+
msgstr "Klonen"
|
629
727
|
|
630
728
|
#: ../app/views/foreman_ansible/config_reports/_ansible.html.erb:7
|
631
729
|
msgid "Level"
|
632
|
-
msgstr ""
|
730
|
+
msgstr "Stufe"
|
633
731
|
|
634
732
|
#: ../app/views/foreman_ansible/config_reports/_ansible.html.erb:8
|
635
733
|
msgid "Module"
|
636
|
-
msgstr ""
|
734
|
+
msgstr "Modul"
|
637
735
|
|
638
736
|
#: ../app/views/foreman_ansible/config_reports/_ansible.html.erb:9
|
639
737
|
msgid "Arguments"
|
640
|
-
msgstr ""
|
738
|
+
msgstr "Argumente"
|
641
739
|
|
642
740
|
#: ../app/views/foreman_ansible/config_reports/_ansible.html.erb:10
|
643
741
|
msgid "Message"
|
644
|
-
msgstr ""
|
742
|
+
msgstr "Nachricht"
|
645
743
|
|
646
744
|
#: ../app/views/foreman_ansible/config_reports/_ansible.html.erb:23
|
647
745
|
msgid "Nothing to show"
|
648
|
-
msgstr ""
|
746
|
+
msgstr "Nichts anzuzeigen"
|
649
747
|
|
650
748
|
#: ../db/seeds.d/90_notification_blueprints.rb:5
|
651
749
|
msgid "Jobs"
|
652
|
-
msgstr ""
|
750
|
+
msgstr "Jobs"
|
653
751
|
|
654
752
|
#: ../db/seeds.d/90_notification_blueprints.rb:7
|
655
|
-
msgid "
|
753
|
+
msgid ""
|
754
|
+
"Insights remediation on %{hosts_count} host(s) has finished successfully"
|
656
755
|
msgstr ""
|
657
756
|
|
658
757
|
#: ../lib/foreman_ansible/register.rb:94
|
659
758
|
msgid "Roles"
|
660
|
-
msgstr ""
|
759
|
+
msgstr "Rollen"
|
661
760
|
|
662
761
|
#: ../lib/foreman_ansible/remote_execution.rb:20
|
663
762
|
msgid "Run Ansible roles"
|
664
763
|
msgstr ""
|
665
764
|
|
666
765
|
#: ../lib/foreman_ansible/remote_execution.rb:21
|
667
|
-
msgid "
|
766
|
+
msgid ""
|
767
|
+
"Runs an Ansible playbook which contains all the roles defined for a host"
|
668
768
|
msgstr ""
|
669
769
|
|
670
770
|
#: ../lib/foreman_ansible/remote_execution.rb:27
|
@@ -672,25 +772,26 @@ msgid "Ansible: Run Insights maintenance plan"
|
|
672
772
|
msgstr ""
|
673
773
|
|
674
774
|
#: ../lib/foreman_ansible/remote_execution.rb:28
|
675
|
-
msgid "
|
775
|
+
msgid ""
|
776
|
+
"Runs a given maintenance plan from Red Hat Access Insights given an ID."
|
676
777
|
msgstr ""
|
677
778
|
|
678
779
|
#: action_names.rb:2
|
679
|
-
msgid "
|
680
|
-
msgstr ""
|
780
|
+
msgid "Remote action:"
|
781
|
+
msgstr "Entfernte Aktion"
|
681
782
|
|
682
783
|
#: action_names.rb:3
|
683
|
-
msgid "
|
684
|
-
msgstr ""
|
784
|
+
msgid "Import Puppet classes"
|
785
|
+
msgstr "Puppet-Klassen importieren"
|
685
786
|
|
686
787
|
#: action_names.rb:4
|
687
|
-
msgid "Import
|
688
|
-
msgstr ""
|
788
|
+
msgid "Import facts"
|
789
|
+
msgstr "Fakten importieren"
|
689
790
|
|
690
791
|
#: action_names.rb:5
|
691
|
-
msgid "
|
692
|
-
msgstr ""
|
792
|
+
msgid "Action with sub plans"
|
793
|
+
msgstr "Aktion mit Unterplänen"
|
693
794
|
|
694
795
|
#: gemspec.rb:2
|
695
796
|
msgid "Ansible support in Foreman"
|
696
|
-
msgstr ""
|
797
|
+
msgstr "Ansible Unterstützung in Foreman"
|