foreman_discovery 15.0.2 → 16.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (85) hide show
  1. checksums.yaml +4 -4
  2. data/app/controllers/api/v2/discovery_rules_controller.rb +1 -1
  3. data/app/controllers/concerns/foreman/controller/discovered_extensions.rb +4 -0
  4. data/app/controllers/discovered_hosts_controller.rb +6 -3
  5. data/app/controllers/discovery_rules_controller.rb +1 -1
  6. data/app/models/discovery_rule.rb +1 -1
  7. data/app/models/host/discovered.rb +49 -31
  8. data/app/models/host/managed_extensions.rb +2 -2
  9. data/app/models/setting/discovered.rb +28 -33
  10. data/app/services/foreman_discovery/fact_parser.rb +1 -1
  11. data/app/services/foreman_discovery/host_converter.rb +38 -2
  12. data/app/services/foreman_discovery/host_fact_importer.rb +10 -0
  13. data/app/services/foreman_discovery/import_hooks/subnet_and_taxonomy.rb +6 -14
  14. data/app/services/foreman_discovery/node_api/node_resource.rb +1 -0
  15. data/app/services/foreman_discovery/subnet_suggestion.rb +26 -0
  16. data/app/views/foreman_discovery/debian_kexec.erb +3 -2
  17. data/app/views/foreman_discovery/redhat_kexec.erb +2 -1
  18. data/config/routes.rb +2 -0
  19. data/db/migrate/20150512150432_remove_old_discovery_reader_permissions.rb +1 -1
  20. data/db/migrate/20151023144501_regenerate_red_hat_kexec.rb +1 -1
  21. data/db/migrate/20180412124505_add_priority_score_to_discovery_rules.rb +1 -1
  22. data/extra/discover-host +34 -14
  23. data/lib/foreman_discovery/engine.rb +4 -4
  24. data/lib/foreman_discovery/version.rb +1 -1
  25. data/locale/ca/LC_MESSAGES/foreman_discovery.mo +0 -0
  26. data/locale/ca/foreman_discovery.edit.po +122 -93
  27. data/locale/ca/foreman_discovery.po +31 -8
  28. data/locale/de/LC_MESSAGES/foreman_discovery.mo +0 -0
  29. data/locale/de/foreman_discovery.edit.po +125 -96
  30. data/locale/de/foreman_discovery.po +34 -11
  31. data/locale/en/LC_MESSAGES/foreman_discovery.mo +0 -0
  32. data/locale/en/foreman_discovery.edit.po +118 -88
  33. data/locale/en/foreman_discovery.po +27 -4
  34. data/locale/en_GB/LC_MESSAGES/foreman_discovery.mo +0 -0
  35. data/locale/en_GB/foreman_discovery.edit.po +125 -96
  36. data/locale/en_GB/foreman_discovery.po +34 -11
  37. data/locale/es/LC_MESSAGES/foreman_discovery.mo +0 -0
  38. data/locale/es/foreman_discovery.edit.po +124 -95
  39. data/locale/es/foreman_discovery.po +33 -10
  40. data/locale/foreman_discovery.pot +119 -89
  41. data/locale/fr/LC_MESSAGES/foreman_discovery.mo +0 -0
  42. data/locale/fr/foreman_discovery.edit.po +122 -93
  43. data/locale/fr/foreman_discovery.po +31 -8
  44. data/locale/gl/LC_MESSAGES/foreman_discovery.mo +0 -0
  45. data/locale/gl/foreman_discovery.edit.po +120 -91
  46. data/locale/gl/foreman_discovery.po +29 -6
  47. data/locale/it/LC_MESSAGES/foreman_discovery.mo +0 -0
  48. data/locale/it/foreman_discovery.edit.po +120 -91
  49. data/locale/it/foreman_discovery.po +29 -6
  50. data/locale/ja/LC_MESSAGES/foreman_discovery.mo +0 -0
  51. data/locale/ja/foreman_discovery.edit.po +123 -94
  52. data/locale/ja/foreman_discovery.po +32 -9
  53. data/locale/ko/LC_MESSAGES/foreman_discovery.mo +0 -0
  54. data/locale/ko/foreman_discovery.edit.po +122 -93
  55. data/locale/ko/foreman_discovery.po +31 -8
  56. data/locale/pt_BR/LC_MESSAGES/foreman_discovery.mo +0 -0
  57. data/locale/pt_BR/foreman_discovery.edit.po +123 -94
  58. data/locale/pt_BR/foreman_discovery.po +32 -9
  59. data/locale/ru/LC_MESSAGES/foreman_discovery.mo +0 -0
  60. data/locale/ru/foreman_discovery.edit.po +123 -94
  61. data/locale/ru/foreman_discovery.po +32 -9
  62. data/locale/sv_SE/LC_MESSAGES/foreman_discovery.mo +0 -0
  63. data/locale/sv_SE/foreman_discovery.edit.po +121 -92
  64. data/locale/sv_SE/foreman_discovery.po +30 -7
  65. data/locale/zh_CN/LC_MESSAGES/foreman_discovery.mo +0 -0
  66. data/locale/zh_CN/foreman_discovery.edit.po +122 -93
  67. data/locale/zh_CN/foreman_discovery.po +31 -8
  68. data/locale/zh_TW/LC_MESSAGES/foreman_discovery.mo +0 -0
  69. data/locale/zh_TW/foreman_discovery.edit.po +120 -91
  70. data/locale/zh_TW/foreman_discovery.po +29 -6
  71. data/test/facts/bond0-eth0-eth1-active-passive.json +128 -0
  72. data/test/facts/facts_with_lldp_bond_candidate.json +2 -9
  73. data/test/facts/only-ipv6.json +205 -0
  74. data/test/facts/skylake-ipv6.json +223 -0
  75. data/test/functional/api/v2/discovered_hosts_controller_test.rb +1 -0
  76. data/test/functional/api/v2/settings_controller_test.rb +2 -2
  77. data/test/functional/discovered_hosts_controller_test.rb +15 -6
  78. data/test/integration/discovered_hosts_test.rb +6 -11
  79. data/test/test_helper_discovery.rb +12 -0
  80. data/test/unit/discovered_extensions_test.rb +54 -0
  81. data/test/unit/discovery_attribute_set_test.rb +13 -10
  82. data/test/unit/discovery_rule_test.rb +1 -0
  83. data/test/unit/host_discovered_test.rb +32 -29
  84. data/test/unit/managed_extensions_test.rb +2 -0
  85. metadata +39 -28
