foreman_ansible 3.0.3 → 3.0.4

Sign up to get free protection for your applications and to get access to all the features.
Files changed (38) hide show
  1. checksums.yaml +4 -4
  2. data/app/views/foreman_ansible/job_templates/ansible_roles_-_ansible_default.erb +1 -1
  3. data/lib/foreman_ansible/version.rb +1 -1
  4. data/webpack/components/AnsibleRolesSwitcher/components/AssignedRolesList.js +25 -12
  5. metadata +34 -67
  6. data/locale/de/LC_MESSAGES/foreman_ansible.mo +0 -0
  7. data/locale/de/foreman_ansible.edit.po +0 -797
  8. data/locale/de/foreman_ansible.po.time_stamp +0 -0
  9. data/locale/en/LC_MESSAGES/foreman_ansible.mo +0 -0
  10. data/locale/en/foreman_ansible.edit.po +0 -718
  11. data/locale/en/foreman_ansible.po.time_stamp +0 -0
  12. data/locale/es/LC_MESSAGES/foreman_ansible.mo +0 -0
  13. data/locale/es/foreman_ansible.edit.po +0 -817
  14. data/locale/es/foreman_ansible.po.time_stamp +0 -0
  15. data/locale/fr/LC_MESSAGES/foreman_ansible.mo +0 -0
  16. data/locale/fr/foreman_ansible.edit.po +0 -819
  17. data/locale/fr/foreman_ansible.po.time_stamp +0 -0
  18. data/locale/it/LC_MESSAGES/foreman_ansible.mo +0 -0
  19. data/locale/it/foreman_ansible.edit.po +0 -790
  20. data/locale/it/foreman_ansible.po.time_stamp +0 -0
  21. data/locale/ja/LC_MESSAGES/foreman_ansible.mo +0 -0
  22. data/locale/ja/foreman_ansible.edit.po +0 -790
  23. data/locale/ja/foreman_ansible.po.time_stamp +0 -0
  24. data/locale/ko/LC_MESSAGES/foreman_ansible.mo +0 -0
  25. data/locale/ko/foreman_ansible.edit.po +0 -776
  26. data/locale/ko/foreman_ansible.po.time_stamp +0 -0
  27. data/locale/pt_BR/LC_MESSAGES/foreman_ansible.mo +0 -0
  28. data/locale/pt_BR/foreman_ansible.edit.po +0 -817
  29. data/locale/pt_BR/foreman_ansible.po.time_stamp +0 -0
  30. data/locale/ru/LC_MESSAGES/foreman_ansible.mo +0 -0
  31. data/locale/ru/foreman_ansible.edit.po +0 -791
  32. data/locale/ru/foreman_ansible.po.time_stamp +0 -0
  33. data/locale/zh_CN/LC_MESSAGES/foreman_ansible.mo +0 -0
  34. data/locale/zh_CN/foreman_ansible.edit.po +0 -785
  35. data/locale/zh_CN/foreman_ansible.po.time_stamp +0 -0
  36. data/locale/zh_TW/LC_MESSAGES/foreman_ansible.mo +0 -0
  37. data/locale/zh_TW/foreman_ansible.edit.po +0 -776
  38. data/locale/zh_TW/foreman_ansible.po.time_stamp +0 -0
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: efc9d0f1dbc292fd3af8888ab840e78049520045
4
- data.tar.gz: ac8c6e2d4d2316a659f0478f0497c23d1c21c4a1
3
+ metadata.gz: ee22e692bd2f2c9eed5829462673fa6911edf432
4
+ data.tar.gz: 378711d049f8052e1fad5a348cfb626656d3cde6
5
5
  SHA512:
6
- metadata.gz: 9f81a9ca9bc5bb125986f04499ae16153eb48974445e2ce51bb9496daaecdb0cc1f46dfff87307ca2b8c082f3c8ac5ea4daaa4fcf670478ff7f998526fd52b3e
7
- data.tar.gz: dd8ea6403b8632d246f2d21f23debffd08d3270aecc8d7d118d8a4e74188f9682b6315a0e16f6b53e8a17449297f7bb71e5b323bdac751dae464723f8cecf99a
6
+ metadata.gz: bb5942bec2cca53ead766cfb35caed80429b091237706b1e1e9428b0df35a3281b006a4c11f61457d78aee96ccca5035bd18786a666499a7f54c23b8af7601c7
7
+ data.tar.gz: 3275d0c38960ac51cacdbd27a8defa2b4eb53ea138aaad82f7b63071f3133a12e28c1c35ba0f606de571d54e9d449f286143a302b7604a0aa681fcc327294bca
@@ -14,7 +14,7 @@ model: JobTemplate
14
14
  pre_tasks:
15
15
  - name: Display all parameters known for the Foreman host
16
16
  debug:
17
- var: foreman_params
17
+ var: foreman
18
18
  roles:
19
19
  <%- if @host.all_ansible_roles.present? -%>
20
20
  <%= @host.all_ansible_roles.map { |role| " - #{role.name.strip}" }.join("\n") %>
@@ -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 = '3.0.3'
7
+ VERSION = '3.0.4'
8
8
  end
@@ -1,7 +1,7 @@
1
1
  import React from 'react';
2
2
  import { ListView } from 'patternfly-react';
3
3
  import PaginationWrapper from 'foremanReact/components/Pagination/PaginationWrapper';
4
- import { reject } from 'lodash';
4
+ import { isEmpty } from 'lodash';
5
5
  import PropTypes from 'prop-types';
6
6
 
7
7
  import AnsibleRole from './AnsibleRole';
