foreman_discovery 9.1.4 → 9.1.5

Sign up to get free protection for your applications and to get access to all the features.
Files changed (50) hide show
  1. checksums.yaml +4 -4
  2. data/db/migrate/20161006094714_add_constraints_on_subnets_smart_proxies.rb +3 -0
  3. data/lib/foreman_discovery/version.rb +1 -1
  4. data/locale/ca/LC_MESSAGES/foreman_discovery.mo +0 -0
  5. data/locale/ca/foreman_discovery.edit.po +1 -1
  6. data/locale/ca/foreman_discovery.po +44 -20
  7. data/locale/de/LC_MESSAGES/foreman_discovery.mo +0 -0
  8. data/locale/de/foreman_discovery.edit.po +2 -2
  9. data/locale/de/foreman_discovery.po +47 -23
  10. data/locale/en/LC_MESSAGES/foreman_discovery.mo +0 -0
  11. data/locale/en/foreman_discovery.edit.po +75 -79
  12. data/locale/en/foreman_discovery.po +4 -1
  13. data/locale/en_GB/LC_MESSAGES/foreman_discovery.mo +0 -0
  14. data/locale/en_GB/foreman_discovery.edit.po +1 -1
  15. data/locale/en_GB/foreman_discovery.po +63 -39
  16. data/locale/es/LC_MESSAGES/foreman_discovery.mo +0 -0
  17. data/locale/es/foreman_discovery.edit.po +2 -2
  18. data/locale/es/foreman_discovery.po +63 -39
  19. data/locale/foreman_discovery.pot +60 -55
  20. data/locale/fr/LC_MESSAGES/foreman_discovery.mo +0 -0
  21. data/locale/fr/foreman_discovery.edit.po +2 -2
  22. data/locale/fr/foreman_discovery.po +45 -21
  23. data/locale/gl/LC_MESSAGES/foreman_discovery.mo +0 -0
  24. data/locale/gl/foreman_discovery.edit.po +1 -1
  25. data/locale/gl/foreman_discovery.po +40 -16
  26. data/locale/it/LC_MESSAGES/foreman_discovery.mo +0 -0
  27. data/locale/it/foreman_discovery.edit.po +2 -2
  28. data/locale/it/foreman_discovery.po +44 -20
  29. data/locale/ja/LC_MESSAGES/foreman_discovery.mo +0 -0
  30. data/locale/ja/foreman_discovery.edit.po +2 -2
  31. data/locale/ja/foreman_discovery.po +53 -29
  32. data/locale/ko/LC_MESSAGES/foreman_discovery.mo +0 -0
  33. data/locale/ko/foreman_discovery.edit.po +2 -2
  34. data/locale/ko/foreman_discovery.po +46 -22
  35. data/locale/pt_BR/LC_MESSAGES/foreman_discovery.mo +0 -0
  36. data/locale/pt_BR/foreman_discovery.edit.po +2 -2
  37. data/locale/pt_BR/foreman_discovery.po +44 -20
  38. data/locale/ru/LC_MESSAGES/foreman_discovery.mo +0 -0
  39. data/locale/ru/foreman_discovery.edit.po +2 -2
  40. data/locale/ru/foreman_discovery.po +44 -20
  41. data/locale/sv_SE/LC_MESSAGES/foreman_discovery.mo +0 -0
  42. data/locale/sv_SE/foreman_discovery.edit.po +1 -1
  43. data/locale/sv_SE/foreman_discovery.po +41 -17
  44. data/locale/zh_CN/LC_MESSAGES/foreman_discovery.mo +0 -0
  45. data/locale/zh_CN/foreman_discovery.edit.po +2 -2
  46. data/locale/zh_CN/foreman_discovery.po +44 -20
  47. data/locale/zh_TW/LC_MESSAGES/foreman_discovery.mo +0 -0
  48. data/locale/zh_TW/foreman_discovery.edit.po +2 -2
  49. data/locale/zh_TW/foreman_discovery.po +46 -22
  50. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 19f06b4e416bd8124f46c469828469628e6e4521
4
- data.tar.gz: 719542f00b5a9f4734d7eddaff9d2fd5440a4b47
3
+ metadata.gz: e877d7c59191394b18cf5904b63054d92df3ce0d
4
+ data.tar.gz: e273a127b52a861f972200ddad15b98741b51a2d
5
5
  SHA512:
6
- metadata.gz: 1710ad760c473aaa029cddf030fbdb5d9ae04777af3fc75945bc2698ef87875ebe110964a8bd6a0b0043c9d864646d6daad65586c12dc89f9fd9562ca36443e2
7
- data.tar.gz: 63bb45ad1bad6a6fc1a70a2b57ba8630ca32a7d0fad7ff9654716cd16e1cfee64eed05bc4ad3433944ed97bc147df63f1d800cb00d750d1f7db74cfd58fa3039
6
+ metadata.gz: a06f1b0fd6e1ed5e5096083fd79e45f41b0d5d795b60c60d6bcd2c56041353bcd44f2e8884e0736f04fee9baf50a876f04104b8a88a839b5a0f5af45cae51ba4
7
+ data.tar.gz: 8fbab2d3cca72e08771cb6aa5e3e116322c724ce9c00d9a9e6fb854b2a1728aa7c6b19ec6e1bb646aaebdefd3824c98decf923489ab639c4e1d1158ef5d24ad0
@@ -7,6 +7,9 @@ class AddConstraintsOnSubnetsSmartProxies < ActiveRecord::Migration
7
7
  ActiveRecord::Migration.execute "SET FOREIGN_KEY_CHECKS=0;"
