foreman_discovery 4.1.0 → 4.1.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (40) hide show
  1. checksums.yaml +4 -4
  2. data/app/models/host/discovered.rb +1 -2
  3. data/app/models/host/managed_extensions.rb +1 -0
  4. data/app/services/foreman_discovery/host_converter.rb +1 -1
  5. data/app/services/foreman_discovery/node_api/inventory.rb +11 -0
  6. data/app/views/foreman_discovery/redhat_kexec.erb +2 -2
  7. data/extra/generate-authors-file +2 -0
  8. data/lib/foreman_discovery/engine.rb +7 -0
  9. data/lib/foreman_discovery/version.rb +1 -1
  10. data/locale/de/LC_MESSAGES/foreman_discovery.mo +0 -0
  11. data/locale/de/foreman_discovery.po +125 -120
  12. data/locale/en_GB/LC_MESSAGES/foreman_discovery.mo +0 -0
  13. data/locale/en_GB/foreman_discovery.po +69 -64
  14. data/locale/es/LC_MESSAGES/foreman_discovery.mo +0 -0
  15. data/locale/es/foreman_discovery.po +167 -163
  16. data/locale/foreman_discovery.pot +21 -3
  17. data/locale/fr/LC_MESSAGES/foreman_discovery.mo +0 -0
  18. data/locale/fr/foreman_discovery.po +157 -153
  19. data/locale/gl/LC_MESSAGES/foreman_discovery.mo +0 -0
  20. data/locale/gl/foreman_discovery.po +68 -23
  21. data/locale/it/LC_MESSAGES/foreman_discovery.mo +0 -0
  22. data/locale/it/foreman_discovery.po +136 -96
  23. data/locale/ja/LC_MESSAGES/foreman_discovery.mo +0 -0
  24. data/locale/ja/foreman_discovery.po +119 -105
  25. data/locale/ko/LC_MESSAGES/foreman_discovery.mo +0 -0
  26. data/locale/ko/foreman_discovery.po +141 -102
  27. data/locale/messages.mo +0 -0
  28. data/locale/pt_BR/LC_MESSAGES/foreman_discovery.mo +0 -0
  29. data/locale/pt_BR/foreman_discovery.po +162 -122
  30. data/locale/ru/LC_MESSAGES/foreman_discovery.mo +0 -0
  31. data/locale/ru/foreman_discovery.po +135 -132
  32. data/locale/sv_SE/LC_MESSAGES/foreman_discovery.mo +0 -0
  33. data/locale/sv_SE/foreman_discovery.po +70 -27
  34. data/locale/zh_CN/LC_MESSAGES/foreman_discovery.mo +0 -0
  35. data/locale/zh_CN/foreman_discovery.po +134 -95
  36. data/locale/zh_TW/LC_MESSAGES/foreman_discovery.mo +0 -0
  37. data/locale/zh_TW/foreman_discovery.po +133 -94
  38. data/test/unit/host_discovered_test.rb +1 -1
  39. metadata +41 -4
  40. data/app/services/foreman_discovery/proxy_operations.rb +0 -18
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 4ec0d128aaf7c37440c990fce555943c73bed976
4
- data.tar.gz: e9b3caa61e5e0b380b14e294927a2d06c097b383
3
+ metadata.gz: 3fda22f5edb3e97875c15d398febdd5023950166
4
+ data.tar.gz: bd644761a152e7abe6a7dea83f6a4e964b9d665f
5
5
  SHA512:
6
- metadata.gz: cf30e4317aab32579aca2cfa16e788917c7fee2300f717a50ca0c5915936431e4e0d3f852f3bde6423bfd4b6fe2761eb48958a1317ab2f14d84e7d97daf51336
7
- data.tar.gz: 8929a780f304b8d9f56df0e10d076593271d0c593fc0d575fd4ccb7f384d5594565ed6fcea2a914f7362c73f884b1dcdb03bf481444fabc883b9c985443ae892
6
+ metadata.gz: 85212ea10af6f5a40125bcfbb849fbebb362485c6626a967a3e24faf5635444eb0dd87eab9e63251809b366cf3bdb491970b8b74623ba2e9cdd0b831fb1f1b2e
7
+ data.tar.gz: b427ee0dafae3d44c3913992ffbcdf017a3b6c08579c56aa8f59b39e60d2adbd789f9d046a62eb1a69096a7cf66bb4e524e481bf95c89d5c9b1d57a066f4132e
@@ -132,8 +132,7 @@ class Host::Discovered < ::Host::Base
132
132
  end
133
133
 
134
134
  def refresh_facts
135
- # TODO implement new-style service, get rid of old client (legacy_api? cannot be used!)
136
- facts = ForemanDiscovery::ProxyOperations.new(:url => proxy_url, :operation => 'facts').parse_get_operation
135
+ facts = ::ForemanDiscovery::NodeAPI::Inventory.new(:url => proxy_url).facter
137
136
  self.class.import_host_and_facts facts
