foreman_discovery 13.0.1 → 14.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (104) hide show
  1. checksums.yaml +4 -4
  2. data/app/controllers/concerns/foreman/controller/discovered_extensions.rb +3 -1
  3. data/app/models/host/discovered.rb +8 -78
  4. data/app/models/host/managed_extensions.rb +3 -3
  5. data/app/models/nic/managed_extensions.rb +1 -1
  6. data/app/services/foreman_discovery/import_hook.rb +12 -0
  7. data/app/services/foreman_discovery/import_hook_service.rb +24 -0
  8. data/app/services/foreman_discovery/import_hooks/discovery_attribute.rb +33 -0
  9. data/app/services/foreman_discovery/import_hooks/lldp_neighbor.rb +11 -0
  10. data/app/services/foreman_discovery/import_hooks/lock_templates.rb +27 -0
  11. data/app/services/foreman_discovery/import_hooks/subnet_and_taxonomy.rb +63 -0
  12. data/app/views/discovered_hosts/_discovered_hosts_list.html.erb +1 -1
  13. data/app/views/foreman_discovery/debian_kexec.erb +4 -3
  14. data/app/views/foreman_discovery/redhat_kexec.erb +4 -2
  15. data/db/migrate/20141223142759_fill_discovery_attribute_sets_for_existing_hosts.rb +1 -2
  16. data/db/seeds.d/50_discovery_templates.rb +9 -2
  17. data/extra/discover-host +1 -1
  18. data/lib/foreman_discovery/engine.rb +1 -1
  19. data/lib/foreman_discovery/version.rb +1 -1
  20. data/locale/ca/LC_MESSAGES/foreman_discovery.mo +0 -0
  21. data/locale/ca/foreman_discovery.edit.po +100 -61
  22. data/locale/ca/foreman_discovery.po +31 -4
  23. data/locale/de/LC_MESSAGES/foreman_discovery.mo +0 -0
  24. data/locale/de/foreman_discovery.edit.po +111 -71
  25. data/locale/de/foreman_discovery.po +41 -13
  26. data/locale/en/foreman_discovery.edit.po +21 -17
  27. data/locale/en/foreman_discovery.po +3 -0
  28. data/locale/en_GB/LC_MESSAGES/foreman_discovery.mo +0 -0
  29. data/locale/en_GB/foreman_discovery.edit.po +101 -62
  30. data/locale/en_GB/foreman_discovery.po +31 -4
  31. data/locale/es/LC_MESSAGES/foreman_discovery.mo +0 -0
  32. data/locale/es/foreman_discovery.edit.po +102 -63
  33. data/locale/es/foreman_discovery.po +32 -5
  34. data/locale/foreman_discovery.pot +24 -19
  35. data/locale/fr/LC_MESSAGES/foreman_discovery.mo +0 -0
  36. data/locale/fr/foreman_discovery.edit.po +102 -63
  37. data/locale/fr/foreman_discovery.po +32 -5
  38. data/locale/gl/LC_MESSAGES/foreman_discovery.mo +0 -0
  39. data/locale/gl/foreman_discovery.edit.po +100 -61
  40. data/locale/gl/foreman_discovery.po +31 -4
  41. data/locale/it/LC_MESSAGES/foreman_discovery.mo +0 -0
  42. data/locale/it/foreman_discovery.edit.po +102 -63
  43. data/locale/it/foreman_discovery.po +32 -5
  44. data/locale/ja/LC_MESSAGES/foreman_discovery.mo +0 -0
  45. data/locale/ja/foreman_discovery.edit.po +102 -63
  46. data/locale/ja/foreman_discovery.po +32 -5
  47. data/locale/ko/LC_MESSAGES/foreman_discovery.mo +0 -0
  48. data/locale/ko/foreman_discovery.edit.po +101 -62
  49. data/locale/ko/foreman_discovery.po +31 -4
  50. data/locale/pt_BR/LC_MESSAGES/foreman_discovery.mo +0 -0
  51. data/locale/pt_BR/foreman_discovery.edit.po +102 -63
  52. data/locale/pt_BR/foreman_discovery.po +32 -5
  53. data/locale/ru/LC_MESSAGES/foreman_discovery.mo +0 -0
  54. data/locale/ru/foreman_discovery.edit.po +102 -63
  55. data/locale/ru/foreman_discovery.po +32 -5
  56. data/locale/sv_SE/LC_MESSAGES/foreman_discovery.mo +0 -0
  57. data/locale/sv_SE/foreman_discovery.edit.po +101 -62
  58. data/locale/sv_SE/foreman_discovery.po +32 -5
  59. data/locale/zh_CN/LC_MESSAGES/foreman_discovery.mo +0 -0
  60. data/locale/zh_CN/foreman_discovery.edit.po +101 -62
  61. data/locale/zh_CN/foreman_discovery.po +31 -4
  62. data/locale/zh_TW/LC_MESSAGES/foreman_discovery.mo +0 -0
  63. data/locale/zh_TW/foreman_discovery.edit.po +102 -63
  64. data/locale/zh_TW/foreman_discovery.po +32 -5
  65. data/test/factories/discovery_host_related.rb +1 -1
  66. data/test/factories/discovery_rule_related.rb +4 -4
  67. data/{extra/discovery → test/facts}/default.json +0 -0
  68. data/{extra/discovery/many_ems.json → test/facts/dell_npars.json} +5 -7
  69. data/test/facts/dell_vlan.json +328 -0
  70. data/test/{unit → facts}/facts_with_lldp.json +0 -0
  71. data/test/{unit → facts}/facts_with_lldp_bond_candidate.json +0 -0
  72. data/test/facts/puppet3-virtual.json +109 -0
  73. data/{extra/discovery → test/facts}/pxeless-vlan.json +0 -0
  74. data/test/{unit/facts.json → facts/regular_host.json} +0 -0
  75. data/{extra/discovery → test/facts}/rhel-dl380-1kdisks.json +0 -0
  76. data/{extra/discovery → test/facts}/rhel-r730.json +0 -0
  77. data/{extra/discovery → test/facts}/rhel7-vlan.json +0 -0
  78. data/{extra/discovery → test/facts}/simple-bond.json +0 -0
  79. data/{extra/discovery → test/facts}/suse-vmware.json +0 -0
  80. data/test/facts/vmware_local.json +226 -0
  81. data/test/functional/api/v2/discovered_hosts_controller_test.rb +1 -1
  82. data/test/functional/api/v2/discovery_rules_controller_test.rb +1 -1
  83. data/test/functional/api/v2/fact_value_extensions_test.rb +1 -1
  84. data/test/functional/api/v2/settings_controller_test.rb +1 -1
  85. data/test/functional/discovered_hosts_controller_test.rb +3 -2
  86. data/test/functional/discovery_rules_controller_test.rb +3 -2
  87. data/test/functional/foreman_discovery/concerns/hosts_controller_extensions_test.rb +1 -1
  88. data/test/integration/discovered_hosts_test.rb +1 -1
  89. data/test/models/setting_test.rb +1 -1
  90. data/test/test_helper_discovery.rb +6 -2
  91. data/test/test_plugin_helper.rb +2 -3
  92. data/test/unit/discovered_extensions_test.rb +7 -3
  93. data/test/unit/discovered_mailer_test.rb +1 -1
  94. data/test/unit/discovery_attribute_set_test.rb +2 -6
  95. data/test/unit/discovery_rule_test.rb +1 -1
  96. data/test/unit/discovery_taxonomy_extensions_test.rb +5 -6
  97. data/test/unit/fact_parser_test.rb +1 -1
  98. data/test/unit/host_discovered_test.rb +36 -36
  99. data/test/unit/lldp_neighbors_test.rb +3 -7
  100. data/test/unit/managed_extensions_test.rb +4 -7
  101. data/test/unit/setting_discovered_test.rb +1 -1
  102. data/test/unit/ui_notifications/destroy_host_test.rb +1 -5
  103. data/test/unit/ui_notifications/new_host_test.rb +2 -6
  104. metadata +38 -16