@@ -4,16 +4,16 @@
4
4
  #
5
5
  # Translators:
6
6
  # Denis Denis <stereodenis@gmail.com>, 2014
7
- # Dominic Cleal <dominic@cleal.org>, 2014
7
+ # 0868a4d1af5275b3f70b0a6dac4c99a4, 2014
8
8
  # Denis Denis <stereodenis@gmail.com>, 2014
9
9
  # Vladimir Pavlov <v.pavlov@i-teco.ru>, 2015
10
10
  # Yulia <yulia.poyarkova@redhat.com>, 2016
11
11
  msgid ""
12
12
  msgstr ""
13
- "Project-Id-Version: foreman_discovery 15.0.0\n"
13
+ "Project-Id-Version: foreman_discovery 16.1.0\n"
14
14
  "Report-Msgid-Bugs-To: \n"
15
- "PO-Revision-Date: 2019-04-18 19:36+0000\n"
16
- "Last-Translator: Lukáš Zapletal\n"
15
+ "PO-Revision-Date: 2020-05-26 17:21+0000\n"
16
+ "Last-Translator: Transifex Bot <>\n"
17
17
  "Language-Team: Russian (http://www.transifex.com/foreman/foreman/language/ru/)"
18
18
  "\n"
19
19
  "MIME-Version: 1.0\n"
@@ -39,6 +39,9 @@ msgstr "Сводка обнаруженных узлов от <b>Foreman</b>"
39
39
  msgid "A summary of discovered hosts"
40
40
  msgstr "Сводка состояния обнаруженных узлов"
41
41
 
42
+ msgid "Action with sub plans"
43
+ msgstr ""
44
+
42
45
  msgid "Actions"
43
46
  msgstr "Действия"
44
47
 
@@ -141,6 +144,11 @@ msgstr "Отключить"
141
144
  msgid "Disable rule '%s'?"
142
145
  msgstr "Отключить правило «%s»?"
143
146
 
147
+ msgid "Discovered Host"
148
+ msgid_plural "Discovered Hosts"
149
+ msgstr[0] ""
150
+ msgstr[1] ""
151
+
144
152
  msgid "Discovered Hosts"
145
153
  msgstr "Обнаруженные узлы"
146
154
 
@@ -356,6 +364,9 @@ msgstr "IP"
356
364
  msgid "IP address"
357
365
  msgstr "IP-адрес"
358
366
 
367
+ msgid "IPAM must be configured for subnet '%s'"
368
+ msgstr ""
369
+
359
370
  msgid "IPMI"
360
371
  msgstr "IPMI"
361
372
 
