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
@@ -3,21 +3,21 @@
3
3
  # This file is distributed under the same license as the foreman_discovery package.
4
4
  #
5
5
  # Translators:
6
- # Alexander Stoll <Alexander.Stoll@netways.de>, 2019
6
+ # Crited <Alexander.Stoll@netways.de>, 2019
7
7
  # Arnold Bechtoldt <mail@arnoldbechtoldt.com>, 2014
8
8
  # Christina Gurski <Gurski_christina@yahoo.de>, 2015
9
9
  # Ettore Atalan <atalanttore@googlemail.com>, 2014-2017
10
10
  # Lukáš Zapletal, 2015
11
11
  # Martin Zimmermann <martin.zimmermann@gmx.com>, 2018
12
- # simon11 <simon.stieger.98@live.de>, 2014
13
- # simon11 <simon.stieger.98@live.de>, 2014
12
+ # simon11 <transifex@stieger.co>, 2014
13
+ # simon11 <transifex@stieger.co>, 2014
14
14
  # stbenjam <stephen@redhat.com>, 2016
15
15
  msgid ""
16
16
  msgstr ""
17
- "Project-Id-Version: foreman_discovery 15.0.0\n"
17
+ "Project-Id-Version: foreman_discovery 16.1.0\n"
18
18
  "Report-Msgid-Bugs-To: \n"
19
- "PO-Revision-Date: 2019-05-09 09:32+0000\n"
20
- "Last-Translator: Alexander Stoll <Alexander.Stoll@netways.de>\n"
19
+ "PO-Revision-Date: 2020-05-26 17:21+0000\n"
20
+ "Last-Translator: Transifex Bot <>\n"
21
21
  "Language-Team: German (http://www.transifex.com/foreman/foreman/language/de/)\n"
22
22
  "MIME-Version: 1.0\n"
23
23
  "Content-Type: text/plain; charset=UTF-8\n"
@@ -40,6 +40,9 @@ msgstr "<b>Foreman</b> Zusammenfassung entdeckter Hosts"
40
40
  msgid "A summary of discovered hosts"
41
41
  msgstr "Eine Zusammenfassung der entdeckten Hosts"
42
42
 
43
+ msgid "Action with sub plans"
44
+ msgstr ""
45
+
43
46
  msgid "Actions"
44
47
  msgstr "Aktionen"
45
48
 
@@ -142,6 +145,11 @@ msgstr "Deaktivieren"
142
145
  msgid "Disable rule '%s'?"
143
146
  msgstr "Regel '%s' deaktivieren?"
144
147
 
148
+ msgid "Discovered Host"
149
+ msgid_plural "Discovered Hosts"
150
+ msgstr[0] ""
151
+ msgstr[1] ""
152
+
145
153
  msgid "Discovered Hosts"
146
154
  msgstr "Entdeckte Hosts"
147
155
 
@@ -353,6 +361,9 @@ msgstr "IP-Adresse"
353
361
  msgid "IP address"
354
362
  msgstr "IP-Adresse"
355
363
 
364
+ msgid "IPAM must be configured for subnet '%s'"
365
+ msgstr ""
366
+
356
367
  msgid "IPMI"
357
368
  msgstr "IPMI"
358
369
 
@@ -368,6 +379,12 @@ msgstr "Image API Verarbeitungsfehler: %{msg} (HTTP/%{code}, Text: %{body})"
368
379
  msgid "Image API returned HTTP/%{code} with '%{body}"
369
380
  msgstr "Image API gibt HTTP/%{code} mit '%{body} zurück"
370
381
 
382
+ msgid "Import Puppet classes"
383
+ msgstr ""
384
+
385
+ msgid "Import facts"
386
+ msgstr ""
387
+
371
388
  msgid "In addition to @host attribute function rand for random integers is available. Examples:"
372
389
  msgstr ""
373
390
 
@@ -584,6 +601,9 @@ msgstr "Regex zur Faktensortierung im Speicher-Bereich"
584
601
  msgid "Reloading kernel on %s"
585
602
  msgstr "Kernel auf %s wird neu geladen"
586
603
 
604
+ msgid "Remote action:"
605
+ msgstr ""
606
+
587
607
  msgid "Reported in the last 7 days"