@@ -7,7 +7,7 @@ msgid ""
7
7
  msgstr ""
8
8
  "Project-Id-Version: foreman_discovery 13.0.0\n"
9
9
  "Report-Msgid-Bugs-To: \n"
10
- "PO-Revision-Date: 2018-06-15 10:50+0000\n"
10
+ "PO-Revision-Date: 2018-10-25 20:13+0000\n"
11
11
  "Last-Translator: Carmela Rubiños <carmela.rubinos@gmail.com>\n"
12
12
  "Language-Team: Galician (http://www.transifex.com/foreman/foreman/language/gl/"
13
13
  ")\n"
@@ -32,6 +32,9 @@ msgstr ""
32
32
  msgid "A summary of discovered hosts"
33
33
  msgstr ""
34
34
 
35
+ msgid "Actions"
36
+ msgstr "Accións"
37
+
35
38
  msgid "Assign Location"
36
39
  msgstr "Asignar Lugar"
37
40
 
@@ -47,6 +50,9 @@ msgstr ""
47
50
  msgid "Auto provisioning"
48
51
  msgstr ""
49
52
 
53
+ msgid "Automatic bond interface (if another interface is detected on the same VLAN via LLDP)"
54
+ msgstr ""
55
+
50
56
  msgid "Automatically generate PXE configuration to pin a newly discovered host to discovery"