@@ -371,6 +382,12 @@ msgstr "API образа вернул ошибку HTTP/%{code}: %{msg} (body: %
371
382
  msgid "Image API returned HTTP/%{code} with '%{body}"
372
383
  msgstr "API образа вернул ошибку HTTP/%{code}: '%{body}"
373
384
 
385
+ msgid "Import Puppet classes"
386
+ msgstr ""
387
+
388
+ msgid "Import facts"
389
+ msgstr ""
390
+
374
391
  msgid "In addition to @host attribute function rand for random integers is available. Examples:"
375
392
  msgstr ""
376
393
 
@@ -587,6 +604,9 @@ msgstr "Регулярное выражение для организации ф
587
604
  msgid "Reloading kernel on %s"
588
605
  msgstr "Перезагрузка ядра на %s"
589
606
 
607
+ msgid "Remote action:"
608
+ msgstr ""
609
+
590
610
  msgid "Reported in the last 7 days"
591
611
  msgstr "Были данные за последние 7 дней"
592
612
 
@@ -686,15 +706,18 @@ msgstr "Не удалось найти правило: необходимо ук
686
706
  msgid "Unable to find primary NIC with %{mac} specified via '%{fact}', NIC filter: %{filter}"
687
707
  msgstr ""
688
708
 
689
- msgid "Unable to perform kexec on %{name} via %{url}: %{msg}"
690
- msgstr "Не удалось выполнить kexec на %{name} с %{url}: %{msg}"
709
+ msgid "Unable to perform %{action} on %{ips}"
710
+ msgstr ""
711
+
712
+ msgid "Unable to perform kexec on %{name} (%{url}): %{msg}"
713
+ msgstr ""
714
+
715
+ msgid "Unable to perform reboot on %{name} (%{url}): %{msg}"
716
+ msgstr ""
691
717
 
692
718
  msgid "Unable to provision %{host}: %{errors}"
693
719
  msgstr "Не удалось подготовить %{host}: %{errors}"
694
720
 
695
- msgid "Unable to reboot %{name} via %{url}: %{msg}"
696
- msgstr "Не удалось перезагрузить %{name} с %{url}: %{msg}"
697
-
698
721
  msgid "Update a rule"
699
722
  msgstr "Обновить правило"
700
723
 
@@ -3,16 +3,15 @@
3
3
  # This file is distributed under the same license as the foreman_discovery package.
4
4
  #
5
5
  # Translators:
6
- # Dominic Cleal <dominic@cleal.org>, 2014
6
+ # 0868a4d1af5275b3f70b0a6dac4c99a4, 2014
7
7
  # johnny.westerlund <johnny.westerlund@gmail.com>, 2014
8
8
  # johnny.westerlund <johnny.westerlund@gmail.com>, 2014
9
9
  msgid ""
10
10
  msgstr ""
11
- "Project-Id-Version: foreman_discovery 15.0.0\n"
11
+ "Project-Id-Version: foreman_discovery 16.1.0\n"
12
12
  "Report-Msgid-Bugs-To: \n"
13
- "POT-Creation-Date: 2019-07-23 17:13+0200\n"
14
- "PO-Revision-Date: 2019-04-18 19:36+0000\n"
15
- "Last-Translator: Lukáš Zapletal\n"
13
+ "PO-Revision-Date: 2020-05-26 17:21+0000\n"
14
+ "Last-Translator: Transifex Bot <>\n"
16
15
  "Language-Team: Swedish (Sweden) (http://www.transifex.com/foreman/foreman/lang"
17
16
  "uage/sv_SE/)\n"
18
17
  "MIME-Version: 1.0\n"
@@ -89,7 +88,7 @@ msgstr ""
89
88
  msgid "Execute rules against a discovered host"
90
89
  msgstr ""
91
90
 
92
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:122 ../app/controllers/discovered_hosts_controller.rb:159
91
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:122 ../app/controllers/discovered_hosts_controller.rb:160
93
92
  msgid "Host %{host} was provisioned with rule %{rule}"
94
93
  msgstr ""
95
94
 
@@ -97,7 +96,7 @@ msgstr ""
97
96
  msgid "Unable to provision %{host}: %{errors}"
98
97
  msgstr ""
99
98
 
100
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:131 ../app/controllers/discovered_hosts_controller.rb:166
99
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:131 ../app/controllers/discovered_hosts_controller.rb:167
101
100
  msgid "No rule found for host %s"
102
101
  msgstr ""
103
102
 
@@ -105,11 +104,11 @@ msgstr ""
105
104
  msgid "Execute rules against all currently discovered hosts"
106
105
  msgstr ""
107
106
 