8
8
  end
9
9
 
10
+ # if there's some wrong key already, clean the foreign key first
11
+ Subnet.unscoped.where(["discovery_id IS NOT NULL AND discovery_id NOT IN (?)", SmartProxy.unscoped.pluck(:id)]).update_all(:discovery_id => nil)
12
+
10
13
  add_foreign_key "subnets", "smart_proxies", :name => "subnets_discovery_id_fk", :column => "discovery_id"
11
14
 
12
15
  # turn on Foreign Key checks in MySQL only
@@ -1,3 +1,3 @@
1
1
  module ForemanDiscovery
2
- VERSION = "9.1.4"
2
+ VERSION = "9.1.5"
3
3
  end
@@ -6,7 +6,7 @@
6
6
  # Robert Antoni Buj Gelonch <rbuj@fedoraproject.org>, 2015-2016
7
7
  msgid ""
8
8
  msgstr ""
9
- "Project-Id-Version: foreman_discovery 9.1.0\n"
9
+ "Project-Id-Version: foreman_discovery 9.1.4\n"
10
10
  "Report-Msgid-Bugs-To: \n"
11
11
  "POT-Creation-Date: 2017-10-17 15:39+0200\n"
12
12
  "PO-Revision-Date: 2017-10-17 23:23+0000\n"
@@ -6,9 +6,9 @@
6
6
  # Robert Antoni Buj Gelonch <rbuj@fedoraproject.org>, 2015-2016
7
7
  msgid ""
8
8
  msgstr ""
9
- "Project-Id-Version: foreman_discovery 9.0.0\n"
9
+ "Project-Id-Version: foreman_discovery 9.1.4\n"
10
10
  "Report-Msgid-Bugs-To: \n"
11
- "PO-Revision-Date: 2017-04-08 10:07+0000\n"
11
+ "PO-Revision-Date: 2017-10-17 23:23+0000\n"
12
12
  "Last-Translator: Lukáš Zapletal\n"
13
13
  "Language-Team: Catalan (http://www.transifex.com/foreman/foreman/language/ca/)"
14
14
  "\n"
@@ -78,6 +78,9 @@ msgstr ""
78
78
  msgid "Could not get facts from proxy %{url}: %{error}"
79
79
  msgstr "No s'han pogut obtenir els objectes d'interès del servidor intermediari %{url}: %{error}"
80
80
 
81
+ msgid "Create Host"
82
+ msgstr ""
83
+
81
84
  msgid "Create Rule"
82
85
  msgstr ""
83
86
 
@@ -87,7 +90,10 @@ msgstr "Crea un amfitrió descobert per a provar-ho (utilitzeu /facts per crear
87
90
  msgid "Create a discovery rule"
88
91
  msgstr "Crea una regla de descobriment"
89
92
 
90
- msgid "Create host"
93
+ msgid "Customize Host"
94
+ msgstr ""
95
+
96
+ msgid "DHCP filename option (Grub2 or PXELinux by default)"
91
97
  msgstr ""
92
98
 
93
99
  msgid "Delete %s?"
@@ -138,6 +144,9 @@ msgstr ""
138
144
  msgid "Discovered hosts summary"
139
145
  msgstr ""
140
146
 
147
+ msgid "Discovery Kexec template"
148
+ msgstr ""
149
+
141
150
  msgid "Discovery Proxy"
142
151
  msgstr ""
143
152
 
@@ -168,9 +177,15 @@ msgstr "Prioritat"
168
177
  msgid "DiscoveryRule|Query"
169
178
  msgstr "Consulta"
170
179
 
180
+ msgid "Disk Count"
181
+ msgstr ""
182
+
171
183
  msgid "Disk count"
172
184
  msgstr "Nombre de discs"
173
185
 
186
+ msgid "Disks Size"
187
+ msgstr ""
188
+
174
189
  msgid "Disks size"
175
190
  msgstr "Mida de disc"
176
191
 
@@ -264,8 +279,8 @@ msgstr "Amfitrió"
264
279
  msgid "Host %{host} was provisioned with rule %{rule}"
265
280
  msgstr "L'amfitrió %{host} va ser aprovisionat amb la regla %{rule}"
266
281
 
267
- msgid "Host group"
268
- msgstr "Grup d'amfitrions"
282
+ msgid "Host Group"
283
+ msgstr ""
269
284
 
270
285
  msgid "Host group location %s must also be associated to the discovery rule"
271
286
  msgid_plural "Host group locations %s must also be associated to the discovery rule"
@@ -295,11 +310,11 @@ msgstr ""
295
310
  msgid "Hosts"
296
311
  msgstr ""
297
312
 
298
- msgid "Hosts limit"
299
- msgstr "Límit d'amfitrions"
313
+ msgid "Hosts Limit"
314
+ msgstr ""
300
315
 
301
- msgid "Hosts/limit"
302
- msgstr "Amfitrions/límit"
316
+ msgid "Hosts/Limit"
317
+ msgstr ""
303
318
 
