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.
- checksums.yaml +4 -4
- data/app/models/host/discovered.rb +1 -2
- data/app/models/host/managed_extensions.rb +1 -0
- data/app/services/foreman_discovery/host_converter.rb +1 -1
- data/app/services/foreman_discovery/node_api/inventory.rb +11 -0
- data/app/views/foreman_discovery/redhat_kexec.erb +2 -2
- data/extra/generate-authors-file +2 -0
- data/lib/foreman_discovery/engine.rb +7 -0
- data/lib/foreman_discovery/version.rb +1 -1
- data/locale/de/LC_MESSAGES/foreman_discovery.mo +0 -0
- data/locale/de/foreman_discovery.po +125 -120
- data/locale/en_GB/LC_MESSAGES/foreman_discovery.mo +0 -0
- data/locale/en_GB/foreman_discovery.po +69 -64
- data/locale/es/LC_MESSAGES/foreman_discovery.mo +0 -0
- data/locale/es/foreman_discovery.po +167 -163
- data/locale/foreman_discovery.pot +21 -3
- data/locale/fr/LC_MESSAGES/foreman_discovery.mo +0 -0
- data/locale/fr/foreman_discovery.po +157 -153
- data/locale/gl/LC_MESSAGES/foreman_discovery.mo +0 -0
- data/locale/gl/foreman_discovery.po +68 -23
- data/locale/it/LC_MESSAGES/foreman_discovery.mo +0 -0
- data/locale/it/foreman_discovery.po +136 -96
- data/locale/ja/LC_MESSAGES/foreman_discovery.mo +0 -0
- data/locale/ja/foreman_discovery.po +119 -105
- data/locale/ko/LC_MESSAGES/foreman_discovery.mo +0 -0
- data/locale/ko/foreman_discovery.po +141 -102
- data/locale/messages.mo +0 -0
- data/locale/pt_BR/LC_MESSAGES/foreman_discovery.mo +0 -0
- data/locale/pt_BR/foreman_discovery.po +162 -122
- data/locale/ru/LC_MESSAGES/foreman_discovery.mo +0 -0
- data/locale/ru/foreman_discovery.po +135 -132
- data/locale/sv_SE/LC_MESSAGES/foreman_discovery.mo +0 -0
- data/locale/sv_SE/foreman_discovery.po +70 -27
- data/locale/zh_CN/LC_MESSAGES/foreman_discovery.mo +0 -0
- data/locale/zh_CN/foreman_discovery.po +134 -95
- data/locale/zh_TW/LC_MESSAGES/foreman_discovery.mo +0 -0
- data/locale/zh_TW/foreman_discovery.po +133 -94
- data/test/unit/host_discovered_test.rb +1 -1
- metadata +41 -4
- 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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3fda22f5edb3e97875c15d398febdd5023950166
|
4
|
+
data.tar.gz: bd644761a152e7abe6a7dea83f6a4e964b9d665f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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
|
-
|
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}
|
@@ -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(
|
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)
|
@@ -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
|
}
|
@@ -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
|
Binary file
|
@@ -1,35 +1,39 @@
|
|
1
1
|
# SOME DESCRIPTIVE TITLE.
|
2
|
-
# Copyright (C)
|
3
|
-
# This file is distributed under the same license as the
|
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
|
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-
|
16
|
-
"PO-Revision-Date: 2015-
|
17
|
-
"Last-Translator:
|
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
|
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 "
|
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 "
|
45
|
+
msgstr "Automatisch bereitstellen"
|
42
46
|
|
43
47
|
msgid "Auto Provision All"
|
44
48
|
msgstr "Alle automatisch bereitstellen"
|
45
49
|
|
46
|
-
msgid "
|
47
|
-
|
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 "
|
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 "
|
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 "
|
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
|
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 "
|
125
|
-
|
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
|
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 "
|
152
|
+
msgstr "Regeln auf einem entdeckten Host anwenden"
|
144
153
|
|
145
154
|
msgid "Execute rules against all currently discovered hosts"
|
146
|
-
msgstr "
|
155
|
+
msgstr "Regeln auf allen kürzlich entdeckten Hosts anwenden"
|
147
156
|
|
148
|
-
msgid "
|
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
|
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
|
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}
|
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
|
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}
|
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 "
|
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 "
|
193
|
-
|
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 "
|
218
|
+
msgstr "Hostgrenze"
|
205
219
|
|
206
220
|
msgid "Hosts/limit"
|
207
|
-
msgstr "Hosts/
|
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 "
|
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 "
|
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
|
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 "
|
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 "
|
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 "
|
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 "
|
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 "
|
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 (
|
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 "
|
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 "
|
368
|
+
msgstr "Entdeckten Host anzeigen"
|
346
369
|
|
347
370
|
msgid "Show a discovery rule"
|
348
|
-
msgstr "
|
371
|
+
msgstr "Entdeckungsregel anzeigen"
|
349
372
|
|
350
373
|
msgid "Something went wrong while selecting hosts - %s"
|
351
|
-
msgstr "
|
374
|
+
msgstr "Fehler beim Auswählen der Hosts – %s"
|
352
375
|
|
353
|
-
msgid "
|
354
|
-
|
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
|
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-
|
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
|
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
|
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
|
403
|
+
msgstr "Die folgenden Hosts wurden nicht gelöscht: %s"
|
379
404
|
|
380
|
-
msgid "
|
381
|
-
|
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 "
|
384
|
-
|
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 "
|
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
|
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
|
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 "
|
411
|
-
|
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 "
|
453
|
+
msgstr "darf keine Leerzeichen enthalten."
|
415
454
|
|
416
|
-
msgid "
|
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 "
|
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
|
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,
|
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
|
490
|
+
msgstr "Ergebnisse auf mehreren Seiten anzeigen"
|
448
491
|
|
449
|
-
msgid "
|
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 "
|
459
|
-
|
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"
|