588
608
  msgstr "Berichtet in den letzten 7 Tagen"
589
609
 
@@ -683,15 +703,18 @@ msgstr "Keine Entdeckungsregel gefunden, kein Host bereitgestellt (Berechtigunge
683
703
  msgid "Unable to find primary NIC with %{mac} specified via '%{fact}', NIC filter: %{filter}"
684
704
  msgstr ""
685
705
 
686
- msgid "Unable to perform kexec on %{name} via %{url}: %{msg}"
687
- msgstr "kexec kann nicht auf %{name} über %{url} ausgeführt werden: %{msg}"
706
+ msgid "Unable to perform %{action} on %{ips}"
707
+ msgstr ""
708
+
709
+ msgid "Unable to perform kexec on %{name} (%{url}): %{msg}"
710
+ msgstr ""
711
+
712
+ msgid "Unable to perform reboot on %{name} (%{url}): %{msg}"
713
+ msgstr ""
688
714
 
689
715
  msgid "Unable to provision %{host}: %{errors}"
690
716
  msgstr "%{host} kann nicht bereitgestellt werden: %{errors} "
691
717
 
692
- msgid "Unable to reboot %{name} via %{url}: %{msg}"
693
- msgstr "%{name} kann nicht über %{url} neu gestartet werden: %{msg}"
694
-
695
718
  msgid "Update a rule"
696
719
  msgstr "Regel aktualisieren"
697
720
 
@@ -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 15.0.0\n"
5
+ "Project-Id-Version: foreman_discovery 16.1.0\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"
@@ -80,7 +80,7 @@ msgstr ""
80
80
  msgid "Execute rules against a discovered host"
81
81
  msgstr ""
82
82
 
83
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:122 ../app/controllers/discovered_hosts_controller.rb:159
83
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:122 ../app/controllers/discovered_hosts_controller.rb:160
84
84
  msgid "Host %{host} was provisioned with rule %{rule}"
85
85
  msgstr ""
86
86
 
@@ -88,7 +88,7 @@ msgstr ""
88
88
  msgid "Unable to provision %{host}: %{errors}"
89
89
  msgstr ""
90
90
 
91
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:131 ../app/controllers/discovered_hosts_controller.rb:166
91
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:131 ../app/controllers/discovered_hosts_controller.rb:167
92
92
  msgid "No rule found for host %s"
93
93
  msgstr ""
94
94
 
@@ -96,11 +96,11 @@ msgstr ""
96
96
  msgid "Execute rules against all currently discovered hosts"
97
97
  msgstr ""
98
98
 
99
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:142 ../app/controllers/discovered_hosts_controller.rb:172
99
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:142 ../app/controllers/discovered_hosts_controller.rb:173
100
100
  msgid "Errors during auto provisioning: %s"
101
101
  msgstr ""
102
102
 
103
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:145 ../app/controllers/discovered_hosts_controller.rb:175
103
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:145 ../app/controllers/discovered_hosts_controller.rb:176
104
104
  msgid "No discovered hosts to provision"
105
105
  msgstr ""
106
106
 
@@ -120,7 +120,7 @@ msgstr ""
120
120
  msgid "Rebooting all discovered hosts"
121
121
  msgstr ""
122
122
 
123
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:207 ../app/controllers/discovered_hosts_controller.rb:128
123
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:207 ../app/controllers/discovered_hosts_controller.rb:129
124
124
  msgid "Discovered hosts are rebooting now"
125
125
  msgstr ""
126
126
 
@@ -192,11 +192,11 @@ msgstr ""
192
192
  msgid "No hostgroup associated with rule '%s'"
193
193
  msgstr ""
194
194
 
195
- #: ../app/controllers/concerns/foreman/controller/discovered_extensions.rb:69
195
+ #: ../app/controllers/concerns/foreman/controller/discovered_extensions.rb:73
196
196
  msgid "Errors during reboot: %s"
197
197
  msgstr ""
198
198
 
199
- #: ../app/controllers/concerns/foreman/controller/discovered_extensions.rb:87
199
+ #: ../app/controllers/concerns/foreman/controller/discovered_extensions.rb:91
200
200
  msgid "No discovered hosts to reboot"