304
319
  msgid "ID of Discovery Proxy to use within this subnet for managing connection to discovered hosts"
305
320
  msgstr ""
@@ -328,6 +343,9 @@ msgstr ""
328
343
  msgid "In addition to @host attribute function rand for random integers is available. Examples:"
329
344
  msgstr ""
330
345
 
346
+ msgid "Init RAM kexec URL is invalid: '%s'"
347
+ msgstr ""
348
+
331
349
  msgid "Interface fact"
332
350
  msgstr ""
333
351
 
@@ -343,11 +361,17 @@ msgstr ""
343
361
  msgid "Invalid hostname: Could not normalize the hostname"
344
362
  msgstr ""
345
363
 
364
+ msgid "Kernel kexec URL is invalid: '%s'"
365
+ msgstr ""
366
+
346
367
  msgid "Kexec template not associated with operating system"
347
368
  msgstr ""
348
369
 
349
- msgid "Last facts upload"
350
- msgstr "Última pujada dels objectes d'interès"
370
+ msgid "Last Facts Upload"
371
+ msgstr ""
372
+
373
+ msgid "Learn more about this in the documentation."
374
+ msgstr ""
351
375
 
352
376
  msgid "List all discovered hosts"
353
377
  msgstr "Llista tots els amfitrions descoberts"
@@ -421,6 +445,9 @@ msgstr ""
421
445
  msgid "No discovered hosts for the selected period"
422
446
  msgstr ""
423
447
 
448
+ msgid "No discovered hosts found in this context."
449
+ msgstr ""
450
+
424
451
  msgid "No discovered hosts to provision"
425
452
  msgstr "Sense amfitrions descoberts per aprovisionar"
426
453
 
@@ -472,12 +499,12 @@ msgstr "Primària"
472
499
  msgid "Provision"
473
500
  msgstr "Aprovisiona"
474
501
 
502
+ msgid "Provision %s"
503
+ msgstr ""
504
+
475
505
  msgid "Provision a discovered host"
476
506
  msgstr "Aprovisiona un amfitrió descobert"
477
507
 
478
- msgid "Quick create"
479
- msgstr ""
480
-
481
508
  msgid "Reboot"
482
509
  msgstr "Reinicia"
483
510
 
@@ -544,9 +571,6 @@ msgstr "Selecciona l'acció"
544
571
  msgid "Select all items in this page"
545
572
  msgstr "Selecciona tots els ítems en aquesta pàgina"
546
573
 
547
- msgid "Select initial host properties"
548
- msgstr ""
549
-
550
574
  msgid "Select location"
551
575
  msgstr "Selecciona la ubicació"
552
576
 
@@ -610,6 +634,9 @@ msgstr ""
610
634
  msgid "This might take a while, as all hosts, facts and reports will be destroyed as well"
611
635
  msgstr ""
612
636
 
637
+ msgid "This page shows discovered bare-metal or virtual nodes waiting to be provisioned."
638
+ msgstr ""
639
+
613
640
  msgid "Type"
614
641
  msgstr ""
615
642
 
@@ -640,9 +667,6 @@ msgstr "Actualitza una regla"
640
667
  msgid "Upload facts for a host, creating the host if required"
641
668
  msgstr "Puja els objectes d'interès per a un amfitrió, creant el nou amfitrió si fos necessari"
642
669
 
643
- msgid "Warning"
644
- msgstr "Advertència"
645
-
646
670
  msgid "When creating hostname patterns, make sure the resulting host names are unique."
647
671
  msgstr ""
648
672
 
@@ -12,10 +12,10 @@
12
12
  # stbenjam <stephen@redhat.com>, 2016
13
13
  msgid ""
14
14
  msgstr ""
15
- "Project-Id-Version: foreman_discovery 9.1.0\n"
15
+ "Project-Id-Version: foreman_discovery 9.1.4\n"
16
16
  "Report-Msgid-Bugs-To: \n"
17
17
  "POT-Creation-Date: 2017-10-17 15:39+0200\n"
18
- "PO-Revision-Date: 2017-10-17 23:23+0000\n"
18
+ "PO-Revision-Date: 2017-10-20 17:18+0000\n"
19
19
  "Last-Translator: Lukáš Zapletal\n"
20
20
  "Language-Team: German (http://www.transifex.com/foreman/foreman/language/de/)\n"
21
21
  "MIME-Version: 1.0\n"
@@ -12,9 +12,9 @@
12
12
  # stbenjam <stephen@redhat.com>, 2016
13
13
  msgid ""
14
14
  msgstr ""
15
- "Project-Id-Version: foreman_discovery 9.0.0\n"
15
+ "Project-Id-Version: foreman_discovery 9.1.4\n"
16
16
  "Report-Msgid-Bugs-To: \n"
17
- "PO-Revision-Date: 2017-04-08 10:07+0000\n"
17
+ "PO-Revision-Date: 2017-10-20 17:18+0000\n"
18
18
  "Last-Translator: Lukáš Zapletal\n"
19
19
  "Language-Team: German (http://www.transifex.com/foreman/foreman/language/de/)\n"
20
20
  "MIME-Version: 1.0\n"