51
57
  msgstr ""
52
58
 
@@ -74,6 +80,9 @@ msgstr ""
74
80
  msgid "Collapse All"
75
81
  msgstr ""
76
82
 
83
+ msgid "Command line options for kexec during PXE-less provisioning."
84
+ msgstr ""
85
+
77
86
  msgid "Could not get facts from proxy %{url}: %{error}"
78
87
  msgstr ""
79
88
 
@@ -89,6 +98,9 @@ msgstr ""
89
98
  msgid "Create a discovery rule"
90
99
  msgstr ""
91
100
 
101
+ msgid "Create bond interfaces"
102
+ msgstr ""
103
+
92
104
  msgid "Customize Host"
93
105
  msgstr ""
94
106
 
@@ -161,6 +173,9 @@ msgstr ""
161
173
  msgid "Discovery fact parser does not work with non-discovery host '%{host}'"
162
174
  msgstr ""
163
175
 
176
+ msgid "Discovery hostname naming pattern"
177
+ msgstr ""
178
+
164
179
  msgid "Discovery location"
165
180
  msgstr ""
166
181
 
@@ -230,6 +245,9 @@ msgstr ""
230
245
  msgid "Extra facter columns to show in host lists (separate by comma)"
231
246
  msgstr ""
232
247
 
248
+ msgid "Fact + prefix"
249
+ msgstr ""
250
+
233
251
  msgid "Fact columns"
234
252
  msgstr ""
235
253
 
@@ -369,6 +387,9 @@ msgstr ""
369
387
  msgid "Invalid hostname: Could not normalize the hostname"
370
388
  msgstr ""
371
389
 
390
+ msgid "Invalid user type of %s was provided"
391
+ msgstr ""
392
+
372
393
  msgid "Kernel kexec URL is invalid: '%s'"
373
394
  msgstr ""
374
395
 
@@ -414,6 +435,9 @@ msgstr ""
414
435
  msgid "MAC address"
415
436
  msgstr ""
416
437
 
438
+ msgid "MAC-based name"
439
+ msgstr ""
440
+
417
441
  msgid "Maximum hosts provisioned with this rule (0 = unlimited)"
418
442
  msgstr ""
419
443
 
@@ -426,9 +450,6 @@ msgstr ""
426
450
  msgid "Model"
