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