108
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:142 ../app/controllers/discovered_hosts_controller.rb:172
107
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:142 ../app/controllers/discovered_hosts_controller.rb:173
109
108
  msgid "Errors during auto provisioning: %s"
110
109
  msgstr ""
111
110
 
112
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:145 ../app/controllers/discovered_hosts_controller.rb:175
111
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:145 ../app/controllers/discovered_hosts_controller.rb:176
113
112
  msgid "No discovered hosts to provision"
114
113
  msgstr ""
115
114
 
@@ -129,7 +128,7 @@ msgstr ""
129
128
  msgid "Rebooting all discovered hosts"
130
129
  msgstr ""
131
130
 
132
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:207 ../app/controllers/discovered_hosts_controller.rb:128
131
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:207 ../app/controllers/discovered_hosts_controller.rb:129
133
132
  msgid "Discovered hosts are rebooting now"
134
133
  msgstr ""
135
134
 
@@ -201,11 +200,11 @@ msgstr ""
201
200
  msgid "No hostgroup associated with rule '%s'"
202
201
  msgstr ""
203
202
 
204
- #: ../app/controllers/concerns/foreman/controller/discovered_extensions.rb:69
203
+ #: ../app/controllers/concerns/foreman/controller/discovered_extensions.rb:73
205
204
  msgid "Errors during reboot: %s"
206
205
  msgstr ""
207
206
 
208
- #: ../app/controllers/concerns/foreman/controller/discovered_extensions.rb:87
207
+ #: ../app/controllers/concerns/foreman/controller/discovered_extensions.rb:91
209
208
  msgid "No discovered hosts to reboot"
210
209
  msgstr ""
211
210
 
@@ -213,91 +212,91 @@ msgstr ""
213
212
  msgid "Successfully provisioned %s"
214
213
  msgstr ""
215
214
 
216
- #: ../app/controllers/discovered_hosts_controller.rb:96
215
+ #: ../app/controllers/discovered_hosts_controller.rb:97
217
216
  msgid "Facts refreshed for %s"
218
217
  msgstr "Fakta uppdaterade för %s"
219
218
 
220
- #: ../app/controllers/discovered_hosts_controller.rb:98
219
+ #: ../app/controllers/discovered_hosts_controller.rb:99
221
220
  msgid "Failed to refresh facts for %s"
222
221
  msgstr "Misslyckades med att uppdatera fakta för %s"
223
222
 
224
- #: ../app/controllers/discovered_hosts_controller.rb:101
223
+ #: ../app/controllers/discovered_hosts_controller.rb:102
225
224
  msgid "Failed to refresh facts for %{hostname} with error %{error_message}"
226
225
  msgstr ""
227
226
 
228
- #: ../app/controllers/discovered_hosts_controller.rb:108
227
+ #: ../app/controllers/discovered_hosts_controller.rb:109
229
228
  msgid "Host of type %s can not be rebooted"
230
229
  msgstr ""
231
230
 
232
- #: ../app/controllers/discovered_hosts_controller.rb:112
231
+ #: ../app/controllers/discovered_hosts_controller.rb:113
233
232
  msgid "Rebooting host %s"
234
233
  msgstr ""
235
234
 
236
- #: ../app/controllers/discovered_hosts_controller.rb:114
235
+ #: ../app/controllers/discovered_hosts_controller.rb:115
237
236
  msgid "Failed to reboot host %s"
238
237
  msgstr ""
239
238
 
240
- #: ../app/controllers/discovered_hosts_controller.rb:117
239
+ #: ../app/controllers/discovered_hosts_controller.rb:118
241
240
  msgid "Failed to reboot host %{hostname} with error %{error_message}"
242
241
  msgstr ""
243
242
 
244
- #: ../app/controllers/discovered_hosts_controller.rb:131
243
+ #: ../app/controllers/discovered_hosts_controller.rb:132
245
244
  msgid "Failed to reboot hosts with error %s"
246
245
  msgstr ""
247
246
 
248
- #: ../app/controllers/discovered_hosts_controller.rb:149
247
+ #: ../app/controllers/discovered_hosts_controller.rb:150
249
248
  msgid "Destroyed selected hosts"
250
249
  msgstr "Förstör markerade värdar"
251
250
 
252
- #: ../app/controllers/discovered_hosts_controller.rb:151
251
+ #: ../app/controllers/discovered_hosts_controller.rb:152
253
252
  msgid "The following hosts were not deleted: %s"
254
253
  msgstr "Följande värdar raderades inte: %s"
255
254
 
256
- #: ../app/controllers/discovered_hosts_controller.rb:163
255
+ #: ../app/controllers/discovered_hosts_controller.rb:164
257
256
  msgid "Failed to auto provision host %s: %s"