427
451
  msgstr "Modelo"
428
452
 
429
- msgid "Must specify a user with email enabled"
430
- msgstr ""
431
-
432
453
  msgid "N/A"
433
454
  msgstr "N/A"
434
455
 
@@ -513,6 +534,9 @@ msgstr ""
513
534
  msgid "Provision a discovered host"
514
535
  msgstr ""
515
536
 
537
+ msgid "Random name"
538
+ msgstr ""
539
+
516
540
  msgid "Reboot"
517
541
  msgstr ""
518
542
 
@@ -645,6 +669,9 @@ msgstr ""
645
669
  msgid "Type"
646
670
  msgstr ""
647
671
 
672
+ msgid "Type of name generator"
673
+ msgstr ""
674
+
648
675
  msgid "UUID to track orchestration tasks status, GET /api/orchestration/:UUID/tasks"
649
676
  msgstr ""
650
677
 
@@ -9,9 +9,9 @@ msgid ""
9
9
  msgstr ""
10
10
  "Project-Id-Version: foreman_discovery 13.0.0\n"
11
11
  "Report-Msgid-Bugs-To: \n"
12
- "POT-Creation-Date: 2018-06-15 11:25+0200\n"
13
- "PO-Revision-Date: 2018-06-15 10:50+0000\n"
14
- "Last-Translator: Bryan Kearney <bryan.kearney@gmail.com>\n"
12
+ "POT-Creation-Date: 2018-10-25 13:56+0200\n"
13
+ "PO-Revision-Date: 2018-10-25 20:13+0000\n"
14
+ "Last-Translator: Giuseppe Pignataro (Fastbyte01) <rogepix@gmail.com>\n"
15
15
  "Language-Team: Italian (http://www.transifex.com/foreman/foreman/language/it/)\n"
16
16
  "MIME-Version: 1.0\n"
17
17
  "Content-Type: text/plain; charset=UTF-8\n"
@@ -197,11 +197,11 @@ msgstr ""
197
197
  msgid "Create a discovery rule"
198
198
  msgstr "Crea una regola per la scoperta"
199
199
 
200
- #: ../app/controllers/api/v2/discovery_rules_controller.rb:52
200
+ #: ../app/controllers/api/v2/discovery_rules_controller.rb:53
201
201
  msgid "Update a rule"
202
202
  msgstr "Aggiorna una regola"
203
203
 
204
- #: ../app/controllers/api/v2/discovery_rules_controller.rb:60
204
+ #: ../app/controllers/api/v2/discovery_rules_controller.rb:61
205
205
  msgid "Delete a rule"
206
206
  msgstr "Cancella una regola"
207
207
 
@@ -217,11 +217,11 @@ msgstr ""
217
217
  msgid "No hostgroup associated with rule '%s'"
218
218
  msgstr ""
219
219
 
220
- #: ../app/controllers/concerns/foreman/controller/discovered_extensions.rb:71
220
+ #: ../app/controllers/concerns/foreman/controller/discovered_extensions.rb:73
221
221
  msgid "Errors during reboot: %s"
222
222
  msgstr ""
223
223
 
224
- #: ../app/controllers/concerns/foreman/controller/discovered_extensions.rb:89
224
+ #: ../app/controllers/concerns/foreman/controller/discovered_extensions.rb:91
225
225
  msgid "No discovered hosts to reboot"
226
226
  msgstr ""
227
227
 
@@ -342,7 +342,7 @@ msgstr "Aggiorna eventi"
342
342
 
343
343
  #: ../app/helpers/discovered_hosts_helper.rb:16
344
344
  #: ../app/helpers/discovered_hosts_helper.rb:30
345
- #: ../app/models/setting/discovered.rb:23
345
+ #: ../app/models/setting/discovered.rb:24
346
346
  #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:48
347
347
  msgid "Reboot"
348
348
  msgstr "Riavvia"