@@ -83,17 +83,23 @@ msgstr "Alle berichteten Fakten während der Bereitstellung löschen (ausgenomme
83
83
  msgid "Could not get facts from proxy %{url}: %{error}"
84
84
  msgstr "Fakten konnten nicht vom Proxy %{url} abgerufen werden: %{error}"
85
85
 
86
- msgid "Create Rule"
86
+ msgid "Create Host"
87
87
  msgstr ""
88
88
 
89
+ msgid "Create Rule"
90
+ msgstr "Regel erstellen"
91
+
89
92
  msgid "Create a discovered host for testing (use /facts to create new hosts)"
90
93
  msgstr "Entdeckten Host zum Testen erstellen (verwenden Sie /Fakten zur Erstellung neuer Hosts)"
91
94
 
92
95
  msgid "Create a discovery rule"
93
96
  msgstr "Entdeckungsregel erstellen"
94
97
 
95
- msgid "Create host"
96
- msgstr "Host erstellen"
98
+ msgid "Customize Host"
99
+ msgstr ""
100
+
101
+ msgid "DHCP filename option (Grub2 or PXELinux by default)"
102
+ msgstr ""
97
103
 
98
104
  msgid "Delete %s?"
99
105
  msgstr "%s löschen?"
@@ -114,7 +120,7 @@ msgid "Destroyed selected hosts"
114
120
  msgstr "Ausgewählte Hosts gelöscht"
115
121
 
116
122
  msgid "Details"
117
- msgstr ""
123
+ msgstr "Details"
118
124
 
119
125
  msgid "Disable"
120
126
  msgstr "Deaktivieren"
@@ -143,6 +149,9 @@ msgstr "Vom Foreman-Server unter %{foreman_url} entdeckte Hosts"
143
149
  msgid "Discovered hosts summary"
144
150
  msgstr "Zusammenfassung entdeckter Hosts"
145
151
 
152
+ msgid "Discovery Kexec template"
153
+ msgstr ""
154
+
146
155
  msgid "Discovery Proxy"
147
156
  msgstr ""
148
157
 
@@ -173,9 +182,15 @@ msgstr "Priorität"
173
182
  msgid "DiscoveryRule|Query"
174
183
  msgstr "Abfrage"
175
184
 
185
+ msgid "Disk Count"
186
+ msgstr ""
187
+
176
188
  msgid "Disk count"
177
189
  msgstr "Festplattenanzahl"
178
190
 
191
+ msgid "Disks Size"
192
+ msgstr ""
193
+
179
194
  msgid "Disks size"
180
195
  msgstr "Festplattengröße"
181
196
 
@@ -269,8 +284,8 @@ msgstr "Host"
269
284
  msgid "Host %{host} was provisioned with rule %{rule}"
270
285
  msgstr "Host %{host} wurde bereitgestellt mit Regel %{rule}"
271
286
 
272
- msgid "Host group"
273
- msgstr "Hostgruppe"
287
+ msgid "Host Group"
288
+ msgstr ""
274
289
 
275
290
  msgid "Host group location %s must also be associated to the discovery rule"
276
291
  msgid_plural "Host group locations %s must also be associated to the discovery rule"
@@ -300,11 +315,11 @@ msgstr ""
300
315
  msgid "Hosts"
301
316
  msgstr ""
302
317
 
303
- msgid "Hosts limit"
304
- msgstr "Hostgrenze"
318
+ msgid "Hosts Limit"
319
+ msgstr ""
305
320
 
306
- msgid "Hosts/limit"
307
- msgstr "Hosts/Grenze"
321
+ msgid "Hosts/Limit"
322
+ msgstr ""
308
323
 
309
324
  msgid "ID of Discovery Proxy to use within this subnet for managing connection to discovered hosts"
310
325
  msgstr ""
@@ -333,6 +348,9 @@ msgstr "Image API gibt HTTP/%{code} mit '%{body} zurück"
333
348
  msgid "In addition to @host attribute function rand for random integers is available. Examples:"
334
349
  msgstr ""
335
350
 
351
+ msgid "Init RAM kexec URL is invalid: '%s'"
352
+ msgstr ""
353
+
336
354
  msgid "Interface fact"
337
355
  msgstr "Schnittstellenfakt"
338
356
 
@@ -348,11 +366,17 @@ msgstr ""
348
366
  msgid "Invalid hostname: Could not normalize the hostname"
349
367
  msgstr "Ungültiger Hostname: Konnte den Hostnamen nicht normalisieren"
350
368
 
369
+ msgid "Kernel kexec URL is invalid: '%s'"
370
+ msgstr ""
371
+
351
372
  msgid "Kexec template not associated with operating system"
352
373
  msgstr "Kexec Vorlage ist nicht dem Betriebssystem zugeordnet"
353
374
 
354
- msgid "Last facts upload"
355
- msgstr "Letzter Fakten-Upload"
375
+ msgid "Last Facts Upload"
376
+ msgstr ""
377
+
378
+ msgid "Learn more about this in the documentation."
379
+ msgstr ""
356
380
 
357
381
  msgid "List all discovered hosts"
358
382
  msgstr "Alle entdeckten Hosts auflisten"
@@ -426,6 +450,9 @@ msgstr "Keine entdeckten Hosts verfügbar"
426
450
  msgid "No discovered hosts for the selected period"