138
137
  rescue Exception => e
139
138
  raise _("Could not get facts from proxy %{url}: %{error}") % {:url => proxy_url, :error => e}
@@ -40,6 +40,7 @@ module Host::ManagedExtensions
40
40
 
41
41
  def setKexec
42
42
  template = provisioning_template(:kind => 'kexec')
43
+ @host = self
43
44
  @kernel = boot_url(:kernel)
44
45
  @initrd = boot_url(:initrd)
45
46
  json = unattended_render(template)
@@ -20,7 +20,7 @@ class ForemanDiscovery::HostConverter
20
20
  host.legacy_api = self.legacy_host(host)
21
21
  # do not delete all facts (keep discovery ones)
22
22
  host.define_singleton_method(:clearFacts) do
23
- keep_ids = FactValue.where("host_id = #{host.id}").joins(:fact_name).where("fact_names.name like 'discovery_%'").pluck(:id)
23
+ keep_ids = FactValue.where("host_id = #{host.id}").joins(:fact_name).where("fact_names.name like 'discovery_%'").pluck("fact_values.id")
24
24
  FactValue.where("host_id = #{host.id} and id not in (?)", keep_ids).delete_all
25
25
  end
26
26
  # set build flag (also deletes facts)
@@ -0,0 +1,11 @@
1
+ module ForemanDiscovery::NodeAPI
2
+ class Inventory < NodeResource
3
+ def url
4
+ @args[:url] + "/inventory"
5
+ end
6
+
7
+ def facter
8
+ parse(get({}, "/facter"))
9
+ end
10
+ end
11
+ end
@@ -24,7 +24,7 @@ information about semantics.
24
24
  -%>
25
25
  <%
26
26
  mac = @host.facts['discovery_bootif']
27
- bootif = '00-' + mac.gsub(':', '-')
27
+ bootif = '00-' + mac.gsub(':', '-') rescue ''
28
28
  ip_cidr = @host.facts['discovery_ip_cidr']
29
29
  ip = @host.facts['discovery_ip']
30
30
  mask = @host.facts['discovery_netmask']
@@ -39,6 +39,6 @@ information about semantics.
39
39
  (@host.operatingsystem.name != 'Fedora' and @host.operatingsystem.major.to_i >= 7) -%>
40
40
  "append": "ks=<%= foreman_url('provision') + "&static=yes" %> inst.ks.sendmac <%= "ip=#{ip}::#{gw}:#{mask}:::none nameserver=#{dns} ksdevice=bootif BOOTIF=#{bootif} #{append}" %>"
41
41
  <% else -%>
42
- "append": "ks=<%= foreman_url('provision') + "&static=yes" %> kssendmac <%= "ip=#{ip} netmask=#{mask} gateway=#{gw} dns=#{dns} ksdevice=#{mac} BOOTIF=#{bootif} #{append}" %>"
42
+ "append": "ks=<%= foreman_url('provision') + "&static=yes" %> kssendmac nicdelay=5 <%= "ip=#{ip} netmask=#{mask} gateway=#{gw} dns=#{dns} ksdevice=#{mac} BOOTIF=#{bootif} #{append}" %>"
43
43
  <% end -%>
44
44
  }
@@ -0,0 +1,2 @@
1
+ #!/bin/sh
2
+ git log --format='%aN' | sort -u > AUTHORS
@@ -1,6 +1,7 @@
1
1
  require 'fast_gettext'
2
2
  require 'gettext_i18n_rails'
3
3
  require 'deface'
4
+ require 'rabl'
4
5
 
5
6
  module ForemanDiscovery
6
7
  #Inherit from the Rails module of the parent app (Foreman), not the plugin.
@@ -19,6 +20,12 @@ module ForemanDiscovery
19
20
  require_dependency File.expand_path("../../../app/models/setting/discovered.rb", __FILE__) if (Setting.table_exists? rescue(false))
20
21
  end
21
22
 
23
+ initializer "foreman_discovery.add_rabl_view_path" do |app|
24
+ Rabl.configure do |config|
25
+ config.view_paths << ForemanDiscovery::Engine.root.join('app', 'views')
26
+ end
27
+ end
28
+
22
29
  initializer 'foreman_discovery.helper' do |app|
23
30
  ActionView::Base.send :include, DiscoveredHostsHelper
24
31
  end
@@ -1,3 +1,3 @@
1
1
  module ForemanDiscovery
2
- VERSION = "4.1.0"
2
+ VERSION = "4.1.1"
3
3
  end
@@ -1,35 +1,39 @@
1
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 package.
4
- #
2
+ # Copyright (C) 2015 Foreman developers
3
+ # This file is distributed under the same license as the foreman_discovery package.
4
+ #
5
5
  # Translators:
6
6
  # Arnold Bechtoldt <mail@arnoldbechtoldt.com>, 2014
7
7
  # Christina Gurski <Gurski_christina@yahoo.de>, 2015
8
8
  # Ettore Atalan <atalanttore@googlemail.com>, 2014-2015
9
9
  # Lukáš Zapletal, 2015
10
10
  # simon11 <simon.stieger.98@live.de>, 2014
11
+ # simon11 <simon.stieger.98@live.de>, 2014
11
12
  msgid ""
12
13
  msgstr ""
13
- "Project-Id-Version: foreman_discovery 3.0.0\n"
14
+ "Project-Id-Version: foreman_discovery 4.0.0\n"
14
15
  "Report-Msgid-Bugs-To: foreman-dev@googlegroups.com\n"
15
- "POT-Creation-Date: 2015-08-13 16:23+0200\n"
16
- "PO-Revision-Date: 2015-08-10 10:06+0000\n"
17
- "Last-Translator: Lukáš Zapletal\n"
16
+ "POT-Creation-Date: 2015-10-15 09:33+0200\n"
17
+ "PO-Revision-Date: 2015-10-15 14:20+0000\n"
18
+ "Last-Translator: Ettore Atalan <atalanttore@googlemail.com>\n"
18
19
  "Language-Team: German (http://www.transifex.com/foreman/foreman/language/de/)\n"
19
- "Language: de\n"
20
20
  "MIME-Version: 1.0\n"
21
21
  "Content-Type: text/plain; charset=UTF-8\n"
22
22
  "Content-Transfer-Encoding: 8bit\n"
23
+ "Language: de\n"
23
24
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
24
25
 
25
26
  msgid "%s - The following hosts are about to be changed"
26
- msgstr "%s - Die folgenden Hosts werden geändert"
27
+ msgstr "%s - Die folgenden Hosts werden geändert"
27
28
 
28
29
  msgid "%s ago"
29
30
  msgstr "vor %s"
30
31
 
32
+ msgid "%s discovered hosts were provisioned"
33
+ msgstr ""
34
+
31
35
  msgid "Are you sure?"
32
- msgstr "Bist du sicher?"
36
+ msgstr "Sind Sie sicher?"
33
37
 
34
38
  msgid "Assign Location"
35
39
  msgstr "Standort zuweisen"
@@ -38,13 +42,15 @@ msgid "Assign Organization"
38
42
  msgstr "Organisation zuweisen"
39
43
 
40
44
  msgid "Auto Provision"
41
- msgstr "Automatische Bereitstellung"
45
+ msgstr "Automatisch bereitstellen"
42
46
 
43
47
  msgid "Auto Provision All"
44
48
  msgstr "Alle automatisch bereitstellen"
45
49
 
46
- msgid "Automatically provision newly discovered hosts, according to the provisioning rules"
47
- msgstr "Automatisch neu entdeckte Hosts gemäß den Bereitstellungsregeln bereitstellen"
50
+ msgid ""
51
+ "Automatically provision newly discovered hosts, according to the "
52
+ "provisioning rules"
53
+ msgstr "Neu entdeckte Hosts automatisch bereitstellen gemäß Bereitstellungsregeln"
48
54
 
49
55
  msgid "Automatically reboot discovered host during provisioning"
50
56
  msgstr ""
@@ -56,13 +62,13 @@ msgid "Cancel"
56
62
  msgstr "Abbrechen"
57
63
 
58
64
  msgid "Could not get facts from proxy %{url}: %{error}"
59
- msgstr "Konnte keine Facts von Proxy %{url} empfangen: %{error}"
65
+ msgstr "Fakten konnten nicht vom Proxy %{url} abgerufen werden: %{error}"
60
66
 
61
67
  msgid "Create a discovered host for testing (use /facts to create new hosts)"
62
68
  msgstr ""
63
69
 
64
70
  msgid "Create a discovery rule"
65
- msgstr "Eine Entdeckungsregel erstellen"
71
+ msgstr "Entdeckungsregel erstellen"
66
72
 
67
73
  msgid "Delete"
68
74
  msgstr "Löschen"
@@ -71,7 +77,7 @@ msgid "Delete %s?"
71
77
  msgstr "%s löschen?"
72
78
 
73
79
  msgid "Delete a discovered host"
74
- msgstr "Einen entdeckten Host löschen"
80
+ msgstr "Entdeckten Host löschen"
75
81
 
76
82
  msgid "Delete a rule"
77
83
  msgstr "Regel löschen"
@@ -95,7 +101,7 @@ msgid "Discovered hosts"
95
101
  msgstr "Entdeckte Hosts"
96
102
 
97
103
  msgid "Discovered hosts are provisioning now"