258
257
  msgstr ""
259
258
 
260
- #: ../app/controllers/discovered_hosts_controller.rb:191
259
+ #: ../app/controllers/discovered_hosts_controller.rb:192
261
260
  msgid "Discovered hosts are provisioning now"
262
261
  msgstr ""
263
262
 
264
- #: ../app/controllers/discovered_hosts_controller.rb:223
263
+ #: ../app/controllers/discovered_hosts_controller.rb:226
265
264
  msgid "Highlights"
266
265
  msgstr ""
267
266
 
268
- #: ../app/controllers/discovered_hosts_controller.rb:223
267
+ #: ../app/controllers/discovered_hosts_controller.rb:226
269
268
  msgid "Storage"
270
269
  msgstr ""
271
270
 
272
- #: ../app/controllers/discovered_hosts_controller.rb:223
271
+ #: ../app/controllers/discovered_hosts_controller.rb:226
273
272
  msgid "Hardware"
274
273
  msgstr ""
275
274
 
276
- #: ../app/controllers/discovered_hosts_controller.rb:223
275
+ #: ../app/controllers/discovered_hosts_controller.rb:226
277
276
  msgid "Network"
278
277
  msgstr ""
279
278
 
280
- #: ../app/controllers/discovered_hosts_controller.rb:223
279
+ #: ../app/controllers/discovered_hosts_controller.rb:226
281
280
  msgid "Software"
282
281
  msgstr ""
283
282
 
284
- #: ../app/controllers/discovered_hosts_controller.rb:223
283
+ #: ../app/controllers/discovered_hosts_controller.rb:226
285
284
  msgid "IPMI"
286
285
  msgstr ""
287
286
 
288
- #: ../app/controllers/discovered_hosts_controller.rb:223
287
+ #: ../app/controllers/discovered_hosts_controller.rb:226
289
288
  msgid "Miscellaneous"
290
289
  msgstr ""
291
290
 
292
- #: ../app/controllers/discovered_hosts_controller.rb:301
291
+ #: ../app/controllers/discovered_hosts_controller.rb:304
293
292
  msgid "No hosts were found with that id or name"
294
293
  msgstr "Inga värdar med det idt eller namnet hittades"
295
294
 
296
- #: ../app/controllers/discovered_hosts_controller.rb:305
295
+ #: ../app/controllers/discovered_hosts_controller.rb:308
297
296
  msgid "No hosts selected"
298
297
  msgstr "Inga värdar markerade"
299
298
 
300
- #: ../app/controllers/discovered_hosts_controller.rb:311
299
+ #: ../app/controllers/discovered_hosts_controller.rb:314
301
300
  msgid "Something went wrong while selecting hosts - %s"
302
301
  msgstr "Något blev fel vid markering av värdar - %s"
303
302
 
@@ -321,7 +320,7 @@ msgstr ""
321
320
  msgid "Refresh facts"
322
321
  msgstr "Uppdatera fakta"
323
322
 
324
- #: ../app/helpers/discovered_hosts_helper.rb:16 ../app/helpers/discovered_hosts_helper.rb:30 ../app/models/setting/discovered.rb:26 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:39
323
+ #: ../app/helpers/discovered_hosts_helper.rb:16 ../app/helpers/discovered_hosts_helper.rb:30 ../app/models/setting/discovered.rb:24 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:39
325
324
  msgid "Reboot"
326
325
  msgstr ""
327
326
 
@@ -445,35 +444,39 @@ msgstr ""
445
444
  msgid "MAC-based name"
446
445
  msgstr ""
447
446
 
448
- #: ../app/models/host/discovered.rb:51
447
+ #: ../app/models/host/discovered.rb:55
449
448
  msgid "Invalid facts, must be a Hash"
450
449
  msgstr ""
451
450
 
452
- #: ../app/models/host/discovered.rb:56
451
+ #: ../app/models/host/discovered.rb:60
453
452
  msgid "Expected discovery_fact '%s' is missing, unable to detect primary interface and set hostname"
454
453
  msgstr ""
455
454
 
456
- #: ../app/models/host/discovered.rb:69
455
+ #: ../app/models/host/discovered.rb:73
457
456
  msgid "Invalid facts: hash does not contain a valid value for any of the facts in the discovery_hostname setting: %s"
458
457
  msgstr ""
459
458
 
460
- #: ../app/models/host/discovered.rb:95
459
+ #: ../app/models/host/discovered.rb:100
461
460
  msgid "Facts could not be imported"
462
461
  msgstr ""
463
462
 