427
451
  msgstr "Keine entdeckten Hosts für den ausgewählten Zeitraum"
428
452
 
453
+ msgid "No discovered hosts found in this context."
454
+ msgstr ""
455
+
429
456
  msgid "No discovered hosts to provision"
430
457
  msgstr "Keine entdeckten Hosts zur Bereitstellung"
431
458
 
@@ -477,12 +504,12 @@ msgstr "Primär"
477
504
  msgid "Provision"
478
505
  msgstr "Bereitstellen"
479
506
 
507
+ msgid "Provision %s"
508
+ msgstr ""
509
+
480
510
  msgid "Provision a discovered host"
481
511
  msgstr "Entdeckten Host bereitstellen"
482
512
 
483
- msgid "Quick create"
484
- msgstr "Schnell erstellen"
485
-
486
513
  msgid "Reboot"
487
514
  msgstr "Neustart"
488
515
 
@@ -549,9 +576,6 @@ msgstr "Aktion auswählen"
549
576
  msgid "Select all items in this page"
550
577
  msgstr "Alle Elemente auf dieser Seite auswählen"
551
578
 
552
- msgid "Select initial host properties"
553
- msgstr "Initiale Hosteigenschaften auswählen"
554
-
555
579
  msgid "Select location"
556
580
  msgstr "Standort auswählen"
557
581
 
@@ -615,6 +639,9 @@ msgstr "Die folgenden Hosts wurden nicht gelöscht: %s"
615
639
  msgid "This might take a while, as all hosts, facts and reports will be destroyed as well"
616
640
  msgstr "Dieser Vorgang kann eine Weile dauern, da alle Hosts, Fakten und Berichte ebenfalls gelöscht werden"
617
641
 
642
+ msgid "This page shows discovered bare-metal or virtual nodes waiting to be provisioned."
643
+ msgstr ""
644
+
618
645
  msgid "Type"
619
646
  msgstr "Typ"
620
647
 
@@ -645,9 +672,6 @@ msgstr "Regel aktualisieren"
645
672
  msgid "Upload facts for a host, creating the host if required"
646
673
  msgstr "Fakten für Host aktualisiert, Host wird erstellt falls erforderlich"
647
674
 
648
- msgid "Warning"
649
- msgstr "Warnung"
650
-
651
675
  msgid "When creating hostname patterns, make sure the resulting host names are unique."
652
676
  msgstr ""
653
677
 
@@ -2,7 +2,7 @@
2
2
  # This file is distributed under the same license as the foreman_discovery package.
3
3
  msgid ""
4
4
  msgstr ""
5
- "Project-Id-Version: foreman_discovery 9.1.0\n"
5
+ "Project-Id-Version: foreman_discovery 9.1.4\n"
6
6
  "Report-Msgid-Bugs-To: foreman-dev@googlegroups.com\n"
7
7
  "PO-Revision-Date: 2015-12-27 01:18+0000\n"
8
8
  "Last-Translator: \n"
@@ -76,51 +76,51 @@ msgstr ""
76
76
  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)"
77
77
  msgstr ""
78
78
 
79
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:117
79
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:116
80
80
  msgid "Execute rules against a discovered host"
81
81
  msgstr ""
82
82
 
83
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:123 ../app/controllers/discovered_hosts_controller.rb:152
83
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:122 ../app/controllers/discovered_hosts_controller.rb:163
84
84
  msgid "Host %{host} was provisioned with rule %{rule}"
85
85
  msgstr ""
86
86
 
87
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:126
87
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:125
88
88
  msgid "Unable to provision %{host}: %{errors}"
89
89
  msgstr ""
90
90
 
91
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:132 ../app/controllers/discovered_hosts_controller.rb:159
91
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:131 ../app/controllers/discovered_hosts_controller.rb:170
92
92
  msgid "No rule found for host %s"
93
93
  msgstr ""
94
94
 
95
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:139
95
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:138
96
96
  msgid "Execute rules against all currently discovered hosts"
97
97
  msgstr ""
98
98
 
99
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:143 ../app/controllers/discovered_hosts_controller.rb:165
99
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:142 ../app/controllers/discovered_hosts_controller.rb:176
100
100
  msgid "Errors during auto provisioning: %s"
101
101
  msgstr ""
102
102
 
103
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:146 ../app/controllers/discovered_hosts_controller.rb:168
103
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:145 ../app/controllers/discovered_hosts_controller.rb:179
104
104
  msgid "No discovered hosts to provision"
105
105
  msgstr ""
106
106
 
107
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:168
107
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:167
108
108
  msgid "%s discovered hosts were provisioned"
109
109
  msgstr ""
110
110
 
111
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:179
111
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:178
112
112
  msgid "Refreshing the facts of a discovered host"
113
113
  msgstr ""
114
114
 
115
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:188
115
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:187
116
116
  msgid "Rebooting a discovered host"
117
117
  msgstr ""
118
118
 
119
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:197
119
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:196
120
120
  msgid "Rebooting all discovered hosts"
121
121
  msgstr ""
122
122
 
123
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:208 ../app/controllers/discovered_hosts_controller.rb:125
123
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:207 ../app/controllers/discovered_hosts_controller.rb:121
124
124
  msgid "Discovered hosts are rebooting now"
125
125
  msgstr ""
126
126
 