98
- msgstr "Entdeckte Hosts werden jetzt bereitgestellt"
104
+ msgstr "Entdeckte Hosts, die jetzt bereitgestellt werden"
99
105
 
100
106
  msgid "Discovered hosts are rebooting now"
101
107
  msgstr ""
@@ -121,8 +127,11 @@ msgstr "Festplattenanzahl"
121
127
  msgid "Disks size"
122
128
  msgstr "Festplattengröße"
123
129
 
124
- msgid "Domain will be appended automatically. A hostname based on MAC address will be used when left blank. In addition to @host attribute function rand for random integers is available. Examples:"
125
- msgstr "Domäne wird automatisch angefügt. Bei Freilassung wird ein auf einer MAC-Adresse basierender Hostname verwendet. Zusätzlich zum @host-Attribut ist die Funktion \"rand\" für Random Integers verfügbar. Beispiele:"
130
+ msgid ""
131
+ "Domain will be appended automatically. A hostname based on MAC address will "
132
+ "be used when left blank. In addition to @host attribute function rand for "
133
+ "random integers is available. Examples:"
134
+ msgstr "Domain wird automatisch angehängt. Falls leer gelassen, wird ein Hostname basierend auf der MAC-Adresse verwendet. Zusätzlich zum Attribut \"@host\" steht die Funktion \"rand\" für zufällige Ganzzahlwerte zur Verfügung. Beispiele:"
126
135
 
127
136
  msgid "Edit Discovery Rule"
128
137
  msgstr "Entdeckungsregel bearbeiten"
@@ -134,18 +143,20 @@ msgid "Enable rule?"
134
143
  msgstr "Regel aktivieren?"
135
144
 
136
145
  msgid "Errors during auto provisioning: %s"
137
- msgstr "Fehler bei der automatischen Bereitstellung: %s"
146
+ msgstr "Fehler bei automatischer Bereitstellung: %s"
138
147
 
139
148
  msgid "Errors during reboot: %s"
140
149
  msgstr ""
141
150
 
142
151
  msgid "Execute rules against a discovered host"
143
- msgstr "Anwenden der Regeln auf alle entdeckten Hosts"
152
+ msgstr "Regeln auf einem entdeckten Host anwenden"
144
153
 
145
154
  msgid "Execute rules against all currently discovered hosts"
146
- msgstr "Anwenden der Regeln auf alle gegenwärtig entdeckten Hosts"
155
+ msgstr "Regeln auf allen kürzlich entdeckten Hosts anwenden"
147
156
 
148
- msgid "Expected discovery_fact '%s' is missing, unable to detect primary interface and set hostname"
157
+ msgid ""
158
+ "Expected discovery_fact '%s' is missing, unable to detect primary interface "
159
+ "and set hostname"
149
160
  msgstr ""
150
161
 
151
162
  msgid "Extra facter columns to show in host lists (separate by comma)"
@@ -164,33 +175,36 @@ msgid "Facts refreshed for %s"
164
175
  msgstr "Fakten für %s erneuert"
165
176
 
166
177
  msgid "Failed to auto provision host %s: %s"
167
- msgstr "Fehler bei der automatischen Bereitstellung von Host %s: %s"
178
+ msgstr "Fehler bei automatischer Bereitstellung von Host %s: %s"
168
179
 
169
180
  msgid "Failed to reboot host %s"
170
- msgstr "Neustart von Host %s fehlgeschlagen"
181
+ msgstr "Fehler beim Neustart von Host %s"
171
182
 
172
183
  msgid "Failed to reboot host %{hostname} with error %{error_message}"
173
- msgstr "Neustart von Host %{hostname} fehlgeschlagen mit Fehler %{error_message}"
184
+ msgstr "Fehler beim Neustart von Host %{hostname} mit Fehlermeldung %{error_message}"
174
185
 
175
186
  msgid "Failed to refresh facts for %s"
176
- msgstr "Fakten für %s konnten nicht aktualisiert werden"
187
+ msgstr "Fehler beim Aktualisieren von Fakten für %s"
177
188
 
178
189
  msgid "Host"
179
190
  msgstr "Host"
180
191
 
181
192
  msgid "Host %{host} was provisioned with rule %{rule}"
182
- msgstr "Host %{host} wurde mit Regel %{rule} bereitgestellt"
193
+ msgstr "Host %{host} wurde bereitgestellt mit Regel %{rule}"
183
194
 
184
195
  msgid "Host group"
185
196
  msgstr "Hostgruppe"
186
197
 
187
198
  msgid "Host group location %s must also be associated to the discovery rule"
188
- msgid_plural "Host group locations %s must also be associated to the discovery rule"
199
+ msgid_plural ""
200
+ "Host group locations %s must also be associated to the discovery rule"
189
201
  msgstr[0] ""
190
202
  msgstr[1] ""
191
203
 