@@ -430,27 +430,27 @@ msgstr ""
430
430
  msgid "Delete rule '%s'?"
431
431
  msgstr ""
432
432
 
433
- #: ../app/mailers/discovered_mailer.rb:4
434
- msgid "Must specify a user with email enabled"
435
- msgstr "Specificare un utente con una email abilitata"
433
+ #: ../app/mailers/discovered_mailer.rb:9
434
+ msgid "Invalid user type of %s was provided"
435
+ msgstr ""
436
436
 
437
- #: ../app/mailers/discovered_mailer.rb:15
437
+ #: ../app/mailers/discovered_mailer.rb:26
438
438
  msgid "Discovered hosts summary"
439
439
  msgstr ""
440
440
 
441
- #: ../app/models/discovery_rule.rb:10
441
+ #: ../app/models/discovery_rule.rb:11
442
442
  msgid "can't contain white spaces."
443
443
  msgstr "non può avere spazi."
444
444
 
445
- #: ../app/models/discovery_rule.rb:12
445
+ #: ../app/models/discovery_rule.rb:13
446
446
  msgid "must start with a letter or ERB."
447
447
  msgstr "deve iniziare con una lettera o ERB."
448
448
 
449
- #: ../app/models/discovery_rule.rb:15
449
+ #: ../app/models/discovery_rule.rb:16
450
450
  msgid "must be present."
451
451
  msgstr ""
452
452
 
453
- #: ../app/models/discovery_rule.rb:48
453
+ #: ../app/models/discovery_rule.rb:53
454
454
  msgid ""
455
455
  "Host group organization %s must also be associated to the discovery rule"
456
456
  msgid_plural ""
@@ -458,46 +458,58 @@ msgid_plural ""
458
458
  msgstr[0] ""
459
459
  msgstr[1] ""
460
460
 
461
- #: ../app/models/discovery_rule.rb:54
461
+ #: ../app/models/discovery_rule.rb:59
462
462
  msgid "Host group location %s must also be associated to the discovery rule"
463
463
  msgid_plural ""
464
464
  "Host group locations %s must also be associated to the discovery rule"
465
465
  msgstr[0] ""
466
466
  msgstr[1] ""
467
467
 
468
- #: ../app/models/host/discovered.rb:51
468
+ #: ../app/models/host/discovered.rb:45
469
+ msgid "Fact + prefix"
470
+ msgstr ""
471
+
472
+ #: ../app/models/host/discovered.rb:46
473
+ msgid "Random name"
474
+ msgstr ""
475
+
476
+ #: ../app/models/host/discovered.rb:47
477
+ msgid "MAC-based name"
478
+ msgstr ""
479
+
480
+ #: ../app/models/host/discovered.rb:56
469
481
  msgid "Invalid facts, must be a Hash"
470
482
  msgstr "Eventi non validi, deve essere un Hash"
471
483
 
472
- #: ../app/models/host/discovered.rb:56
484
+ #: ../app/models/host/discovered.rb:61
473
485
  msgid ""
474
486
  "Expected discovery_fact '%s' is missing, unable to detect primary interface "
475
487
  "and set hostname"
476
488
  msgstr ""
477
489
 
478
- #: ../app/models/host/discovered.rb:63
490
+ #: ../app/models/host/discovered.rb:74
479
491
  msgid ""
480
492
  "Invalid facts: hash does not contain a valid value for any of the facts in "
481
493
  "the discovery_hostname setting: %s"
482
494
  msgstr ""
483
495
 
484
- #: ../app/models/host/discovered.rb:89
496
+ #: ../app/models/host/discovered.rb:100
485
497
  msgid "Facts could not be imported"
486
498
  msgstr ""
487
499
 
488
- #: ../app/models/host/discovered.rb:212
500
+ #: ../app/models/host/discovered.rb:155
489
501
  msgid "Could not get facts from proxy %{url}: %{error}"