@@ -192,95 +192,95 @@ msgstr ""
192
192
  msgid "No discovered hosts to reboot"
193
193
  msgstr ""
194
194
 
195
- #: ../app/controllers/discovered_hosts_controller.rb:61
195
+ #: ../app/controllers/discovered_hosts_controller.rb:57
196
196
  msgid "Successfully provisioned %s"
197
197
  msgstr ""
198
198
 
199
- #: ../app/controllers/discovered_hosts_controller.rb:93
199
+ #: ../app/controllers/discovered_hosts_controller.rb:89
200
200
  msgid "Facts refreshed for %s"
201
201
  msgstr ""
202
202
 
203
- #: ../app/controllers/discovered_hosts_controller.rb:95
203
+ #: ../app/controllers/discovered_hosts_controller.rb:91
204
204
  msgid "Failed to refresh facts for %s"
205
205
  msgstr ""
206
206
 
207
- #: ../app/controllers/discovered_hosts_controller.rb:98
207
+ #: ../app/controllers/discovered_hosts_controller.rb:94
208
208
  msgid "Failed to refresh facts for %{hostname} with error %{error_message}"
209
209
  msgstr ""
210
210
 
211
- #: ../app/controllers/discovered_hosts_controller.rb:105
211
+ #: ../app/controllers/discovered_hosts_controller.rb:101
212
212
  msgid "Host of type %s can not be rebooted"
213
213
  msgstr ""
214
214
 
215
- #: ../app/controllers/discovered_hosts_controller.rb:109
215
+ #: ../app/controllers/discovered_hosts_controller.rb:105
216
216
  msgid "Rebooting host %s"
217
217
  msgstr ""
218
218
 
219
- #: ../app/controllers/discovered_hosts_controller.rb:111
219
+ #: ../app/controllers/discovered_hosts_controller.rb:107
220
220
  msgid "Failed to reboot host %s"
221
221
  msgstr ""
222
222
 
223
- #: ../app/controllers/discovered_hosts_controller.rb:114
223
+ #: ../app/controllers/discovered_hosts_controller.rb:110
224
224
  msgid "Failed to reboot host %{hostname} with error %{error_message}"
225
225
  msgstr ""
226
226
 
227
- #: ../app/controllers/discovered_hosts_controller.rb:128
227
+ #: ../app/controllers/discovered_hosts_controller.rb:124
228
228
  msgid "Failed to reboot hosts with error %s"
229
229
  msgstr ""
230
230
 
231
- #: ../app/controllers/discovered_hosts_controller.rb:142
231
+ #: ../app/controllers/discovered_hosts_controller.rb:138
232
232
  msgid "Destroyed selected hosts"
233
233
  msgstr ""
234
234
 
235
- #: ../app/controllers/discovered_hosts_controller.rb:144
235
+ #: ../app/controllers/discovered_hosts_controller.rb:140
236
236
  msgid "The following hosts were not deleted: %s"
237
237
  msgstr ""
238
238
 
239
- #: ../app/controllers/discovered_hosts_controller.rb:156
239
+ #: ../app/controllers/discovered_hosts_controller.rb:167
240
240
  msgid "Failed to auto provision host %s: %s"
241
241
  msgstr ""
242
242
 
243
- #: ../app/controllers/discovered_hosts_controller.rb:184
243
+ #: ../app/controllers/discovered_hosts_controller.rb:195
244
244
  msgid "Discovered hosts are provisioning now"
245
245
  msgstr ""
246
246
 
247
- #: ../app/controllers/discovered_hosts_controller.rb:213
247
+ #: ../app/controllers/discovered_hosts_controller.rb:224
248
248
  msgid "Highlights"
249
249
  msgstr ""
250
250
 
251
- #: ../app/controllers/discovered_hosts_controller.rb:213
251
+ #: ../app/controllers/discovered_hosts_controller.rb:224
252
252
  msgid "Storage"
253
253
  msgstr ""
254
254
 
255
- #: ../app/controllers/discovered_hosts_controller.rb:213
255
+ #: ../app/controllers/discovered_hosts_controller.rb:224
256
256
  msgid "Hardware"
257
257
  msgstr ""
258
258
 
259
- #: ../app/controllers/discovered_hosts_controller.rb:213
259
+ #: ../app/controllers/discovered_hosts_controller.rb:224
260
260
  msgid "Network"
261
261
  msgstr ""
262
262
 
263
- #: ../app/controllers/discovered_hosts_controller.rb:213
263
+ #: ../app/controllers/discovered_hosts_controller.rb:224
264
264
  msgid "Software"
265
265
  msgstr ""
266
266
 
267
- #: ../app/controllers/discovered_hosts_controller.rb:213
267
+ #: ../app/controllers/discovered_hosts_controller.rb:224
268
268
  msgid "IPMI"
269
269
  msgstr ""
270
270
 
271
- #: ../app/controllers/discovered_hosts_controller.rb:213
271
+ #: ../app/controllers/discovered_hosts_controller.rb:224
272
272
  msgid "Miscellaneous"
273
273
  msgstr ""
274
274
 
275
- #: ../app/controllers/discovered_hosts_controller.rb:290
275
+ #: ../app/controllers/discovered_hosts_controller.rb:301
276
276
  msgid "No hosts were found with that id or name"