192
- msgid "Host group organization %s must also be associated to the discovery rule"
193
- msgid_plural "Host group organizations %s must also be associated to the discovery rule"
204
+ msgid ""
205
+ "Host group organization %s must also be associated to the discovery rule"
206
+ msgid_plural ""
207
+ "Host group organizations %s must also be associated to the discovery rule"
194
208
  msgstr[0] ""
195
209
  msgstr[1] ""
196
210
 
@@ -201,14 +215,20 @@ msgid "Hostname for provisioned hosts"
201
215
  msgstr "Hostname für bereitgestellte Hosts"
202
216
 
203
217
  msgid "Hosts limit"
204
- msgstr "Host-Limit"
218
+ msgstr "Hostgrenze"
205
219
 
206
220
  msgid "Hosts/limit"
207
- msgstr "Hosts/Limit"
221
+ msgstr "Hosts/Grenze"
208
222
 
209
223
  msgid "IP Address"
210
224
  msgstr "IP-Adresse"
211
225
 
226
+ msgid "Image API processing error: %{msg} (HTTP/%{code}, body: %{body})"
227
+ msgstr ""
228
+
229
+ msgid "Image API returned HTTP/%{code} with '%{body}"
230
+ msgstr ""
231
+
212
232
  msgid "Incompatible version of puppet fact parser"
213
233
  msgstr ""
214
234
 
@@ -225,13 +245,13 @@ msgid "List all discovery rules"
225
245
  msgstr "Alle Entdeckungsregeln auflisten"
226
246
 
227
247
  msgid "Location"
228
- msgstr "Ort"
248
+ msgstr "Standort"
229
249
 
230
250
  msgid "Locations"
231
- msgstr ""
251
+ msgstr "Orte"
232
252
 
233
253
  msgid "Maximum hosts provisioned with this rule (0 = unlimited)"
234
- msgstr "Maximale Anzahl Hosts, die mit dieser Regel bereitgestellt werden (0 = unendlich)"
254
+ msgstr "Höchstanzahl von Hosts, die mit dieser Regel bereitgestellt werden (0 = unbegrenzt)"
235
255
 
236
256
  msgid "Memory"
237
257
  msgstr "Speicher"
@@ -252,13 +272,13 @@ msgid "New Rule"
252
272
  msgstr "Neue Regel"
253
273
 
254
274
  msgid "New in the last 24 hours"
255
- msgstr ""
275
+ msgstr "Neu in den letzten 24 Stunden"
256
276
 
257
277
  msgid "No discovered hosts available"
258
278
  msgstr "Keine entdeckten Hosts verfügbar"
259
279
 
260
280
  msgid "No discovered hosts to provision"
261
- msgstr "Keine entdeckten Hosts bereitzustellen"
281
+ msgstr "Keine entdeckten Hosts zur Bereitstellung"
262
282
 
263
283
  msgid "No discovered hosts to reboot"
264
284
  msgstr ""
@@ -267,58 +287,61 @@ msgid "No hosts selected"
267
287
  msgstr "Keine Hosts ausgewählt"
268
288
 
269
289
  msgid "No hosts were found with that id or name"
270
- msgstr "Es wurden keine Systeme mit dieser Kennung oder diesem Namen gefunden"
290
+ msgstr "Keine Systeme mit dieser ID oder diesem Namen gefunden"
271
291
 
272
292
  msgid "No rule found for host %s"
273
293
  msgstr "Keine Regel gefunden für Host %s"
274
294
 
275
295
  msgid "Not reported in more than 7 days"
276
- msgstr ""
296
+ msgstr "Nicht berichtet in mehr als 7 Tagen"
277
297
 
278
298
  msgid "Organization"
279
299
  msgstr "Organisation"
280
300
 
281
301
  msgid "Organizations"
282
- msgstr ""
302
+ msgstr "Organisationen"
283
303
 
284
304
  msgid "Please Confirm"
285
305
  msgstr "Bitte bestätigen"
286
306
 
287
307
  msgid "Primary"
288
- msgstr ""
308
+ msgstr "Primär"
289
309
 
290
310
  msgid "Provision"
291
311
  msgstr "Bereitstellen"
292
312
 
293
313
  msgid "Provision a discovered host"
294
- msgstr "Einen entdeckten Host bereitstellen"
314
+ msgstr "Entdeckten Host bereitstellen"
295
315
 
296
316
  msgid "Reboot"
297
317
  msgstr "Neustart"
298
318
 
299
319
  msgid "Reboot All"
300
- msgstr ""
320
+ msgstr "Alle neu starten"
301
321
 
302
322
  msgid "Rebooting %s"
303
323
  msgstr "%s wird neu gestartet"
304
324
 
305
325
  msgid "Rebooting a discovered host"
306
- msgstr "Neustart eine entdeckten Hosts"
326
+ msgstr "Entdeckten Host neu starten"
307
327
 