201
201
  msgstr ""
202
202
 
@@ -204,91 +204,91 @@ msgstr ""
204
204
  msgid "Successfully provisioned %s"
205
205
  msgstr ""
206
206
 
207
- #: ../app/controllers/discovered_hosts_controller.rb:96
207
+ #: ../app/controllers/discovered_hosts_controller.rb:97
208
208
  msgid "Facts refreshed for %s"
209
209
  msgstr ""
210
210
 
211
- #: ../app/controllers/discovered_hosts_controller.rb:98
211
+ #: ../app/controllers/discovered_hosts_controller.rb:99
212
212
  msgid "Failed to refresh facts for %s"
213
213
  msgstr ""
214
214
 
215
- #: ../app/controllers/discovered_hosts_controller.rb:101
215
+ #: ../app/controllers/discovered_hosts_controller.rb:102
216
216
  msgid "Failed to refresh facts for %{hostname} with error %{error_message}"
217
217
  msgstr ""
218
218
 
219
- #: ../app/controllers/discovered_hosts_controller.rb:108
219
+ #: ../app/controllers/discovered_hosts_controller.rb:109
220
220
  msgid "Host of type %s can not be rebooted"
221
221
  msgstr ""
222
222
 
223
- #: ../app/controllers/discovered_hosts_controller.rb:112
223
+ #: ../app/controllers/discovered_hosts_controller.rb:113
224
224
  msgid "Rebooting host %s"
225
225
  msgstr ""
226
226
 
227
- #: ../app/controllers/discovered_hosts_controller.rb:114
227
+ #: ../app/controllers/discovered_hosts_controller.rb:115
228
228
  msgid "Failed to reboot host %s"
229
229
  msgstr ""
230
230
 
231
- #: ../app/controllers/discovered_hosts_controller.rb:117
231
+ #: ../app/controllers/discovered_hosts_controller.rb:118
232
232
  msgid "Failed to reboot host %{hostname} with error %{error_message}"
233
233
  msgstr ""
234
234
 
235
- #: ../app/controllers/discovered_hosts_controller.rb:131
235
+ #: ../app/controllers/discovered_hosts_controller.rb:132
236
236
  msgid "Failed to reboot hosts with error %s"
237
237
  msgstr ""
238
238
 
239
- #: ../app/controllers/discovered_hosts_controller.rb:149
239
+ #: ../app/controllers/discovered_hosts_controller.rb:150
240
240
  msgid "Destroyed selected hosts"
241
241
  msgstr ""
242
242
 
243
- #: ../app/controllers/discovered_hosts_controller.rb:151
243
+ #: ../app/controllers/discovered_hosts_controller.rb:152
244
244
  msgid "The following hosts were not deleted: %s"
245
245
  msgstr ""
246
246
 
247
- #: ../app/controllers/discovered_hosts_controller.rb:163
247
+ #: ../app/controllers/discovered_hosts_controller.rb:164
248
248
  msgid "Failed to auto provision host %s: %s"
249
249
  msgstr ""
250
250
 
251
- #: ../app/controllers/discovered_hosts_controller.rb:191
251
+ #: ../app/controllers/discovered_hosts_controller.rb:192
252
252
  msgid "Discovered hosts are provisioning now"
253
253
  msgstr ""
254
254
 
255
- #: ../app/controllers/discovered_hosts_controller.rb:223
255
+ #: ../app/controllers/discovered_hosts_controller.rb:226
256
256
  msgid "Highlights"
257
257
  msgstr ""
258
258
 
259
- #: ../app/controllers/discovered_hosts_controller.rb:223
259
+ #: ../app/controllers/discovered_hosts_controller.rb:226
260
260
  msgid "Storage"
261
261
  msgstr ""
262
262
 
263
- #: ../app/controllers/discovered_hosts_controller.rb:223
263
+ #: ../app/controllers/discovered_hosts_controller.rb:226
264
264
  msgid "Hardware"
265
265
  msgstr ""
266
266
 
267
- #: ../app/controllers/discovered_hosts_controller.rb:223
267
+ #: ../app/controllers/discovered_hosts_controller.rb:226
268
268
  msgid "Network"