277
277
  msgstr ""
278
278
 
279
- #: ../app/controllers/discovered_hosts_controller.rb:294
279
+ #: ../app/controllers/discovered_hosts_controller.rb:305
280
280
  msgid "No hosts selected"
281
281
  msgstr ""
282
282
 
283
- #: ../app/controllers/discovered_hosts_controller.rb:300
283
+ #: ../app/controllers/discovered_hosts_controller.rb:311
284
284
  msgid "Something went wrong while selecting hosts - %s"
285
285
  msgstr ""
286
286
 
@@ -312,7 +312,7 @@ msgstr ""
312
312
  msgid "Back"
313
313
  msgstr ""
314
314
 
315
- #: ../app/helpers/discovered_hosts_helper.rb:21 ../app/helpers/discovered_hosts_helper.rb:37
315
+ #: ../app/helpers/discovered_hosts_helper.rb:21 ../app/helpers/discovered_hosts_helper.rb:38
316
316
  msgid "Select Action"
317
317
  msgstr ""
318
318
 
@@ -320,47 +320,47 @@ msgstr ""
320
320
  msgid "Expand All"
321
321
  msgstr ""
322
322
 
323
- #: ../app/helpers/discovered_hosts_helper.rb:27 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:49
323
+ #: ../app/helpers/discovered_hosts_helper.rb:28 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:49
324
324
  msgid "Delete %s?"
325
325
  msgstr ""
326
326
 
327
- #: ../app/helpers/discovered_hosts_helper.rb:33
327
+ #: ../app/helpers/discovered_hosts_helper.rb:34
328
328
  msgid "Delete hosts"
329
329
  msgstr ""
330
330
 
331
- #: ../app/helpers/discovered_hosts_helper.rb:34
331
+ #: ../app/helpers/discovered_hosts_helper.rb:35
332
332
  msgid "Assign Organization"
333
333
  msgstr ""
334
334
 
335
- #: ../app/helpers/discovered_hosts_helper.rb:35
335
+ #: ../app/helpers/discovered_hosts_helper.rb:36
336
336
  msgid "Assign Location"
337
337
  msgstr ""
338
338
 
339
- #: ../app/helpers/discovered_hosts_helper.rb:39
339
+ #: ../app/helpers/discovered_hosts_helper.rb:40
340
340
  msgid "%s - The following hosts are about to be changed"
341
341
  msgstr ""
342
342
 
343
- #: ../app/helpers/discovered_hosts_helper.rb:48 ../app/views/dashboard/_discovery_widget_host.html.erb:2
343
+ #: ../app/helpers/discovered_hosts_helper.rb:49 ../app/views/dashboard/_discovery_widget_host.html.erb:2
344
344
  msgid "N/A"
345
345
  msgstr ""
346
346
 
347
- #: ../app/helpers/discovered_hosts_helper.rb:60
347
+ #: ../app/helpers/discovered_hosts_helper.rb:61
348
348
  msgid "New in the last 24 hours"
349
349
  msgstr ""
350
350
 
351
- #: ../app/helpers/discovered_hosts_helper.rb:64
351
+ #: ../app/helpers/discovered_hosts_helper.rb:65
352
352
  msgid "Not reported in more than 7 days"
353
353
  msgstr ""
354
354
 
355
- #: ../app/helpers/discovered_hosts_helper.rb:68
355
+ #: ../app/helpers/discovered_hosts_helper.rb:69
356
356
  msgid "Reported in the last 7 days"
357
357
  msgstr ""
358
358
 
359
- #: ../app/helpers/discovered_hosts_helper.rb:92
359
+ #: ../app/helpers/discovered_hosts_helper.rb:93
360
360
  msgid "Provision"
361
361
  msgstr ""
362
362
 
363
- #: ../app/helpers/discovery_rules_helper.rb:26 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:2 ../app/views/discovered_hosts/welcome.html.erb:1 ../app/views/discovered_hosts/welcome.html.erb:6 ../lib/foreman_discovery/engine.rb:166
363
+ #: ../app/helpers/discovery_rules_helper.rb:26 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:2 ../lib/foreman_discovery/engine.rb:165
364
364
  msgid "Discovered Hosts"
365
365
  msgstr ""
366
366
 
@@ -432,43 +432,43 @@ msgstr ""
432
432
  msgid "Facts could not be imported"
433
433
  msgstr ""
434
434
 
435
- #: ../app/models/host/discovered.rb:133
435
+ #: ../app/models/host/discovered.rb:118
436
436
  msgid "Unable to assign subnet, primary interface is missing IP address"
437
437
  msgstr ""
438
438
 
439
- #: ../app/models/host/discovered.rb:190
439
+ #: ../app/models/host/discovered.rb:176
440
440
  msgid "Could not get facts from proxy %{url}: %{error}"
441
441
  msgstr ""
442
442
 
443
- #: ../app/models/host/discovered.rb:198
443
+ #: ../app/models/host/discovered.rb:192
444
444
  msgid "Unable to reboot %{name} via %{url}: %{msg}"
445
445
  msgstr ""
446
446
 
447
- #: ../app/models/host/discovered.rb:206
447
+ #: ../app/models/host/discovered.rb:200
448
448
  msgid "Unable to perform kexec on %{name} via %{url}: %{msg}"