464
- #: ../app/models/host/discovered.rb:150
463
+ #: ../app/models/host/discovered.rb:146
465
464
  msgid "Could not get facts from proxy %{url}: %{error}"
466
465
  msgstr ""
467
466
 
468
- #: ../app/models/host/discovered.rb:158
469
- msgid "Unable to reboot %{name} via %{url}: %{msg}"
467
+ #: ../app/models/host/discovered.rb:160
468
+ msgid "Unable to perform reboot on %{name} (%{url}): %{msg}"
470
469
  msgstr ""
471
470
 
472
- #: ../app/models/host/discovered.rb:166
473
- msgid "Unable to perform kexec on %{name} via %{url}: %{msg}"
471
+ #: ../app/models/host/discovered.rb:164 ../app/models/host/discovered.rb:183
472
+ msgid "Unable to perform %{action} on %{ips}"
474
473
  msgstr ""
475
474
 
476
- #: ../app/models/host/discovered.rb:185
475
+ #: ../app/models/host/discovered.rb:179
476
+ msgid "Unable to perform kexec on %{name} (%{url}): %{msg}"
477
+ msgstr ""
478
+
479
+ #: ../app/models/host/discovered.rb:203
477
480
  msgid "Invalid hostname: Could not normalize the hostname"
478
481
  msgstr ""
479
482
 
@@ -501,183 +504,183 @@ msgstr ""
501
504
  msgid "Rebuild DNS for %s"
502
505
  msgstr ""
503
506
 
504
- #: ../app/models/setting/discovered.rb:19
507
+ #: ../app/models/setting/discovered.rb:17
505
508
  msgid "The default location to place discovered hosts in"
506
509
  msgstr "Standardplatsen att placera värdar i"
507
510
 
508
- #: ../app/models/setting/discovered.rb:19
511
+ #: ../app/models/setting/discovered.rb:17
509
512
  msgid "Discovery location"
510
513
  msgstr ""
511
514
 
512
- #: ../app/models/setting/discovered.rb:20
515
+ #: ../app/models/setting/discovered.rb:18
513
516
  msgid "The default organization to place discovered hosts in"
514
517
  msgstr "Standardorganisationen att placera hittade värdar i"
515
518
 
516
- #: ../app/models/setting/discovered.rb:20
519
+ #: ../app/models/setting/discovered.rb:18
517
520
  msgid "Discovery organization"
518
521
  msgstr ""
519
522
 
520
- #: ../app/models/setting/discovered.rb:21
523
+ #: ../app/models/setting/discovered.rb:19
521
524
  msgid "Fact name to use for primary interface detection"
522
525
  msgstr ""
523
526
 
524
- #: ../app/models/setting/discovered.rb:21
527
+ #: ../app/models/setting/discovered.rb:19
525
528
  msgid "Interface fact"
526
529
  msgstr ""
527
530
 
528
- #: ../app/models/setting/discovered.rb:22
531
+ #: ../app/models/setting/discovered.rb:20
529
532
  msgid "Automatic bond interface (if another interface is detected on the same VLAN via LLDP)"
530
533
  msgstr ""
531
534
 
532
- #: ../app/models/setting/discovered.rb:22
535
+ #: ../app/models/setting/discovered.rb:20
533
536
  msgid "Create bond interfaces"
534
537
  msgstr ""
535
538
 
536
- #: ../app/models/setting/discovered.rb:23
539
+ #: ../app/models/setting/discovered.rb:21
537
540
  msgid "Clean all reported facts during provisioning (except discovery facts)"
538
541
  msgstr ""
539
542
 
540
- #: ../app/models/setting/discovered.rb:23
543
+ #: ../app/models/setting/discovered.rb:21
541
544
  msgid "Clean all facts"
542
545
  msgstr ""
543
546
 
544
- #: ../app/models/setting/discovered.rb:24
547
+ #: ../app/models/setting/discovered.rb:22
545
548
  msgid "List of facts to use for the hostname (separated by comma, first wins)"
546
549
  msgstr ""
547
550
 
548
- #: ../app/models/setting/discovered.rb:24
551
+ #: ../app/models/setting/discovered.rb:22
549
552
  msgid "Hostname facts"
550
553
  msgstr ""
551
554
 
552
- #: ../app/models/setting/discovered.rb:25
555
+ #: ../app/models/setting/discovered.rb:23
553
556
  msgid "Automatically provision newly discovered hosts, according to the provisioning rules"
554
557
  msgstr ""
555
558
 
556
- #: ../app/models/setting/discovered.rb:25
559
+ #: ../app/models/setting/discovered.rb:23
557
560
  msgid "Auto provisioning"