269
269
  msgstr ""
270
270
 
271
- #: ../app/controllers/discovered_hosts_controller.rb:223
271
+ #: ../app/controllers/discovered_hosts_controller.rb:226
272
272
  msgid "Software"
273
273
  msgstr ""
274
274
 
275
- #: ../app/controllers/discovered_hosts_controller.rb:223
275
+ #: ../app/controllers/discovered_hosts_controller.rb:226
276
276
  msgid "IPMI"
277
277
  msgstr ""
278
278
 
279
- #: ../app/controllers/discovered_hosts_controller.rb:223
279
+ #: ../app/controllers/discovered_hosts_controller.rb:226
280
280
  msgid "Miscellaneous"
281
281
  msgstr ""
282
282
 
283
- #: ../app/controllers/discovered_hosts_controller.rb:301
283
+ #: ../app/controllers/discovered_hosts_controller.rb:304
284
284
  msgid "No hosts were found with that id or name"
285
285
  msgstr ""
286
286
 
287
- #: ../app/controllers/discovered_hosts_controller.rb:305
287
+ #: ../app/controllers/discovered_hosts_controller.rb:308
288
288
  msgid "No hosts selected"
289
289
  msgstr ""
290
290
 
291
- #: ../app/controllers/discovered_hosts_controller.rb:311
291
+ #: ../app/controllers/discovered_hosts_controller.rb:314
292
292
  msgid "Something went wrong while selecting hosts - %s"
293
293
  msgstr ""
294
294
 
@@ -312,7 +312,7 @@ msgstr ""
312
312
  msgid "Refresh facts"
313
313
  msgstr ""
314
314
 
315
- #: ../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
315
+ #: ../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
316
316
  msgid "Reboot"
317
317
  msgstr ""
318
318
 
@@ -436,35 +436,39 @@ msgstr ""
436
436
  msgid "MAC-based name"
437
437
  msgstr ""
438
438
 
439
- #: ../app/models/host/discovered.rb:51
439
+ #: ../app/models/host/discovered.rb:55
440
440
  msgid "Invalid facts, must be a Hash"
441
441
  msgstr ""
442
442
 
443
- #: ../app/models/host/discovered.rb:56
443
+ #: ../app/models/host/discovered.rb:60
444
444
  msgid "Expected discovery_fact '%s' is missing, unable to detect primary interface and set hostname"
445
445
  msgstr ""
446
446
 
447
- #: ../app/models/host/discovered.rb:69
447
+ #: ../app/models/host/discovered.rb:73
448
448
  msgid "Invalid facts: hash does not contain a valid value for any of the facts in the discovery_hostname setting: %s"
449
449
  msgstr ""
450
450
 
451
- #: ../app/models/host/discovered.rb:95
451
+ #: ../app/models/host/discovered.rb:100
452
452
  msgid "Facts could not be imported"
453
453
  msgstr ""
454
454
 
455
- #: ../app/models/host/discovered.rb:150
455
+ #: ../app/models/host/discovered.rb:146
456
456
  msgid "Could not get facts from proxy %{url}: %{error}"
457
457
  msgstr ""
458
458
 
459
- #: ../app/models/host/discovered.rb:158
460
- msgid "Unable to reboot %{name} via %{url}: %{msg}"
459
+ #: ../app/models/host/discovered.rb:160
460
+ msgid "Unable to perform reboot on %{name} (%{url}): %{msg}"
461
461
  msgstr ""
462
462
 
463
- #: ../app/models/host/discovered.rb:166
464
- msgid "Unable to perform kexec on %{name} via %{url}: %{msg}"
463
+ #: ../app/models/host/discovered.rb:164 ../app/models/host/discovered.rb:183
464
+ msgid "Unable to perform %{action} on %{ips}"
465
465
  msgstr ""
466
466
 
467
- #: ../app/models/host/discovered.rb:185
467
+ #: ../app/models/host/discovered.rb:179
468
+ msgid "Unable to perform kexec on %{name} (%{url}): %{msg}"
469
+ msgstr ""
470
+
471
+ #: ../app/models/host/discovered.rb:203
468
472
  msgid "Invalid hostname: Could not normalize the hostname"