449
449
  msgstr ""
450
450
 
451
- #: ../app/models/host/discovered.rb:225
451
+ #: ../app/models/host/discovered.rb:219
452
452
  msgid "Invalid hostname: Could not normalize the hostname"
453
453
  msgstr ""
454
454
 
455
- #: ../app/models/host/managed_extensions.rb:20
455
+ #: ../app/models/host/managed_extensions.rb:23
456
456
  msgid "Reloading kernel on %s"
457
457
  msgstr ""
458
458
 
459
- #: ../app/models/host/managed_extensions.rb:22
459
+ #: ../app/models/host/managed_extensions.rb:25
460
460
  msgid "Rebooting %s"
461
461
  msgstr ""
462
462
 
463
- #: ../app/models/host/managed_extensions.rb:43
463
+ #: ../app/models/host/managed_extensions.rb:46
464
464
  msgid "Kexec template not associated with operating system"
465
465
  msgstr ""
466
466
 
467
- #: ../app/models/host/managed_extensions.rb:48
467
+ #: ../app/models/host/managed_extensions.rb:51
468
468
  msgid "Kernel kexec URL is invalid: '%s'"
469
469
  msgstr ""
470
470
 
471
- #: ../app/models/host/managed_extensions.rb:49
471
+ #: ../app/models/host/managed_extensions.rb:52
472
472
  msgid "Init RAM kexec URL is invalid: '%s'"
473
473
  msgstr ""
474
474
 
@@ -664,11 +664,15 @@ msgstr ""
664
664
  msgid "Memory"
665
665
  msgstr ""
666
666
 
667
- #: ../app/views/discovered_hosts/_discovered_host_modal.html.erb:23
668
- msgid "Customize Host"
667
+ #: ../app/views/discovered_hosts/_discovered_host_modal.html.erb:7
668
+ msgid "Select initial host properties"
669
669
  msgstr ""
670
670
 
671
671
  #: ../app/views/discovered_hosts/_discovered_host_modal.html.erb:24
672
+ msgid "Quick Create"
673
+ msgstr ""
674
+
675
+ #: ../app/views/discovered_hosts/_discovered_host_modal.html.erb:25
672
676
  msgid "Create Host"
673
677
  msgstr ""
674
678
 
@@ -736,7 +740,11 @@ msgstr ""
736
740
  msgid "Auto Provision All"
737
741
  msgstr ""
738
742
 
739
- #: ../app/views/discovered_hosts/multiple_destroy.html.erb:3
743
+ #: ../app/views/discovered_hosts/multiple_destroy.html.erb:4
744
+ msgid "Warning"
745
+ msgstr ""
746
+
747
+ #: ../app/views/discovered_hosts/multiple_destroy.html.erb:5
740
748
  msgid "This might take a while, as all hosts, facts and reports will be destroyed as well"
741
749
  msgstr ""
742
750
 
@@ -772,18 +780,6 @@ msgstr ""
772
780
  msgid "IP address"
773
781
  msgstr ""
774
782
 
775
- #: ../app/views/discovered_hosts/welcome.html.erb:7
776
- msgid "No discovered hosts found in this context."
777
- msgstr ""
778
-
779
- #: ../app/views/discovered_hosts/welcome.html.erb:8
780
- msgid "This page shows discovered bare-metal or virtual nodes waiting to be provisioned."
781
- msgstr ""
782
-
783
- #: ../app/views/discovered_hosts/welcome.html.erb:9
784
- msgid "Learn more about this in the documentation."
785
- msgstr ""
786
-
787
783
  #: ../app/views/discovered_mailer/discovered_summary.html.erb:6
788
784
  msgid "Summary report for discovered hosts from Foreman"
789
785
  msgstr ""
@@ -928,26 +924,26 @@ msgstr ""
928
924
  msgid "Details"
929
925
  msgstr ""
930
926
 
931
- #: ../lib/foreman_discovery/engine.rb:151
927
+ #: ../lib/foreman_discovery/engine.rb:150
932
928
  msgid "Discovered hosts"
933
929
  msgstr ""
934
930
 
935
- #: ../lib/foreman_discovery/engine.rb:156
931
+ #: ../lib/foreman_discovery/engine.rb:155
936
932
  msgid "Discovery rules"
937
933
  msgstr ""
938
934
 
939
- #: ../lib/foreman_discovery/engine.rb:172
935
+ #: ../lib/foreman_discovery/engine.rb:171
940
936
  msgid "Discovery Kexec template"
941
937
  msgstr ""
942
938
 
943
- #: ../lib/foreman_discovery/engine.rb:181
939
+ #: ../lib/foreman_discovery/engine.rb:180
944
940
  msgid "Discovery Proxy"
945
941
  msgstr ""
946
942
 
947
- #: ../lib/foreman_discovery/engine.rb:182
943
+ #: ../lib/foreman_discovery/engine.rb:181
948
944
  msgid "Discovery Proxy to use within this subnet for managing connection to discovered hosts"
949
945
  msgstr ""
950
946
 
951
- #: ../lib/foreman_discovery/engine.rb:183
947
+ #: ../lib/foreman_discovery/engine.rb:182
952
948
  msgid "ID of Discovery Proxy to use within this subnet for managing connection to discovered hosts"
953
949
  msgstr ""