@@ -14,7 +14,29 @@ const AssignedRolesList = ({
14
14
  onRemoveRole,
15
15
  resourceName,
16
16
  }) => {
17
- const directlyAssignedRoles = reject(assignedRoles, role => role.inherited);
17
+ const directlyAssignedRoles = assignedRoles.filter(role => !role.inherited);
18
+
19
+ const inputFields = (directlyAssignedRoles, resourceName) => {
20
+ let result;
21
+ if (isEmpty(directlyAssignedRoles)) {
22
+ result = <input type="hidden" name={`${resourceName}[ansible_role_ids][]`} value=""/>
23
+ } else {
24
+ result = directlyAssignedRoles.map(role => (
25
+ <input
26
+ key={role.id}
27
+ type="hidden"
28
+ name={`${resourceName}[ansible_role_ids][]`}
29
+ value={role.id}
30
+ />
31
+ ))
32
+ }
33
+
34
+ return (
35
+ <div>
36
+ { result }
37
+ </div>
38
+ );
39
+ }
18
40
 
19
41
  return (
20
42
  <div>
@@ -38,16 +60,7 @@ const AssignedRolesList = ({
38
60
  />
39
61
  ))}
40
62
  </ListView>
41
- <div>
42
- {directlyAssignedRoles.map(role => (
43
- <input
44
- key={role.id}
45
- type="hidden"
46
- name={`${resourceName}[ansible_role_ids][]`}
47
- value={role.id}
48
- />
49
- ))}
50
- </div>
63
+ { inputFields(directlyAssignedRoles, resourceName) }
51
64
  </div>
52
65
  );
53
66
  };
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: foreman_ansible
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.3
4
+ version: 3.0.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Daniel Lobato Garcia
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-06-27 00:00:00.000000000 Z
11
+ date: 2019-07-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rubocop
@@ -239,52 +239,19 @@ files:
239
239
  - lib/foreman_ansible/version.rb
240
240
  - locale/Makefile
241
241
  - locale/action_names.rb
242
- - locale/de/LC_MESSAGES/foreman_ansible.mo
243
- - locale/de/foreman_ansible.edit.po
244
242
  - locale/de/foreman_ansible.po
245
- - locale/de/foreman_ansible.po.time_stamp
246
- - locale/en/LC_MESSAGES/foreman_ansible.mo
247
- - locale/en/foreman_ansible.edit.po
248
243
  - locale/en/foreman_ansible.po
249
- - locale/en/foreman_ansible.po.time_stamp
250
- - locale/es/LC_MESSAGES/foreman_ansible.mo
251
- - locale/es/foreman_ansible.edit.po
252
244
  - locale/es/foreman_ansible.po
253
- - locale/es/foreman_ansible.po.time_stamp
254
245
  - locale/foreman_ansible.pot
255
- - locale/fr/LC_MESSAGES/foreman_ansible.mo
256
- - locale/fr/foreman_ansible.edit.po
257
246
  - locale/fr/foreman_ansible.po
258
- - locale/fr/foreman_ansible.po.time_stamp
259
247
  - locale/gemspec.rb
260
- - locale/it/LC_MESSAGES/foreman_ansible.mo
261
- - locale/it/foreman_ansible.edit.po
262
248
  - locale/it/foreman_ansible.po
263
- - locale/it/foreman_ansible.po.time_stamp
264
- - locale/ja/LC_MESSAGES/foreman_ansible.mo
265
- - locale/ja/foreman_ansible.edit.po
266
249
  - locale/ja/foreman_ansible.po
267
- - locale/ja/foreman_ansible.po.time_stamp
268
- - locale/ko/LC_MESSAGES/foreman_ansible.mo
269
- - locale/ko/foreman_ansible.edit.po
270
250
  - locale/ko/foreman_ansible.po
271
- - locale/ko/foreman_ansible.po.time_stamp
272
- - locale/pt_BR/LC_MESSAGES/foreman_ansible.mo
273
- - locale/pt_BR/foreman_ansible.edit.po
274
251
  - locale/pt_BR/foreman_ansible.po
275
- - locale/pt_BR/foreman_ansible.po.time_stamp
276
- - locale/ru/LC_MESSAGES/foreman_ansible.mo
277
- - locale/ru/foreman_ansible.edit.po
278
252
  - locale/ru/foreman_ansible.po
279
- - locale/ru/foreman_ansible.po.time_stamp
280
- - locale/zh_CN/LC_MESSAGES/foreman_ansible.mo
281
- - locale/zh_CN/foreman_ansible.edit.po
282
253
  - locale/zh_CN/foreman_ansible.po
283
- - locale/zh_CN/foreman_ansible.po.time_stamp
284
- - locale/zh_TW/LC_MESSAGES/foreman_ansible.mo
285
- - locale/zh_TW/foreman_ansible.edit.po
286
254
  - locale/zh_TW/foreman_ansible.po
287
- - locale/zh_TW/foreman_ansible.po.time_stamp
288
255
  - package.json
289
256
  - test/factories/ansible_proxy.rb
290
257
  - test/factories/ansible_roles.rb
@@ -384,49 +351,49 @@ required_rubygems_version: !ruby/object:Gem::Requirement
384
351
  version: '0'
385
352
  requirements: []
386
353
  rubyforge_project:
387
- rubygems_version: 2.6.8
354
+ rubygems_version: 2.6.14
388
355
  signing_key:
389
356
  specification_version: 4
390
357
  summary: Ansible integration with Foreman (theforeman.org)
391
358
  test_files:
392
- - test/unit/host_ansible_role_test.rb
393
- - test/unit/helpers/ansible_reports_helper_test.rb
394
- - test/unit/ansible_role_test.rb
359
+ - test/factories/ansible_proxy.rb
360
+ - test/factories/ansible_roles.rb
361
+ - test/factories/ansible_variables.rb
362
+ - test/fixtures/insights_playbook.yaml
363
+ - test/fixtures/report.json
364
+ - test/fixtures/sample_facts.json
365
+ - test/functional/api/v2/ansible_roles_controller_test.rb
366
+ - test/functional/api/v2/hostgroups_controller_test.rb
367
+ - test/functional/api/v2/hosts_controller_test.rb
368
+ - test/functional/api/v2/ansible_inventories_controller_test.rb
369
+ - test/functional/api/v2/ansible_variables_controller_test.rb
370
+ - test/functional/ansible_roles_controller_test.rb
371
+ - test/functional/hosts_controller_test.rb
372
+ - test/functional/ui_ansible_roles_controller_test.rb
373
+ - test/functional/ansible_variables_controller_test.rb
374
+ - test/unit/actions/run_ansible_job_test.rb
375
+ - test/unit/actions/run_proxy_ansible_command_test.rb
395
376
  - test/unit/concerns/config_reports_extensions_test.rb
396
377
  - test/unit/concerns/host_managed_extensions_test.rb
397
378
  - test/unit/concerns/hostgroup_extensions_test.rb
379
+ - test/unit/helpers/ansible_reports_helper_test.rb
398
380
  - test/unit/lib/foreman_ansible_core/command_creator_test.rb
399
381
  - test/unit/lib/foreman_ansible_core/playbook_runner_test.rb
400
382
  - test/unit/lib/proxy_api/ansible_test.rb
401
- - test/unit/ansible_provider_test.rb
402
- - test/unit/ansible_variable_test.rb
403
- - test/unit/hostgroup_ansible_role_test.rb
383
+ - test/unit/services/ansible_report_importer_test.rb
384
+ - test/unit/services/api_roles_importer_test.rb
404
385
  - test/unit/services/fact_importer_test.rb
405
- - test/unit/services/ui_roles_importer_test.rb
406
- - test/unit/services/inventory_creator_test.rb
407
- - test/unit/services/roles_importer_test.rb
408
- - test/unit/services/insights_plan_runner_test.rb
409
386
  - test/unit/services/fact_parser_test.rb
410
- - test/unit/services/ansible_variables_importer_test.rb
411
- - test/unit/services/api_roles_importer_test.rb
412
- - test/unit/services/structured_fact_importer_test.rb
413
387
  - test/unit/services/fact_sparser_test.rb
414
- - test/unit/services/ansible_report_importer_test.rb
415
- - test/unit/actions/run_proxy_ansible_command_test.rb
416
- - test/unit/actions/run_ansible_job_test.rb
388
+ - test/unit/services/insights_plan_runner_test.rb
389
+ - test/unit/services/roles_importer_test.rb
390
+ - test/unit/services/structured_fact_importer_test.rb
391
+ - test/unit/services/ui_roles_importer_test.rb
392
+ - test/unit/services/ansible_variables_importer_test.rb
393
+ - test/unit/services/inventory_creator_test.rb
394
+ - test/unit/ansible_provider_test.rb
395
+ - test/unit/ansible_role_test.rb
396
+ - test/unit/ansible_variable_test.rb
397
+ - test/unit/host_ansible_role_test.rb
398
+ - test/unit/hostgroup_ansible_role_test.rb
417
399
  - test/test_plugin_helper.rb