469
473
  msgstr ""
470
474
 
@@ -492,183 +496,183 @@ msgstr ""
492
496
  msgid "Rebuild DNS for %s"
493
497
  msgstr ""
494
498
 
495
- #: ../app/models/setting/discovered.rb:19
499
+ #: ../app/models/setting/discovered.rb:17
496
500
  msgid "The default location to place discovered hosts in"
497
501
  msgstr ""
498
502
 
499
- #: ../app/models/setting/discovered.rb:19
503
+ #: ../app/models/setting/discovered.rb:17
500
504
  msgid "Discovery location"
501
505
  msgstr ""
502
506
 
503
- #: ../app/models/setting/discovered.rb:20
507
+ #: ../app/models/setting/discovered.rb:18
504
508
  msgid "The default organization to place discovered hosts in"
505
509
  msgstr ""
506
510
 
507
- #: ../app/models/setting/discovered.rb:20
511
+ #: ../app/models/setting/discovered.rb:18
508
512
  msgid "Discovery organization"
509
513
  msgstr ""
510
514
 
511
- #: ../app/models/setting/discovered.rb:21
515
+ #: ../app/models/setting/discovered.rb:19
512
516
  msgid "Fact name to use for primary interface detection"
513
517
  msgstr ""
514
518
 
515
- #: ../app/models/setting/discovered.rb:21
519
+ #: ../app/models/setting/discovered.rb:19
516
520
  msgid "Interface fact"
517
521
  msgstr ""
518
522
 
519
- #: ../app/models/setting/discovered.rb:22
523
+ #: ../app/models/setting/discovered.rb:20
520
524
  msgid "Automatic bond interface (if another interface is detected on the same VLAN via LLDP)"
521
525
  msgstr ""
522
526
 
523
- #: ../app/models/setting/discovered.rb:22
527
+ #: ../app/models/setting/discovered.rb:20
524
528
  msgid "Create bond interfaces"
525
529
  msgstr ""
526
530
 
527
- #: ../app/models/setting/discovered.rb:23
531
+ #: ../app/models/setting/discovered.rb:21
528
532
  msgid "Clean all reported facts during provisioning (except discovery facts)"
529
533
  msgstr ""
530
534
 
531
- #: ../app/models/setting/discovered.rb:23
535
+ #: ../app/models/setting/discovered.rb:21
532
536
  msgid "Clean all facts"
533
537
  msgstr ""
534
538
 
535
- #: ../app/models/setting/discovered.rb:24
539
+ #: ../app/models/setting/discovered.rb:22
536
540
  msgid "List of facts to use for the hostname (separated by comma, first wins)"
537
541
  msgstr ""
538
542
 
539
- #: ../app/models/setting/discovered.rb:24
543
+ #: ../app/models/setting/discovered.rb:22
540
544
  msgid "Hostname facts"
541
545
  msgstr ""
542
546
 
543
- #: ../app/models/setting/discovered.rb:25
547
+ #: ../app/models/setting/discovered.rb:23
544
548
  msgid "Automatically provision newly discovered hosts, according to the provisioning rules"
545
549
  msgstr ""
546
550
 
547
- #: ../app/models/setting/discovered.rb:25
551
+ #: ../app/models/setting/discovered.rb:23
548
552
  msgid "Auto provisioning"
549
553
  msgstr ""
550
554
 
551
- #: ../app/models/setting/discovered.rb:26
555
+ #: ../app/models/setting/discovered.rb:24
552
556
  msgid "Automatically reboot or kexec discovered host during provisioning"
553
557
  msgstr ""
554
558
 
555
- #: ../app/models/setting/discovered.rb:27
559
+ #: ../app/models/setting/discovered.rb:25
556
560
  msgid "The default prefix to use for the host name, must start with a letter"
557
561
  msgstr ""
558
562
 
559
- #: ../app/models/setting/discovered.rb:27
563
+ #: ../app/models/setting/discovered.rb:25
560
564
  msgid "Hostname prefix"
561
565
  msgstr ""
562
566
 
563
- #: ../app/models/setting/discovered.rb:28
567
+ #: ../app/models/setting/discovered.rb:26
564
568
  msgid "Extra facter columns to show in host lists (separate by comma)"