308
328
  msgid "Rebooting all discovered hosts"
309
329
  msgstr ""
310
330
 
311
331
  msgid "Rebooting host %s"
312
- msgstr "Starte Host %s neu"
332
+ msgstr "Host %s wird neu gestartet"
313
333
 
314
334
  msgid "Refresh facts"
315
335
  msgstr "Fakten aktualisieren"
316
336
 
317
337
  msgid "Refreshing the facts of a discovered host"
318
- msgstr "Aktualisiere Fakten eines entdeckten Hosts"
338
+ msgstr "Fakten eines entdeckten Hosts werden aktualisiert"
339
+
340
+ msgid "Reloading kernel on %s"
341
+ msgstr "Kernel auf %s wird neu geladen"
319
342
 
320
343
  msgid "Reported in the last 7 days"
321
- msgstr ""
344
+ msgstr "Berichtet in den letzten 7 Tagen"
322
345
 
323
346
  msgid "Rule disabled"
324
347
  msgstr "Regel deaktiviert"
@@ -327,7 +350,7 @@ msgid "Rule enabled"
327
350
  msgstr "Regel aktiviert"
328
351
 
329
352
  msgid "Rule priority (lower integer means higher priority)"
330
- msgstr "Regelpriorität (ein kleinerer Integer bedeutet höhere Priorität)"
353
+ msgstr "Regelpriorität (niedriger Wert bedeutet hohe Priorität)"
331
354
 
332
355
  msgid "Select Action"
333
356
  msgstr "Aktion auswählen"
@@ -336,22 +359,24 @@ msgid "Select all items in this page"
336
359
  msgstr "Alle Elemente auf dieser Seite auswählen"
337
360
 
338
361
  msgid "Select location"
339
- msgstr "Ort auswählen"
362
+ msgstr "Standort auswählen"
340
363
 
341
364
  msgid "Select organization"
342
365
  msgstr "Organisation auswählen"
343
366
 
344
367
  msgid "Show a discovered host"
345
- msgstr "Einen entdeckten Host anzeigen"
368
+ msgstr "Entdeckten Host anzeigen"
346
369
 
347
370
  msgid "Show a discovery rule"
348
- msgstr "Einen Entdeckungsregel anzeigen"
371
+ msgstr "Entdeckungsregel anzeigen"
349
372
 
350
373
  msgid "Something went wrong while selecting hosts - %s"
351
- msgstr "Beim Auswählen der Hosts ist ein Fehler aufgetreten - %s"
374
+ msgstr "Fehler beim Auswählen der Hosts %s"
352
375
 
353
- msgid "Specify target hostname template pattern in the same syntax as in Provisioning Templates (ERB)."
354
- msgstr "Spezifizieren Sie die Ziel-Hostnamen-Bereitstellungsvorlage in derselben Syntax wie in Bereitstellungstabellen (ERB). "
376
+ msgid ""
377
+ "Specify target hostname template pattern in the same syntax as in "
378
+ "Provisioning Templates (ERB)."
379
+ msgstr "Vorlagenmuster des Ziel-Hostnamens in derselben Syntax angeben wie in Bereitstellungsvorlagen (ERB)."
355
380
 
356
381
  msgid "Submit"
357
382
  msgstr "Absenden"
@@ -360,46 +385,57 @@ msgid "Subnet"
360
385
  msgstr "Subnetz"
361
386
 
362
387
  msgid "Target host group for this rule with all properties set"
363
- msgstr "Ziel-Hostgruppe für diese Regel mit allen gesetzten Eigenschaften"
388
+ msgstr "Ziel-Hostgruppe für diese Regel mit allen Eigenschaften gesetzt"
364
389
 
365
390
  msgid "Template"
366
391
  msgstr "Vorlage"
367
392
 
368
393
  msgid "The default location to place discovered hosts in"
369
- msgstr "Standard-Ort zum Platzieren entdeckter Hosts"
394
+ msgstr "Standard-Standort, in den entdeckte Hosts platziert werden"
370
395
 
371
396
  msgid "The default organization to place discovered hosts in"
372
- msgstr "Standard-Organisation zum Platzieren entdeckter Hosts"
397
+ msgstr "Standard-Organisation, in die entdeckte Hosts platziert werden"
373
398
 
374
399
  msgid "The default prefix to use for the host name, must start with a letter"
375
- msgstr "Das für den Hostnamen zu verwendende Standard-Präfix, muss mit einem Buchstaben beginnen"
400
+ msgstr "Das Standard-Präfix zum Verwenden für den Hostnamen, muss mit einem Buchstaben beginnen"
376
401
 
377
402
  msgid "The following hosts were not deleted: %s"
378
- msgstr "Die folgenden Systeme wurden nicht gelöscht: %s"
403
+ msgstr "Die folgenden Hosts wurden nicht gelöscht: %s"
379
404
 