418
- - test/functional/hosts_controller_test.rb
419
- - test/functional/api/v2/hosts_controller_test.rb
420
- - test/functional/api/v2/ansible_inventories_controller_test.rb
421
- - test/functional/api/v2/ansible_roles_controller_test.rb
422
- - test/functional/api/v2/ansible_variables_controller_test.rb
423
- - test/functional/api/v2/hostgroups_controller_test.rb
424
- - test/functional/ui_ansible_roles_controller_test.rb
425
- - test/functional/ansible_roles_controller_test.rb
426
- - test/functional/ansible_variables_controller_test.rb
427
- - test/factories/ansible_roles.rb
428
- - test/factories/ansible_proxy.rb
429
- - test/factories/ansible_variables.rb
430
- - test/fixtures/report.json
431
- - test/fixtures/sample_facts.json
432
- - test/fixtures/insights_playbook.yaml
@@ -1,797 +0,0 @@
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.2\n"
25
- "Report-Msgid-Bugs-To: \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"
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_override_values_controller.rb:17
67
- msgid "Override match"
68
- msgstr "Übereinstimmung überschreiben"
69
-
70
- #: ../app/controllers/api/v2/ansible_override_values_controller.rb:18
71
- msgid "Override value, required if omit is false"
72
- msgstr ""
73
- "Überschreibungswert, wird benötigt falls der Parameter \"Übergehen\" den "
74
- "Wert \"false\" hat"
75
-
76
- #: ../app/controllers/api/v2/ansible_override_values_controller.rb:22
77
- msgid "Create an override value for a specific ansible variable"
78
- msgstr "Überschreibungswert für eine bestimmte Ansible-Variable erzeugen"
79
-
80
- #: ../app/controllers/api/v2/ansible_override_values_controller.rb:34
81
- msgid "Destroy an override value"
82
- msgstr "Überschreibungswert löschen"
83
-
84
- #: ../app/controllers/api/v2/ansible_roles_controller.rb:18
85
- msgid "Show role"
86
- msgstr "Zeige Rolle"
87
-
88
- #: ../app/controllers/api/v2/ansible_roles_controller.rb:22
89
- msgid "List Ansible roles"
90
- msgstr "Ansible Rollen auflisten"
91
-
92
- #: ../app/controllers/api/v2/ansible_roles_controller.rb:28
93
- msgid "Deletes Ansible role"
94
- msgstr "Ansible Rolle löschen"
95
-
96
- #: ../app/controllers/api/v2/ansible_roles_controller.rb:34
97
- msgid "Import Ansible roles"
98
- msgstr "Ansible Rollen importieren"
99
-
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
104
- msgid "Smart Proxy to import from"
105
- msgstr "Smart-Proxy von dem importiert wird"
106
-
107
- #: ../app/controllers/api/v2/ansible_roles_controller.rb:36
108
- msgid "Ansible role names to import"
109
- msgstr "importiere Ansible-Rolle"
110
-
111
- #: ../app/controllers/api/v2/ansible_roles_controller.rb:41
112
- msgid "Obsolete Ansible roles"
113
- msgstr ""
114
-
115
- #: ../app/controllers/api/v2/ansible_roles_controller.rb:48
116
- msgid "Fetch Ansible roles available to be imported"
117
- msgstr "Ansible Rollen anziehen, die verfügbar zum importieren sind"
118
-
119
- #: ../app/controllers/api/v2/ansible_roles_controller.rb:49
120
- msgid "Smart Proxy to fetch from"
121
- msgstr ""
122
-
123
- #: ../app/controllers/api/v2/ansible_variables_controller.rb:20
124
- msgid "Show variable"
125
- msgstr "Variable anzeigen"
126
-
127
- #: ../app/controllers/api/v2/ansible_variables_controller.rb:24
128
- msgid "List Ansible variables"
129
- msgstr "Ansible Variablen auflisten"
130
-
131
- #: ../app/controllers/api/v2/ansible_variables_controller.rb:30
132
- msgid "Deletes Ansible variable"
133
- msgstr "Ansible Variable löschen"
134
-
135
- #: ../app/controllers/api/v2/ansible_variables_controller.rb:39
136
- msgid "Name of variable"
137
- msgstr "Name der Variable"
138
-
139
- #: ../app/controllers/api/v2/ansible_variables_controller.rb:40
140
- msgid "Role ID"
141
- msgstr "Rollen-Kennung"
142
-
143
- #: ../app/controllers/api/v2/ansible_variables_controller.rb:41
144
- msgid "Default value of variable"
145
- msgstr "Standardwert der Variable"
146
-
147
- #: ../app/controllers/api/v2/ansible_variables_controller.rb:42
148
- msgid "When enabled the parameter is hidden in the UI"
149
- msgstr "Wenn aktiviert, so ist der Parameter im UI verborgen "
150
-
151
- #: ../app/controllers/api/v2/ansible_variables_controller.rb:43
152
- msgid "The order in which values are resolved"
153
- msgstr "Reihenfolge, in der Werte aufgelöst werden"
154
-
155
- #: ../app/controllers/api/v2/ansible_variables_controller.rb:44
156
- msgid "Description of variable"
157
- msgstr "Beschreibung der Variable"
158
-
159
- #: ../app/controllers/api/v2/ansible_variables_controller.rb:45
160
- msgid "Types of validation values"
161
- msgstr "Typen von Validierungswerten"
162
-
163
- #: ../app/controllers/api/v2/ansible_variables_controller.rb:46
164
- msgid "Used to enforce certain values for the parameter values"
165
- msgstr "Verwendet, um bestimmte Werte für die Parameterwerte umzusetzen"
166
-
167
- #: ../app/controllers/api/v2/ansible_variables_controller.rb:47
168
- msgid "Types of variable values"
169
- msgstr "Typen von Variablenwerten"
170
-
171
- #: ../app/controllers/api/v2/ansible_variables_controller.rb:48
172
- msgid "Merge all matching values (only array/hash type)"
173
- msgstr "Alle übereinstimmenden Werte (nur vom Typ Array/Hash) zusammenführen"
174
-
175
- #: ../app/controllers/api/v2/ansible_variables_controller.rb:49
176
- msgid "Include default value when merging all matching values"
177
- msgstr ""
178
- "Standardwert einschließen, wenn alle übereinstimmenden Werte zusammengeführt"
179
- " werden"
180
-
181
- #: ../app/controllers/api/v2/ansible_variables_controller.rb:50
182
- msgid "Remove duplicate values (only array type)"
183
- msgstr "Duplikate (nur vom Typ Array) entfernen"
184
-
185
- #: ../app/controllers/api/v2/ansible_variables_controller.rb:54
186
- msgid "Create Ansible variable"
187
- msgstr "Ansible Variable erstellen"
188
-
189
- #: ../app/controllers/api/v2/ansible_variables_controller.rb:61
190
- msgid "Updates Ansible variable"
191
- msgstr "Ansible Variable aktualisieren"
192
-
193
- #: ../app/controllers/api/v2/ansible_variables_controller.rb:71
194
- msgid ""
195
- "Import Ansible variables. This will only import variables for already "
196
- "existing roles, it will not import any new roles"
197
- msgstr ""
198
-
199
- #: ../app/controllers/api/v2/ansible_variables_controller.rb:81
200
- msgid ""
201
- "Obsolete Ansible variables. This will only obsolete variables for already "
202
- "existing roles, it will not delete any old roles"
203
- msgstr ""
204
-
205
- #: ../app/controllers/foreman_ansible/api/v2/hostgroups_controller_extensions.rb:20
206
- msgid "Plays Ansible roles on a hostgroup"
207
- msgstr ""
208
-
209
- #: ../app/controllers/foreman_ansible/api/v2/hostgroups_controller_extensions.rb:30
210
- msgid "Plays Ansible roles on hostgroups"
211
- msgstr ""
212
-
213
- #: ../app/controllers/foreman_ansible/api/v2/hostgroups_controller_extensions.rb:31
214
- msgid "IDs of hostgroups to play roles on"
215
- msgstr ""
216
-
217
- #: ../app/controllers/foreman_ansible/api/v2/hostgroups_controller_extensions.rb:42
218
- msgid "List all Ansible roles for a hostgroup"
219
- msgstr "Auflisten aller Ansible Rollen einer Hostgruppe"
220
-
221
- #: ../app/controllers/foreman_ansible/api/v2/hostgroups_controller_extensions.rb:53
222
- msgid "Assigns Ansible roles to a hostgroup"
223
- msgstr "Weißt Ansible Rollen einer Hostgruppe zu"
224
-
225
- #: ../app/controllers/foreman_ansible/api/v2/hostgroups_controller_extensions.rb:56
226
- msgid "Ansible roles to assign to a hostgroup"
227
- msgstr ""
228
-
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
231
- msgid "IDs of associated ansible roles"
232
- msgstr ""
233
-
234
- #: ../app/controllers/foreman_ansible/api/v2/hosts_controller_extensions.rb:26
235
- msgid "Plays Ansible roles on a host"
236
- msgstr ""
237
-
238
- #: ../app/controllers/foreman_ansible/api/v2/hosts_controller_extensions.rb:35
239
- msgid "Plays Ansible roles on hosts"
240
- msgstr ""
241
-
242
- #: ../app/controllers/foreman_ansible/api/v2/hosts_controller_extensions.rb:36
243
- msgid "IDs of hosts to play roles on"
244
- msgstr ""
245
-
246
- #: ../app/controllers/foreman_ansible/api/v2/hosts_controller_extensions.rb:46
247
- msgid "List all Ansible roles for a host"
248
- msgstr "Auflisten aller Ansible Rollen eines Hosts"
249
-
250
- #: ../app/controllers/foreman_ansible/api/v2/hosts_controller_extensions.rb:56
251
- msgid "Assigns Ansible roles to a host"
252
- msgstr ""
253
-
254
- #: ../app/controllers/foreman_ansible/api/v2/hosts_controller_extensions.rb:59
255
- msgid "Ansible roles to assign to a host"
256
- msgstr ""
257
-
258
- #: ../app/controllers/foreman_ansible/concerns/hostgroups_controller_extensions.rb:27
259
- msgid "Host group has no associated hosts"
260
- msgstr ""
261
-
262
- #: ../app/controllers/foreman_ansible/concerns/job_invocation_helper.rb:13
263
- msgid "There are no Ansible roles to play"
264
- msgstr ""
265
-
266
- #: ../app/controllers/foreman_ansible/concerns/job_invocation_helper.rb:15
267
- msgid "Could not run Ansible roles for %{host}"
268
- msgstr ""
269
-
270
- #: ../app/helpers/foreman_ansible/ansible_roles_helper.rb:8
271
- msgid "Import from %s"
272
- msgstr "Importieren aus %s"
273
-
274
- #: ../app/helpers/foreman_ansible/ansible_roles_helper.rb:23
275
- msgid "Ansible Role"
276
- msgstr "Ansible Rolle"
277
-
278
- #: ../app/helpers/foreman_ansible/ansible_roles_helper.rb:29
279
- msgid "Import"
280
- msgstr "Import"
281
-
282
- #: ../app/helpers/foreman_ansible/ansible_roles_helper.rb:35
283
- msgid "%s ago"
284
- msgstr "vor %s"
285
-
286
- #: ../app/helpers/foreman_ansible/hosts_helper_extensions.rb:13
287
- #: ../app/lib/actions/foreman_ansible/helpers/host_common.rb:18
288
- msgid "Play Ansible roles"
289
- msgstr ""
290
-
291
- #: ../app/lib/actions/foreman_ansible/helpers/host_common.rb:10
292
- msgid "Playbook execution failed"
293
- msgstr "Ausführung des Playbooks fehlgeschlagen"
294
-
295
- #: ../app/lib/actions/foreman_ansible/helpers/host_common.rb:30
296
- #: ../lib/foreman_ansible_core/remote_execution_core/ansible_runner.rb:36
297
- msgid "Error loading data from proxy"
298
- msgstr "Fehler die Daten vom Proxy zu laden."
299
-
300
- #: ../app/lib/actions/foreman_ansible/helpers/play_roles_description.rb:13
301
- msgid "Foreman"
302
- msgstr "Foreman"
303
-
304
- #: ../app/lib/proxy_api/ansible.rb:27
305
- msgid "Unable to get roles from Ansible"
306
- msgstr ""
307
-
308
- #: ../app/lib/proxy_api/ansible.rb:34 ../app/lib/proxy_api/ansible.rb:41
309
- msgid "Unable to get roles/variables from Ansible"
310
- msgstr ""
311
-
312
- #: ../app/models/setting/ansible.rb:20
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"
317
- msgstr ""
318
-
319
- #: ../app/models/setting/ansible.rb:25
320
- msgid "Private Key Path"
321
- msgstr "Privat-Key Pfad"
322
-
323
- #: ../app/models/setting/ansible.rb:29
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\""
327
- msgstr ""
328
-
329
- #: ../app/models/setting/ansible.rb:33
330
- msgid "Connection type"
331
- msgstr "Verbindungstyp"
332
-
333
- #: ../app/models/setting/ansible.rb:37
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\""
338
- msgstr ""
339
-
340
- #: ../app/models/setting/ansible.rb:42
341
- msgid "WinRM cert Validation"
342
- msgstr "WinRM Zertifikatsbestätigung"
343
-
344
- #: ../app/models/setting/ansible.rb:46
345
- msgid ""
346
- "Foreman will add the this level of verbosity for additional debugging output"
347
- " when running Ansible playbooks."
348
- msgstr ""
349
-
350
- #: ../app/models/setting/ansible.rb:49
351
- msgid "Default verbosity level"
352
- msgstr ""
353
-
354
- #: ../app/models/setting/ansible.rb:52
355
- msgid "Disabled"
356
- msgstr "Deaktiviert"
357
-
358
- #: ../app/models/setting/ansible.rb:53
359
- msgid "Level 1 (-v)"
360
- msgstr "Level 1 (-v)"
361
-
362
- #: ../app/models/setting/ansible.rb:54
363
- msgid "Level 2 (-vv)"
364
- msgstr "Level 2 (-vv)"
365
-
366
- #: ../app/models/setting/ansible.rb:55
367
- msgid "Level 3 (-vvv)"
368
- msgstr "Level 3 (-vvv)"
369
-
370
- #: ../app/models/setting/ansible.rb:56
371
- msgid "Level 4 (-vvvv)"
372
- msgstr "Level 4 (-vvvv)"
373
-
374
- #: ../app/models/setting/ansible.rb:62
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."
379
- msgstr ""
380
-
381
- #: ../app/models/setting/ansible.rb:67
382
- msgid "Post-provision timeout"
383
- msgstr ""
384
-
385
- #: ../app/models/setting/ansible.rb:71
386
- msgid "Timeout (in minutes) when hosts should have reported."
387
- msgstr ""
388
-
389
- #: ../app/models/setting/ansible.rb:73
390
- msgid "Ansible report timeout"
391
- msgstr ""
392
-
393
- #: ../app/models/setting/ansible.rb:77
394
- msgid ""
395
- "Disable host configuration status turning to out of sync for %{cfgmgmt} "
396
- "after report does not arrive within configured interval"
397
- msgstr ""
398
-
399
- #: ../app/models/setting/ansible.rb:81
400
- msgid "%{cfgmgmt} out of sync disabled"
401
- msgstr ""
402
-
403
- #: ../app/models/setting/ansible.rb:86
404
- msgid "Foreman will run Ansible playbooks using this implementation"
405
- msgstr ""
406
-
407
- #: ../app/models/setting/ansible.rb:88
408
- msgid "Implementation for running Ansible"
409
- msgstr ""
410
-
411
- #: ../app/models/setting/ansible.rb:104 ../lib/foreman_ansible/register.rb:92
412
- msgid "Ansible"
413
- msgstr "Ansible"
414
-
415
- #: ../app/services/foreman_ansible/insights_notification_builder.rb:51
416
- msgid "Remediation Plan"
417
- msgstr ""
418
-
419
- #: ../app/services/foreman_ansible/insights_notification_builder.rb:61
420
- #: ../db/seeds.d/90_notification_blueprints.rb:13
421
- msgid "Job Details"
422
- msgstr "Job Details"
423
-
424
- #: ../app/services/foreman_ansible/proxy_api.rb:13
425
- msgid "Proxy not found"
426
- msgstr "Kein Proxy gefunden"
427
-
428
- #: ../app/views/ansible_roles/import.html.erb:1
429
- msgid "Changed Ansible roles"
430
- msgstr ""
431
-
432
- #: ../app/views/ansible_roles/import.html.erb:3
433
- #: ../app/views/ansible_variables/import.html.erb:3
434
- msgid "Select the changes you want to realize in Foreman"
435
- msgstr "Wählen Sie die Änderungen, die Sie in Foreman anwenden möchten"
436
-
437
- #: ../app/views/ansible_roles/import.html.erb:5
438
- #: ../app/views/ansible_variables/import.html.erb:5
439
- msgid "Toggle"
440
- msgstr "Umschalten"
441
-
442
- #: ../app/views/ansible_roles/import.html.erb:6
443
- #: ../app/views/ansible_variables/import.html.erb:6
444
- msgid "New"
445
- msgstr "Neu"
446
-
447
- #: ../app/views/ansible_roles/import.html.erb:8
448
- #: ../app/views/ansible_variables/import.html.erb:8
449
- msgid "Check/Uncheck new"
450
- msgstr "Neue auswählen/abwählen"
451
-
452
- #: ../app/views/ansible_roles/import.html.erb:9
453
- #: ../app/views/ansible_variables/import.html.erb:9
454
- msgid "Obsolete"
455
- msgstr "Veraltet"
456
-
457
- #: ../app/views/ansible_roles/import.html.erb:11
458
- #: ../app/views/ansible_variables/import.html.erb:11
459
- msgid "Check/Uncheck obsolete"
460
- msgstr "Veraltete auswählen/abwählen"
461
-
462
- #: ../app/views/ansible_roles/import.html.erb:19
463
- #: ../app/views/ansible_variables/import.html.erb:22
464
- msgid "Check/Uncheck all"
465
- msgstr "Alle auswählen/abwählen"
466
-
467
- #: ../app/views/ansible_roles/import.html.erb:21
468
- #: ../app/views/ansible_variables/import.html.erb:24
469
- msgid "Name"
470
- msgstr "Name"
471
-
472
- #: ../app/views/ansible_roles/import.html.erb:22
473
- #: ../app/views/ansible_variables/import.html.erb:26
474
- msgid "Hosts count"
475
- msgstr "Hostanzahl"
476
-
477
- #: ../app/views/ansible_roles/import.html.erb:23
478
- #: ../app/views/ansible_variables/import.html.erb:27
479
- msgid "Hostgroups count"
480
- msgstr "Hostgruppen-Anzahl"
481
-
482
- #: ../app/views/ansible_roles/import.html.erb:24
483
- #: ../app/views/ansible_variables/import.html.erb:28
484
- msgid "Operation"
485
- msgstr "Vorgang"
486
-
487
- #: ../app/views/ansible_roles/import.html.erb:35
488
- #: ../app/views/ansible_variables/import.html.erb:39
489
- msgid "Check/Uncheck all %s changes"
490
- msgstr "Alle %s Änderungen auswählen/abwählen"
491
-
492
- #: ../app/views/ansible_roles/import.html.erb:40
493
- #: ../app/views/ansible_variables/import.html.erb:45
494
- msgid "Add"
495
- msgstr "Hinzufügen"
496
-
497
- #: ../app/views/ansible_roles/import.html.erb:40
498
- #: ../app/views/ansible_variables/import.html.erb:45
499
- msgid "Remove"
500
- msgstr "Entfernen"
501
-
502
- #: ../app/views/ansible_roles/import.html.erb:48
503
- #: ../app/views/ansible_variables/import.html.erb:53
504
- msgid "Cancel"
505
- msgstr "Abbrechen"
506
-
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
511
- msgid "Update"
512
- msgstr "Aktualisieren"
513
-
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
518
- msgid "Ansible Roles"
519
- msgstr "Ansible Rollen"
520
-
521
- #: ../app/views/ansible_roles/index.html.erb:9
522
- msgid "Role|Name"
523
- msgstr "Name"
524
-
525
- #: ../app/views/ansible_roles/index.html.erb:10
526
- msgid "Hostgroups"
527
- msgstr "Hostgruppen"
528
-
529
- #: ../app/views/ansible_roles/index.html.erb:11
530
- msgid "Hosts"
531
- msgstr "Hosts"
532
-
533
- #: ../app/views/ansible_roles/index.html.erb:12
534
- msgid "Imported at"
535
- msgstr ""
536
-
537
- #: ../app/views/ansible_roles/index.html.erb:13
538
- #: ../app/views/ansible_variables/index.html.erb:16
539
- msgid "Actions"
540
- msgstr "Aktionen"
541
-
542
- #: ../app/views/ansible_roles/index.html.erb:27
543
- #: ../lib/foreman_ansible/register.rb:98
544
- msgid "Variables"
545
- msgstr "Variablen"
546
-
547
- #: ../app/views/ansible_roles/index.html.erb:33
548
- #: ../app/views/ansible_variables/index.html.erb:41
549
- msgid "Delete %s?"
550
- msgstr "%s löschen?"
551
-
552
- #: ../app/views/ansible_roles/welcome.html.erb:7
553
- msgid ""
554
- "No ansible roles were found in Foreman. If you want to assign roles to your hosts,\n"
555
- " you have to import them first."
556
- msgstr ""
557
-
558
- #: ../app/views/ansible_roles/welcome.html.erb:10
559
- msgid "Learn more about this in the documentation."
560
- msgstr "Mehr dazu in der Dokumentation."
561
-
562
- #: ../app/views/ansible_variables/_fields.erb:4
563
- msgid "Ansible Variable Details (Imported)"
564
- msgstr "Ansible Variablen Details (Importiert)"
565
-
566
- #: ../app/views/ansible_variables/_fields.erb:4
567
- msgid "Ansible Variable Details"
568
- msgstr "Ansible Variablen Details"
569
-
570
- #: ../app/views/ansible_variables/_fields.erb:11
571
- msgid "Default Behavior"
572
- msgstr "Standardmäßiges Verhalten"
573
-
574
- #: ../app/views/ansible_variables/_fields.erb:12
575
- msgid "Override the default value of the Ansible variable."
576
- msgstr "Überschreibe den Standardwert der Ansible Variable."
577
-
578
- #: ../app/views/ansible_variables/_fields.erb:14
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."
584
- msgstr ""
585
-
586
- #: ../app/views/ansible_variables/_fields.erb:27
587
- msgid "Value to use when there is no match."
588
- msgstr "Zu verwendender Wert, falls es keine Übereinstimmung gibt"
589
-
590
- #: ../app/views/ansible_variables/_fields.erb:30
591
- msgid "Hidden Value"
592
- msgstr "Verborgener Wert"
593
-
594
- #: ../app/views/ansible_variables/_fields.erb:33
595
- msgid "Hide all values for this parameter."
596
- msgstr "Alle Werte für diesen Parameter verbergen."
597
-
598
- #: ../app/views/ansible_variables/_fields.erb:39
599
- msgid "Optional Input Validator"
600
- msgstr "Optionaler Eingabe-Validator"
601
-
602
- #: ../app/views/ansible_variables/_fields.erb:41
603
- msgid ""
604
- "Before including these variables on your playbooks, Foreman will validate "
605
- "that your variables comply with the validation."
606
- msgstr ""
607
-
608
- #: ../app/views/ansible_variables/_fields.erb:44
609
- msgid ""
610
- "If checked, will raise an error if there is no default value and no matcher "
611
- "provide a value."
612
- msgstr ""
613
- "Falls aktiviert, wird dies einen Fehler erzeugen, wenn kein Standardwert "
614
- "vorhanden ist und kein Treffer einen Wert vorschlägt."
615
-
616
- #: ../app/views/ansible_variables/_fields.erb:53
617
- msgid "Prioritize Attribute Order"
618
- msgstr "Priorisiere Eigenschaft-Reihenfolge"
619
-
620
- #: ../app/views/ansible_variables/_fields.erb:54
621
- msgid "Set the order in which values are resolved."
622
- msgstr "Reihenfolge festlegen, in der die Werte aufgelöst werden."
623
-
624
- #: ../app/views/ansible_variables/_fields.erb:55
625
- msgid "Order"
626
- msgstr "Reihenfolge"
627
-
628
- #: ../app/views/ansible_variables/_fields.erb:56
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>"
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."
640
-
641
- #: ../app/views/ansible_variables/_fields.erb:59
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."
645
- msgstr ""
646
-
647
- #: ../app/views/ansible_variables/_fields.erb:61
648
- msgid "Include default value when merging all matching values."
649
- msgstr ""
650
- "Standardwert bei der Zusammenführung aller übereinstimmenden Werte "
651
- "einschließen."
652
-
653
- #: ../app/views/ansible_variables/_fields.erb:64
654
- msgid "Avoid duplicate values when merging them (only array type)?"
655
- msgstr "Doppelte Werte bei der Zusammenführung vermeiden (nur Array Typ)?"
656
-
657
- #: ../app/views/ansible_variables/_fields.erb:68
658
- msgid "Specify Matchers"
659
- msgstr "Prüfwert spezifizieren"
660
-
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
664
- msgid "Ansible Variables"
665
- msgstr "Ansible Variablen"
666
-
667
- #: ../app/views/ansible_variables/edit.html.erb:8
668
- msgid "Edit %s"
669
- msgstr "%s bearbeiten"
670
-
671
- #: ../app/views/ansible_variables/edit.html.erb:13
672
- msgid "Edit Ansible Variable"
673
- msgstr "Ansible Variable ändern"
674
-
675
- #: ../app/views/ansible_variables/import.html.erb:1
676
- msgid "Changed Ansible variables"
677
- msgstr "Geänderte Ansible Variablen"
678
-
679
- #: ../app/views/ansible_variables/import.html.erb:14
680
- msgid "Check/Uncheck update"
681
- msgstr ""
682
-
683
- #: ../app/views/ansible_variables/import.html.erb:25
684
- msgid "Ansible role"
685
- msgstr "Ansible Rolle"
686
-
687
- #: ../app/views/ansible_variables/index.html.erb:5
688
- msgid "New Ansible Variable"
689
- msgstr "Neue Ansible Variable"
690
-
691
- #: ../app/views/ansible_variables/index.html.erb:12
692
- msgid "Variable|Name"
693
- msgstr ""
694
-
695
- #: ../app/views/ansible_variables/index.html.erb:13
696
- msgid "Variable|Role"
697
- msgstr ""
698
-
699
- #: ../app/views/ansible_variables/index.html.erb:14
700
- msgid "Type"
701
- msgstr "Typ"
702
-
703
- #: ../app/views/ansible_variables/index.html.erb:15
704
- msgid "Imported?"
705
- msgstr "Importiert?"
706
-
707
- #: ../app/views/ansible_variables/index.html.erb:23
708
- msgid "Overriden"
709
- msgstr ""
710
-
711
- #: ../app/views/ansible_variables/new.html.erb:8
712
- #: ../app/views/ansible_variables/new.html.erb:13
713
- msgid "Create Ansible Variable"
714
- msgstr "Ansible Variable erstellen"
715
-
716
- #: ../app/views/foreman_ansible/ansible_roles/_hostgroup_ansible_roles_button.erb:5
717
- msgid "Play Roles"
718
- msgstr ""
719
-
720
- #: ../app/views/foreman_ansible/ansible_roles/_hostgroup_ansible_roles_button.erb:9
721
- msgid "Nest"
722
- msgstr "Verschachteln"
723
-
724
- #: ../app/views/foreman_ansible/ansible_roles/_hostgroup_ansible_roles_button.erb:10
725
- msgid "Clone"
726
- msgstr "Klonen"
727
-
728
- #: ../app/views/foreman_ansible/config_reports/_ansible.html.erb:7
729
- msgid "Level"
730
- msgstr "Stufe"
731
-
732
- #: ../app/views/foreman_ansible/config_reports/_ansible.html.erb:8
733
- msgid "Module"
734
- msgstr "Modul"
735
-
736
- #: ../app/views/foreman_ansible/config_reports/_ansible.html.erb:9
737
- msgid "Arguments"
738
- msgstr "Argumente"
739
-
740
- #: ../app/views/foreman_ansible/config_reports/_ansible.html.erb:10
741
- msgid "Message"
742
- msgstr "Nachricht"
743
-
744
- #: ../app/views/foreman_ansible/config_reports/_ansible.html.erb:23
745
- msgid "Nothing to show"
746
- msgstr "Nichts anzuzeigen"
747
-
748
- #: ../db/seeds.d/90_notification_blueprints.rb:5
749
- msgid "Jobs"
750
- msgstr "Jobs"
751
-
752
- #: ../db/seeds.d/90_notification_blueprints.rb:7
753
- msgid ""
754
- "Insights remediation on %{hosts_count} host(s) has finished successfully"
755
- msgstr ""
756
-
757
- #: ../lib/foreman_ansible/register.rb:94
758
- msgid "Roles"
759
- msgstr "Rollen"
760
-
761
- #: ../lib/foreman_ansible/remote_execution.rb:20
762
- msgid "Run Ansible roles"
763
- msgstr ""
764
-
765
- #: ../lib/foreman_ansible/remote_execution.rb:21
766
- msgid ""
767
- "Runs an Ansible playbook which contains all the roles defined for a host"
768
- msgstr ""
769
-
770
- #: ../lib/foreman_ansible/remote_execution.rb:27
771
- msgid "Ansible: Run Insights maintenance plan"
772
- msgstr ""
773
-
774
- #: ../lib/foreman_ansible/remote_execution.rb:28
775
- msgid ""
776
- "Runs a given maintenance plan from Red Hat Access Insights given an ID."
777
- msgstr ""
778
-
779
- #: action_names.rb:2
780
- msgid "Remote action:"
781
- msgstr "Entfernte Aktion"
782
-
783
- #: action_names.rb:3
784
- msgid "Import Puppet classes"
785
- msgstr "Puppet-Klassen importieren"
786
-
787
- #: action_names.rb:4
788
- msgid "Import facts"
789
- msgstr "Fakten importieren"
790
-
791
- #: action_names.rb:5
792
- msgid "Action with sub plans"
793
- msgstr "Aktion mit Unterplänen"
794
-
795
- #: gemspec.rb:2
796
- msgid "Ansible support in Foreman"
797
- msgstr "Ansible Unterstützung in Foreman"