490
502
  msgstr "Impossibile ottenere gli eventi dal proxy %{url}: %{error}"
491
503
 
492
- #: ../app/models/host/discovered.rb:220
504
+ #: ../app/models/host/discovered.rb:163
493
505
  msgid "Unable to reboot %{name} via %{url}: %{msg}"
494
506
  msgstr ""
495
507
 
496
- #: ../app/models/host/discovered.rb:228
508
+ #: ../app/models/host/discovered.rb:171
497
509
  msgid "Unable to perform kexec on %{name} via %{url}: %{msg}"
498
510
  msgstr ""
499
511
 
500
- #: ../app/models/host/discovered.rb:247
512
+ #: ../app/models/host/discovered.rb:190
501
513
  msgid "Invalid hostname: Could not normalize the hostname"
502
514
  msgstr ""
503
515
 
@@ -534,164 +546,182 @@ msgid "Interface fact"
534
546
  msgstr ""
535
547
 
536
548
  #: ../app/models/setting/discovered.rb:20
537
- msgid "Clean all reported facts during provisioning (except discovery facts)"
549
+ msgid ""
550
+ "Automatic bond interface (if another interface is detected on the same VLAN "
551
+ "via LLDP)"
538
552
  msgstr ""
539
553
 
540
554
  #: ../app/models/setting/discovered.rb:20
541
- msgid "Clean all facts"
555
+ msgid "Create bond interfaces"
542
556
  msgstr ""
543
557
 
544
558
  #: ../app/models/setting/discovered.rb:21
545
- msgid "List of facts to use for the hostname (separated by comma, first wins)"
559
+ msgid "Clean all reported facts during provisioning (except discovery facts)"
546
560
  msgstr ""
547
561
 
548
562
  #: ../app/models/setting/discovered.rb:21
549
- msgid "Hostname facts"
563
+ msgid "Clean all facts"
550
564
  msgstr ""
551
565
 
552
566
  #: ../app/models/setting/discovered.rb:22
567
+ msgid "List of facts to use for the hostname (separated by comma, first wins)"
568
+ msgstr ""
569
+
570
+ #: ../app/models/setting/discovered.rb:22
571
+ msgid "Hostname facts"
572
+ msgstr ""
573
+
574
+ #: ../app/models/setting/discovered.rb:23
553
575
  msgid ""
554
576
  "Automatically provision newly discovered hosts, according to the "
555
577
  "provisioning rules"
556
578
  msgstr "Esegui automaticamente il provisioning degli host trovati, in base alle regole per il provisioning"
557
579
 
558
- #: ../app/models/setting/discovered.rb:22
580
+ #: ../app/models/setting/discovered.rb:23
559
581
  msgid "Auto provisioning"
560
582
  msgstr ""
561
583
 
562
- #: ../app/models/setting/discovered.rb:23
584
+ #: ../app/models/setting/discovered.rb:24
563
585
  msgid "Automatically reboot or kexec discovered host during provisioning"
564
586
  msgstr ""
565
587
 
566
- #: ../app/models/setting/discovered.rb:24
588
+ #: ../app/models/setting/discovered.rb:25
567
589
  msgid "The default prefix to use for the host name, must start with a letter"
568
590
  msgstr "Il prefisso predefinito da usare per l'hostname, deve iniziare con una lettera"
569
591
 
570
- #: ../app/models/setting/discovered.rb:24
592
+ #: ../app/models/setting/discovered.rb:25
571
593
  msgid "Hostname prefix"
572
594
  msgstr ""
573
595
 
574
- #: ../app/models/setting/discovered.rb:25
596
+ #: ../app/models/setting/discovered.rb:26
575
597
  msgid "Extra facter columns to show in host lists (separate by comma)"
576
598
  msgstr ""
577
599
 
578
- #: ../app/models/setting/discovered.rb:25
600
+ #: ../app/models/setting/discovered.rb:26
579
601
  msgid "Fact columns"