380
- msgid "This might take a while, as all hosts, facts and reports will be destroyed as well"
381
- msgstr "Dies kann eine Weile dauern, weil alle Systeme, Fakten und Reporte auch gelöscht werden"
405
+ msgid ""
406
+ "This might take a while, as all hosts, facts and reports will be destroyed "
407
+ "as well"
408
+ msgstr "Dieser Vorgang kann eine Weile dauern, da alle Hosts, Fakten und Berichte ebenfalls gelöscht werden"
382
409
 
383
- msgid "UUID to track orchestration tasks status, GET /api/orchestration/:UUID/tasks"
384
- msgstr "UUID zum Tracken des Status der Orchestrierungsaufgaben, GET /api/orchestration/:UUID/tasks"
410
+ msgid ""
411
+ "UUID to track orchestration tasks status, GET /api/orchestration/:UUID/tasks"
412
+ msgstr "UUID zur Nachverfolgung des Status von Orchestrierungs-Tasks, GET /api/orchestration/:UUID/tasks"
385
413
 
386
414
  msgid "Unable to assign subnet, primary interface is missing IP address"
387
415
  msgstr ""
388
416
 
389
- msgid "Unable to detect primary interface using MAC '%{mac}' specified by discovery_fact '%{fact}'"
417
+ msgid ""
418
+ "Unable to detect primary interface using MAC '%{mac}' specified by "
419
+ "discovery_fact '%{fact}'"
390
420
  msgstr ""
391
421
 
392
422
  msgid "Unable to find a discovery rule, no host provided (check permissions)"
393
423
  msgstr ""
394
424
 
395
- msgid "Unable to reboot %{name}: %{msg}"
425
+ msgid "Unable to perform kexec on %{name} via %{url}: %{msg}"
426
+ msgstr ""
427
+
428
+ msgid "Unable to provision %{host}: %{errors}"
429
+ msgstr ""
430
+
431
+ msgid "Unable to reboot %{name} via %{url}: %{msg}"
396
432
  msgstr ""
397
433
 
398
434
  msgid "Update a rule"
399
435
  msgstr "Regel aktualisieren"
400
436
 
401
437
  msgid "Upload facts for a host, creating the host if required"
402
- msgstr "Fakten für einen Host hochladen mit Erstellung des Hosts, wenn erforderlich"
438
+ msgstr "Fakten für Host aktualisiert, Host wird erstellt falls erforderlich"
403
439
 
404
440
  msgid "Value"
405
441
  msgstr "Wert"
@@ -407,13 +443,17 @@ msgstr "Wert"
407
443
  msgid "Warning"
408
444
  msgstr "Warnung"
409
445
 
410
- msgid "When creating hostname patterns, make sure the resulting host names are unique. Hostnames must not start with numbers. A good approach is to use unique information provided by facter (MAC address, BIOS or serial ID)."
411
- msgstr "Versichern Sie sich beim Erstellen von Hostnamen-Patterns, dass die resultierenden Hostnamen eindeutig sind. Hostnamen dürfen nicht mit Zahlen beginnen. Ein guter Ansatz besteht darin, eindeutige vom Facter gelieferte Informationen (MAC-Adresse, BIOS oder serielle Kennung) zu verwenden."
446
+ msgid ""
447
+ "When creating hostname patterns, make sure the resulting host names are "
448
+ "unique. Hostnames must not start with numbers. A good approach is to use "
449
+ "unique information provided by facter (MAC address, BIOS or serial ID)."
450
+ msgstr "Stellen Sie beim Anlegen von Hostnamen-Mustern sicher, das die daraus resultierenden Hostnamen eindeutig sind. Hostnamen dürfen nicht mit Ziffern beginnen. Eine gute Methode ist die Verwendung der von Facter bereitgestellten eindeutigen Informationen (MAC-Adresse, BIOS oder Seriennummer)."
412
451
 
413
452
  msgid "can't contain white spaces."
414
- msgstr "kann keine Leerzeichen enthalten"
453
+ msgstr "darf keine Leerzeichen enthalten."
415
454
 
416
- msgid "defines a pattern to assign human-readable hostnames to the matching hosts"
455
+ msgid ""
456
+ "defines a pattern to assign human-readable hostnames to the matching hosts"
417
457
  msgstr ""
418
458
 
419
459
  msgid "enables to limit maximum amount of provisioned hosts per rule"
@@ -425,28 +465,32 @@ msgstr "Ergebnisse filtern"
425
465
  msgid "flag is used for temporary shutdown of rules"
426
466
  msgstr ""
427
467
 