558
561
  msgstr ""
559
562
 
560
- #: ../app/models/setting/discovered.rb:26
563
+ #: ../app/models/setting/discovered.rb:24
561
564
  msgid "Automatically reboot or kexec discovered host during provisioning"
562
565
  msgstr ""
563
566
 
564
- #: ../app/models/setting/discovered.rb:27
567
+ #: ../app/models/setting/discovered.rb:25
565
568
  msgid "The default prefix to use for the host name, must start with a letter"
566
569
  msgstr ""
567
570
 
568
- #: ../app/models/setting/discovered.rb:27
571
+ #: ../app/models/setting/discovered.rb:25
569
572
  msgid "Hostname prefix"
570
573
  msgstr ""
571
574
 
572
- #: ../app/models/setting/discovered.rb:28
575
+ #: ../app/models/setting/discovered.rb:26
573
576
  msgid "Extra facter columns to show in host lists (separate by comma)"
574
577
  msgstr ""
575
578
 
576
- #: ../app/models/setting/discovered.rb:28
579
+ #: ../app/models/setting/discovered.rb:26
577
580
  msgid "Fact columns"
578
581
  msgstr ""
579
582
 
580
- #: ../app/models/setting/discovered.rb:29
583
+ #: ../app/models/setting/discovered.rb:27
581
584
  msgid "Regex to organize facts for highlights section - e.g. ^(abc|cde)$"
582
585
  msgstr ""
583
586
 
584
- #: ../app/models/setting/discovered.rb:29
587
+ #: ../app/models/setting/discovered.rb:27
585
588
  msgid "Highlighted facts"
586
589
  msgstr ""
587
590
 
588
- #: ../app/models/setting/discovered.rb:30
591
+ #: ../app/models/setting/discovered.rb:28
589
592
  msgid "Regex to organize facts for storage section"
590
593
  msgstr ""
591
594
 
592
- #: ../app/models/setting/discovered.rb:30
595
+ #: ../app/models/setting/discovered.rb:28
593
596
  msgid "Storage facts"
594
597
  msgstr ""
595
598
 
596
- #: ../app/models/setting/discovered.rb:31
599
+ #: ../app/models/setting/discovered.rb:29
597
600
  msgid "Regex to organize facts for software section"
598
601
  msgstr ""
599
602
 
600
- #: ../app/models/setting/discovered.rb:31
603
+ #: ../app/models/setting/discovered.rb:29
601
604
  msgid "Software facts"
602
605
  msgstr ""
603
606
 
604
- #: ../app/models/setting/discovered.rb:32
607
+ #: ../app/models/setting/discovered.rb:30
605
608
  msgid "Regex to organize facts for hardware section"
606
609
  msgstr ""
607
610
 
608
- #: ../app/models/setting/discovered.rb:32
611
+ #: ../app/models/setting/discovered.rb:30
609
612
  msgid "Hardware facts"
610
613
  msgstr ""
611
614
 
612
- #: ../app/models/setting/discovered.rb:33
615
+ #: ../app/models/setting/discovered.rb:31
613
616
  msgid "Regex to organize facts for network section"
614
617
  msgstr ""
615
618
 
616
- #: ../app/models/setting/discovered.rb:33
619
+ #: ../app/models/setting/discovered.rb:31
617
620
  msgid "Network facts"
618
621
  msgstr ""
619
622
 
620
- #: ../app/models/setting/discovered.rb:34
623
+ #: ../app/models/setting/discovered.rb:32
621
624
  msgid "Regex to organize facts for ipmi section"
622
625
  msgstr ""
623
626
 
624
- #: ../app/models/setting/discovered.rb:34
627
+ #: ../app/models/setting/discovered.rb:32
625
628
  msgid "IPMI facts"
626
629
  msgstr ""
627
630
 
628
- #: ../app/models/setting/discovered.rb:35
631
+ #: ../app/models/setting/discovered.rb:33
629
632
  msgid "Automatically generate PXE configuration to pin a newly discovered host to discovery"
630
633
  msgstr ""
631
634
 
632
- #: ../app/models/setting/discovered.rb:35
635
+ #: ../app/models/setting/discovered.rb:33
633
636
  msgid "Lock PXE"
634
637
  msgstr ""
635
638
 
636
- #: ../app/models/setting/discovered.rb:36
639
+ #: ../app/models/setting/discovered.rb:34
637
640
  msgid "PXELinux template to be used when pinning a host to discovery"
638
641
  msgstr ""
639
642
 
640
- #: ../app/models/setting/discovered.rb:36
643
+ #: ../app/models/setting/discovered.rb:34
641
644
  msgid "Locked PXELinux template name"