565
569
  msgstr ""
566
570
 
567
- #: ../app/models/setting/discovered.rb:28
571
+ #: ../app/models/setting/discovered.rb:26
568
572
  msgid "Fact columns"
569
573
  msgstr ""
570
574
 
571
- #: ../app/models/setting/discovered.rb:29
575
+ #: ../app/models/setting/discovered.rb:27
572
576
  msgid "Regex to organize facts for highlights section - e.g. ^(abc|cde)$"
573
577
  msgstr ""
574
578
 
575
- #: ../app/models/setting/discovered.rb:29
579
+ #: ../app/models/setting/discovered.rb:27
576
580
  msgid "Highlighted facts"
577
581
  msgstr ""
578
582
 
579
- #: ../app/models/setting/discovered.rb:30
583
+ #: ../app/models/setting/discovered.rb:28
580
584
  msgid "Regex to organize facts for storage section"
581
585
  msgstr ""
582
586
 
583
- #: ../app/models/setting/discovered.rb:30
587
+ #: ../app/models/setting/discovered.rb:28
584
588
  msgid "Storage facts"
585
589
  msgstr ""
586
590
 
587
- #: ../app/models/setting/discovered.rb:31
591
+ #: ../app/models/setting/discovered.rb:29
588
592
  msgid "Regex to organize facts for software section"
589
593
  msgstr ""
590
594
 
591
- #: ../app/models/setting/discovered.rb:31
595
+ #: ../app/models/setting/discovered.rb:29
592
596
  msgid "Software facts"
593
597
  msgstr ""
594
598
 
595
- #: ../app/models/setting/discovered.rb:32
599
+ #: ../app/models/setting/discovered.rb:30
596
600
  msgid "Regex to organize facts for hardware section"
597
601
  msgstr ""
598
602
 
599
- #: ../app/models/setting/discovered.rb:32
603
+ #: ../app/models/setting/discovered.rb:30
600
604
  msgid "Hardware facts"
601
605
  msgstr ""
602
606
 
603
- #: ../app/models/setting/discovered.rb:33
607
+ #: ../app/models/setting/discovered.rb:31
604
608
  msgid "Regex to organize facts for network section"
605
609
  msgstr ""
606
610
 
607
- #: ../app/models/setting/discovered.rb:33
611
+ #: ../app/models/setting/discovered.rb:31
608
612
  msgid "Network facts"
609
613
  msgstr ""
610
614
 
611
- #: ../app/models/setting/discovered.rb:34
615
+ #: ../app/models/setting/discovered.rb:32
612
616
  msgid "Regex to organize facts for ipmi section"
613
617
  msgstr ""
614
618
 
615
- #: ../app/models/setting/discovered.rb:34
619
+ #: ../app/models/setting/discovered.rb:32
616
620
  msgid "IPMI facts"
617
621
  msgstr ""
618
622
 
619
- #: ../app/models/setting/discovered.rb:35
623
+ #: ../app/models/setting/discovered.rb:33
620
624
  msgid "Automatically generate PXE configuration to pin a newly discovered host to discovery"
621
625
  msgstr ""
622
626
 
623
- #: ../app/models/setting/discovered.rb:35
627
+ #: ../app/models/setting/discovered.rb:33
624
628
  msgid "Lock PXE"
625
629
  msgstr ""
626
630
 
627
- #: ../app/models/setting/discovered.rb:36
631
+ #: ../app/models/setting/discovered.rb:34
628
632
  msgid "PXELinux template to be used when pinning a host to discovery"
629
633
  msgstr ""
630
634
 
631
- #: ../app/models/setting/discovered.rb:36
635
+ #: ../app/models/setting/discovered.rb:34
632
636
  msgid "Locked PXELinux template name"
633
637
  msgstr ""
634
638
 
635
- #: ../app/models/setting/discovered.rb:37
639
+ #: ../app/models/setting/discovered.rb:35
636
640
  msgid "PXEGrub template to be used when pinning a host to discovery"
637
641
  msgstr ""
638
642
 