428
- msgid "hash containing facts for the host with minimum set of facts: discovery_bootif, macaddress_eth0, ipaddress, ipaddress_eth0, interfaces: eth0 (example in case primary interface is named eth0)"
468
+ msgid ""
469
+ "hash containing facts for the host with minimum set of facts: "
470
+ "discovery_bootif, macaddress_eth0, ipaddress, ipaddress_eth0, interfaces: "
471
+ "eth0 (example in case primary interface is named eth0)"
429
472
  msgstr ""
430
473
 
431
474
  msgid "items selected. Uncheck to Clear"
432
475
  msgstr "Elemente ausgewählt. Zum Leeren abwählen"
433
476
 
434
477
  msgid "must start with a letter or ERB."
435
- msgstr "muss mit einem Buchstaben oder ERB beginnen"
478
+ msgstr "muss mit einem Buchstaben oder ERB beginnen."
436
479
 
437
480
  msgid "not required if it's a virtual machine"
438
- msgstr "nicht erforderlich, wenn es sich um eine virtuelle Maschine handelt"
481
+ msgstr "nicht erforderlich für eine virtuelle Maschine"
439
482
 
440
483
  msgid "not required if using a subnet with DHCP proxy"
441
- msgstr "nicht erforderlich, wenn ein Subnetz mit DHCP-Proxy verwendet wird"
484
+ msgstr "nicht erforderlich, falls ein Subnetz mit DHCP-Proxy verwendet wird"
442
485
 
443
486
  msgid "number of entries per request"
444
487
  msgstr "Anzahl der Einträge pro Anfrage"
445
488
 
446
489
  msgid "paginate results"
447
- msgstr "Ergebnisse nummerieren"
490
+ msgstr "Ergebnisse auf mehreren Seiten anzeigen"
448
491
 
449
- msgid "puts the rules in order, low numbers go first. Must be greater then zero"
492
+ msgid ""
493
+ "puts the rules in order, low numbers go first. Must be greater then zero"
450
494
  msgstr ""
451
495
 
452
496
  msgid "query to match discovered hosts for the particular rule"
@@ -455,52 +499,13 @@ msgstr ""
455
499
  msgid "represents rule name shown to the users"
456
500
  msgstr ""
457
501
 
458
- msgid "required if value is not inherited from host group or default password in settings"
459
- msgstr "erforderlich, wenn der Wert nicht von einer Hostgruppe oder einem Standardpasswort in den Einstellungen vererbt ist"
502
+ msgid ""
503
+ "required if value is not inherited from host group or default password in "
504
+ "settings"
505
+ msgstr "erforderlich, falls kein Wert von Hostgruppe geerbt wird oder es nicht das Standardpasswort in Einstellungen ist"
460
506
 
461
507
  msgid "sort results"
462
508
  msgstr "Ergebnisse sortieren"
463
509
 
464
510
  msgid "the hostgroup that is used to auto provision a host"
465
511
  msgstr ""
466
-
467
- #~ msgid "Create a discovered host"
468
- #~ msgstr "Einen entdeckten Host erstellen"
469
-
470
- #~ msgid "Discovered Host Pool"
471
- #~ msgstr "Entdeckter Host-Pool"
472
-
473
- #~ msgid "Discovery rules"
474
- #~ msgstr "Entdeckungsregeln"
475
-
476
- #~ msgid "Discovery widget"
477
- #~ msgstr "Entdeckungs-Widget"
478
-
479
- #~ msgid "Failed to import facts for discovered host"
480
- #~ msgstr "Importieren von Fakten für entdeckten Host fehlgeschlagen"
481
-
482
- #~ msgid "Failed to import facts for discovered host: %s"
483
- #~ msgstr "Importieren von Fakten für entdeckten Host fehlgeschlagen: %s"
484
-
485
- #~ msgid "Imported discovered host"
486
- #~ msgstr "Entdeckter Host importiert"
487
-
488
- #~ msgid "Invalid facts: hash does not contain IP address"
489
- #~ msgstr "Ungültige Fakten: Hash enthält keine IP-Adresse"
490
-
491
- #~ msgid "Invalid facts: hash does not contain the required fact '%s'"
492
- #~ msgstr "Ungültige Fakten: Der Hash enthält den benötigten Fakt nicht: %s"
493
-
494
- #~ msgid "Show fact as an extra column in the discovered hosts list"
495
- #~ msgstr "Fakt als zusätzliche Spalte in der Liste entdeckter Hosts anzeigen"
496
-
497
- #~ msgid "The default fact name to use for the MAC of the system"
498
- #~ msgstr "Der Standard-Faktenname zum Verwenden für die MAC des Systems"
499
-
500
- #~ msgid "Total pool size"
501
- #~ msgid_plural "Total pool size"
502
- #~ msgstr[0] "Gesamt-Pool-Größe"
503
- #~ msgstr[1] "Gesamt-Pool-Größe"
504
-
505
- #~ msgid "hash containing facts for the host"
506
- #~ msgstr "Hash, der Fakten für den Host enthält"