580
602
  msgstr ""
581
603
 
582
- #: ../app/models/setting/discovered.rb:26
604
+ #: ../app/models/setting/discovered.rb:27
583
605
  msgid "Regex to organize facts for highlights section - e.g. ^(abc|cde)$"
584
606
  msgstr ""
585
607
 
586
- #: ../app/models/setting/discovered.rb:26
608
+ #: ../app/models/setting/discovered.rb:27
587
609
  msgid "Highlighted facts"
588
610
  msgstr ""
589
611
 
590
- #: ../app/models/setting/discovered.rb:27
612
+ #: ../app/models/setting/discovered.rb:28
591
613
  msgid "Regex to organize facts for storage section"
592
614
  msgstr ""
593
615
 
594
- #: ../app/models/setting/discovered.rb:27
616
+ #: ../app/models/setting/discovered.rb:28
595
617
  msgid "Storage facts"
596
618
  msgstr ""
597
619
 
598
- #: ../app/models/setting/discovered.rb:28
620
+ #: ../app/models/setting/discovered.rb:29
599
621
  msgid "Regex to organize facts for software section"
600
622
  msgstr ""
601
623
 
602
- #: ../app/models/setting/discovered.rb:28
624
+ #: ../app/models/setting/discovered.rb:29
603
625
  msgid "Software facts"
604
626
  msgstr ""
605
627
 
606
- #: ../app/models/setting/discovered.rb:29
628
+ #: ../app/models/setting/discovered.rb:30
607
629
  msgid "Regex to organize facts for hardware section"
608
630
  msgstr ""
609
631
 
610
- #: ../app/models/setting/discovered.rb:29
632
+ #: ../app/models/setting/discovered.rb:30
611
633
  msgid "Hardware facts"
612
634
  msgstr ""
613
635
 
614
- #: ../app/models/setting/discovered.rb:30
636
+ #: ../app/models/setting/discovered.rb:31
615
637
  msgid "Regex to organize facts for network section"
616
638
  msgstr ""
617
639
 
618
- #: ../app/models/setting/discovered.rb:30
640
+ #: ../app/models/setting/discovered.rb:31
619
641
  msgid "Network facts"
620
642
  msgstr ""
621
643
 
622
- #: ../app/models/setting/discovered.rb:31
644
+ #: ../app/models/setting/discovered.rb:32
623
645
  msgid "Regex to organize facts for ipmi section"
624
646
  msgstr ""
625
647
 
626
- #: ../app/models/setting/discovered.rb:31
648
+ #: ../app/models/setting/discovered.rb:32
627
649
  msgid "IPMI facts"
628
650
  msgstr ""
629
651
 
630
- #: ../app/models/setting/discovered.rb:32
652
+ #: ../app/models/setting/discovered.rb:33
631
653
  msgid ""
632
654
  "Automatically generate PXE configuration to pin a newly discovered host to "
633
655
  "discovery"
634
656
  msgstr ""
635
657
 
636
- #: ../app/models/setting/discovered.rb:32
658
+ #: ../app/models/setting/discovered.rb:33
637
659
  msgid "Lock PXE"
638
660
  msgstr ""
639
661
 
640
- #: ../app/models/setting/discovered.rb:33
662
+ #: ../app/models/setting/discovered.rb:34
641
663
  msgid "PXELinux template to be used when pinning a host to discovery"
642
664
  msgstr ""
643
665
 
644
- #: ../app/models/setting/discovered.rb:33
666
+ #: ../app/models/setting/discovered.rb:34
645
667
  msgid "Locked PXELinux template name"
646
668
  msgstr ""
647
669
 
648
- #: ../app/models/setting/discovered.rb:34
670
+ #: ../app/models/setting/discovered.rb:35
649
671
  msgid "PXEGrub template to be used when pinning a host to discovery"
650
672
  msgstr ""
651
673
 