639
- #: ../app/models/setting/discovered.rb:37
643
+ #: ../app/models/setting/discovered.rb:35
640
644
  msgid "Locked PXEGrub template name"
641
645
  msgstr ""
642
646
 
643
- #: ../app/models/setting/discovered.rb:38
647
+ #: ../app/models/setting/discovered.rb:36
644
648
  msgid "PXEGrub2 template to be used when pinning a host to discovery"
645
649
  msgstr ""
646
650
 
647
- #: ../app/models/setting/discovered.rb:38
651
+ #: ../app/models/setting/discovered.rb:36
648
652
  msgid "Locked PXEGrub2 template name"
649
653
  msgstr ""
650
654
 
651
- #: ../app/models/setting/discovered.rb:39
655
+ #: ../app/models/setting/discovered.rb:37
652
656
  msgid "Force DNS entries creation when provisioning discovered host"
653
657
  msgstr ""
654
658
 
655
- #: ../app/models/setting/discovered.rb:39
659
+ #: ../app/models/setting/discovered.rb:37
656
660
  msgid "Force DNS"
657
661
  msgstr ""
658
662
 
659
- #: ../app/models/setting/discovered.rb:40
663
+ #: ../app/models/setting/discovered.rb:38
660
664
  msgid "Do not allow to discover existing managed host matching MAC of a provisioning NIC (errors out early)"
661
665
  msgstr ""
662
666
 
663
- #: ../app/models/setting/discovered.rb:40
667
+ #: ../app/models/setting/discovered.rb:38
664
668
  msgid "Error on existing NIC"
665
669
  msgstr ""
666
670
 
667
- #: ../app/models/setting/discovered.rb:41
671
+ #: ../app/models/setting/discovered.rb:39
668
672
  msgid "Discovery hostname naming pattern"
669
673
  msgstr ""
670
674
 
671
- #: ../app/models/setting/discovered.rb:41
675
+ #: ../app/models/setting/discovered.rb:39
672
676
  msgid "Type of name generator"
673
677
  msgstr ""
674
678
 
@@ -684,14 +688,24 @@ msgstr ""
684
688
  msgid "Unable to find primary NIC with %{mac} specified via '%{fact}', NIC filter: %{filter}"
685
689
  msgstr ""
686
690
 
687
- #: ../app/services/foreman_discovery/node_api/node_resource.rb:75
691
+ #: ../app/services/foreman_discovery/host_converter.rb:47
692
+ msgid "IPAM must be configured for subnet '%s'"
693
+ msgstr ""
694
+
695
+ #: ../app/services/foreman_discovery/node_api/node_resource.rb:76
688
696
  msgid "Image API returned HTTP/%{code} with '%{body}"
689
697
  msgstr ""
690
698
 
691
- #: ../app/services/foreman_discovery/node_api/node_resource.rb:78
699
+ #: ../app/services/foreman_discovery/node_api/node_resource.rb:79
692
700
  msgid "Image API processing error: %{msg} (HTTP/%{code}, body: %{body})"
693
701
  msgstr ""
694
702
 
703
+ #: ../app/views/dashboard/_discovery_widget.html.erb:5
704
+ msgid "Discovered Host"
705
+ msgid_plural "Discovered Hosts"
706
+ msgstr[0] ""
707
+ msgstr[1] ""
708
+
695
709
  #: ../app/views/dashboard/_discovery_widget.html.erb:9
696
710
  msgid "No discovered hosts available"
697
711
  msgstr ""
@@ -995,3 +1009,19 @@ msgstr ""
995
1009
  #: ../lib/foreman_discovery/engine.rb:190
996
1010
  msgid "ID of Discovery Proxy to use within this subnet for managing connection to discovered hosts"
997
1011
  msgstr ""
1012
+
1013
+ #: action_names.rb:2
1014
+ msgid "Remote action:"
1015
+ msgstr ""
1016
+
1017
+ #: action_names.rb:3
1018
+ msgid "Import Puppet classes"
1019
+ msgstr ""
1020
+
1021
+ #: action_names.rb:4
1022
+ msgid "Import facts"
1023
+ msgstr ""
1024
+
1025
+ #: action_names.rb:5
1026
+ msgid "Action with sub plans"
1027
+ msgstr ""