642
645
  msgstr ""
643
646
 
644
- #: ../app/models/setting/discovered.rb:37
647
+ #: ../app/models/setting/discovered.rb:35
645
648
  msgid "PXEGrub template to be used when pinning a host to discovery"
646
649
  msgstr ""
647
650
 
648
- #: ../app/models/setting/discovered.rb:37
651
+ #: ../app/models/setting/discovered.rb:35
649
652
  msgid "Locked PXEGrub template name"
650
653
  msgstr ""
651
654
 
652
- #: ../app/models/setting/discovered.rb:38
655
+ #: ../app/models/setting/discovered.rb:36
653
656
  msgid "PXEGrub2 template to be used when pinning a host to discovery"
654
657
  msgstr ""
655
658
 
656
- #: ../app/models/setting/discovered.rb:38
659
+ #: ../app/models/setting/discovered.rb:36
657
660
  msgid "Locked PXEGrub2 template name"
658
661
  msgstr ""
659
662
 
660
- #: ../app/models/setting/discovered.rb:39
663
+ #: ../app/models/setting/discovered.rb:37
661
664
  msgid "Force DNS entries creation when provisioning discovered host"
662
665
  msgstr ""
663
666
 
664
- #: ../app/models/setting/discovered.rb:39
667
+ #: ../app/models/setting/discovered.rb:37
665
668
  msgid "Force DNS"
666
669
  msgstr ""
667
670
 
668
- #: ../app/models/setting/discovered.rb:40
671
+ #: ../app/models/setting/discovered.rb:38
669
672
  msgid "Do not allow to discover existing managed host matching MAC of a provisioning NIC (errors out early)"
670
673
  msgstr ""
671
674
 
672
- #: ../app/models/setting/discovered.rb:40
675
+ #: ../app/models/setting/discovered.rb:38
673
676
  msgid "Error on existing NIC"
674
677
  msgstr ""
675
678
 
676
- #: ../app/models/setting/discovered.rb:41
679
+ #: ../app/models/setting/discovered.rb:39
677
680
  msgid "Discovery hostname naming pattern"
678
681
  msgstr ""
679
682
 
680
- #: ../app/models/setting/discovered.rb:41
683
+ #: ../app/models/setting/discovered.rb:39
681
684
  msgid "Type of name generator"
682
685
  msgstr ""
683
686
 
@@ -693,14 +696,24 @@ msgstr ""
693
696
  msgid "Unable to find primary NIC with %{mac} specified via '%{fact}', NIC filter: %{filter}"
694
697
  msgstr ""
695
698
 
696
- #: ../app/services/foreman_discovery/node_api/node_resource.rb:75
699
+ #: ../app/services/foreman_discovery/host_converter.rb:47
700
+ msgid "IPAM must be configured for subnet '%s'"
701
+ msgstr ""
702
+
703
+ #: ../app/services/foreman_discovery/node_api/node_resource.rb:76
697
704
  msgid "Image API returned HTTP/%{code} with '%{body}"
698
705
  msgstr ""
699
706
 
700
- #: ../app/services/foreman_discovery/node_api/node_resource.rb:78
707
+ #: ../app/services/foreman_discovery/node_api/node_resource.rb:79
701
708
  msgid "Image API processing error: %{msg} (HTTP/%{code}, body: %{body})"
702
709
  msgstr ""
703
710
 
711
+ #: ../app/views/dashboard/_discovery_widget.html.erb:5
712
+ msgid "Discovered Host"
713
+ msgid_plural "Discovered Hosts"
714
+ msgstr[0] ""
715
+ msgstr[1] ""
716
+
704
717
  #: ../app/views/dashboard/_discovery_widget.html.erb:9
705
718
  msgid "No discovered hosts available"
706
719
  msgstr ""
@@ -1004,3 +1017,19 @@ msgstr ""
1004
1017
  #: ../lib/foreman_discovery/engine.rb:190
1005
1018
  msgid "ID of Discovery Proxy to use within this subnet for managing connection to discovered hosts"
1006
1019
  msgstr ""
1020
+
1021
+ #: action_names.rb:2
1022
+ msgid "Remote action:"
1023
+ msgstr ""
1024
+
1025
+ #: action_names.rb:3
1026
+ msgid "Import Puppet classes"
1027
+ msgstr ""
1028
+
1029
+ #: action_names.rb:4
1030
+ msgid "Import facts"
1031
+ msgstr ""
1032
+
1033
+ #: action_names.rb:5
1034
+ msgid "Action with sub plans"
1035
+ msgstr ""