652
- #: ../app/models/setting/discovered.rb:34
674
+ #: ../app/models/setting/discovered.rb:35
653
675
  msgid "Locked PXEGrub template name"
654
676
  msgstr ""
655
677
 
656
- #: ../app/models/setting/discovered.rb:35
678
+ #: ../app/models/setting/discovered.rb:36
657
679
  msgid "PXEGrub2 template to be used when pinning a host to discovery"
658
680
  msgstr ""
659
681
 
660
- #: ../app/models/setting/discovered.rb:35
682
+ #: ../app/models/setting/discovered.rb:36
661
683
  msgid "Locked PXEGrub2 template name"
662
684
  msgstr ""
663
685
 
664
- #: ../app/models/setting/discovered.rb:36
686
+ #: ../app/models/setting/discovered.rb:37
665
687
  msgid "Force DNS entries creation when provisioning discovered host"
666
688
  msgstr ""
667
689
 
668
- #: ../app/models/setting/discovered.rb:36
690
+ #: ../app/models/setting/discovered.rb:37
669
691
  msgid "Force DNS"
670
692
  msgstr ""
671
693
 
672
- #: ../app/models/setting/discovered.rb:37
694
+ #: ../app/models/setting/discovered.rb:38
673
695
  msgid ""
674
696
  "Do not allow to discover existing managed host matching MAC of a "
675
697
  "provisioning NIC (errors out early)"
676
698
  msgstr ""
677
699
 
678
- #: ../app/models/setting/discovered.rb:37
700
+ #: ../app/models/setting/discovered.rb:38
679
701
  msgid "Error on existing NIC"
680
702
  msgstr ""
681
703
 
682
- #: ../app/models/setting/discovered.rb:44
704
+ #: ../app/models/setting/discovered.rb:39
705
+ msgid "Discovery hostname naming pattern"
706
+ msgstr ""
707
+
708
+ #: ../app/models/setting/discovered.rb:39
709
+ msgid "Type of name generator"
710
+ msgstr ""
711
+
712
+ #: ../app/models/setting/discovered.rb:46
683
713
  msgid "The default location to place discovered hosts in"
684
714
  msgstr "La posizione predefinita nella quale posizionare gli host trovati"
685
715
 
686
- #: ../app/models/setting/discovered.rb:44
716
+ #: ../app/models/setting/discovered.rb:46
687
717
  msgid "Discovery location"
688
718
  msgstr ""
689
719
 
690
- #: ../app/models/setting/discovered.rb:52
720
+ #: ../app/models/setting/discovered.rb:54
691
721
  msgid "The default organization to place discovered hosts in"
692
722
  msgstr "L'organizzazione predefinita nella quale posizionare gli host trovati"
693
723
 
694
- #: ../app/models/setting/discovered.rb:52
724
+ #: ../app/models/setting/discovered.rb:54
695
725
  msgid "Discovery organization"
696
726
  msgstr ""
697
727
 
@@ -802,6 +832,11 @@ msgstr "Sottorete"
802
832
  msgid "Last Facts Upload"
803
833
  msgstr ""
804
834
 
835
+ #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:24
836
+ #: ../app/views/discovery_rules/index.html.erb:12
837
+ msgid "Actions"
838
+ msgstr "Azioni"
839
+
805
840
  #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:60
806
841
  msgid "Please Confirm"
807
842
  msgstr "Conferma"
@@ -1016,6 +1051,10 @@ msgstr "Abilitata"
1016
1051
  msgid "New Discovery Rule"
1017
1052
  msgstr "Nuova regola per la scoperta"
1018
1053
 
1054
+ #: ../db/seeds.d/50_discovery_templates.rb:5
1055
+ msgid "Command line options for kexec during PXE-less provisioning."
1056
+ msgstr ""
1057
+
1019
1058
  #: ../db/seeds.d/70_discovery_mail_notification.rb:3
1020
1059
  msgid "A summary of discovered hosts"
1021
1060
  msgstr ""