foreman_discovery 11.0.0 → 12.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (90) hide show
  1. checksums.yaml +5 -5
  2. data/app/controllers/api/v2/discovered_hosts_controller.rb +1 -2
  3. data/app/controllers/concerns/foreman/controller/discovered_extensions.rb +1 -1
  4. data/app/controllers/discovered_hosts_controller.rb +21 -11
  5. data/app/controllers/foreman_discovery/concerns/hosts_controller_extensions.rb +1 -1
  6. data/app/helpers/discovered_hosts_helper.rb +9 -11
  7. data/app/models/discovery_rule.rb +3 -0
  8. data/app/models/host/discovered.rb +59 -19
  9. data/app/models/setting/discovered.rb +1 -0
  10. data/app/services/foreman_discovery/fact_parser.rb +6 -2
  11. data/app/services/foreman_discovery/ui_notifications/new_host.rb +3 -1
  12. data/app/views/dashboard/_discovery_widget_host_list.html.erb +1 -1
  13. data/app/views/discovered_hosts/_discovered_hosts_list.html.erb +2 -3
  14. data/app/views/discovered_hosts/_selected_hosts.html.erb +1 -1
  15. data/app/views/discovered_hosts/index.html.erb +0 -2
  16. data/app/views/discovered_hosts/multiple_auto_provision.html.erb +4 -0
  17. data/app/views/discovered_hosts/multiple_reboot.html.erb +4 -0
  18. data/app/views/discovered_hosts/show.html.erb +27 -15
  19. data/app/views/discovery_rules/_form.html.erb +9 -3
  20. data/app/views/discovery_rules/edit.html.erb +1 -1
  21. data/app/views/discovery_rules/index.html.erb +2 -2
  22. data/app/views/foreman_discovery/debian_kexec.erb +1 -1
  23. data/app/views/foreman_discovery/redhat_kexec.erb +1 -1
  24. data/config/as_deprecation_whitelist.yaml +395 -0
  25. data/config/routes.rb +7 -5
  26. data/db/migrate/20171222120314_add_constraints_on_discovery_rules_hostgroups.rb +10 -0
  27. data/db/migrate/20180412124505_add_priority_score_to_discovery_rules.rb +24 -0
  28. data/extra/discover-host +7 -5
  29. data/extra/discovery/simple-bond.json +167 -0
  30. data/lib/foreman_discovery/engine.rb +9 -3
  31. data/lib/foreman_discovery/version.rb +1 -1
  32. data/locale/ca/LC_MESSAGES/foreman_discovery.mo +0 -0
  33. data/locale/ca/foreman_discovery.edit.po +148 -221
  34. data/locale/ca/foreman_discovery.po +25 -19
  35. data/locale/de/LC_MESSAGES/foreman_discovery.mo +0 -0
  36. data/locale/de/foreman_discovery.edit.po +147 -221
  37. data/locale/de/foreman_discovery.po +26 -20
  38. data/locale/en/foreman_discovery.edit.po +106 -98
  39. data/locale/en/foreman_discovery.po +24 -18
  40. data/locale/en_GB/LC_MESSAGES/foreman_discovery.mo +0 -0
  41. data/locale/en_GB/foreman_discovery.edit.po +149 -222
  42. data/locale/en_GB/foreman_discovery.po +26 -20
  43. data/locale/es/LC_MESSAGES/foreman_discovery.mo +0 -0
  44. data/locale/es/foreman_discovery.edit.po +149 -222
  45. data/locale/es/foreman_discovery.po +26 -20
  46. data/locale/foreman_discovery.pot +115 -103
  47. data/locale/fr/LC_MESSAGES/foreman_discovery.mo +0 -0
  48. data/locale/fr/foreman_discovery.edit.po +147 -221
  49. data/locale/fr/foreman_discovery.po +26 -20
  50. data/locale/gl/foreman_discovery.edit.po +147 -220
  51. data/locale/gl/foreman_discovery.po +24 -18
  52. data/locale/it/LC_MESSAGES/foreman_discovery.mo +0 -0
  53. data/locale/it/foreman_discovery.edit.po +148 -221
  54. data/locale/it/foreman_discovery.po +25 -19
  55. data/locale/ja/LC_MESSAGES/foreman_discovery.mo +0 -0
  56. data/locale/ja/foreman_discovery.edit.po +149 -222
  57. data/locale/ja/foreman_discovery.po +26 -20
  58. data/locale/ko/LC_MESSAGES/foreman_discovery.mo +0 -0
  59. data/locale/ko/foreman_discovery.edit.po +149 -221
  60. data/locale/ko/foreman_discovery.po +26 -20
  61. data/locale/pt_BR/LC_MESSAGES/foreman_discovery.mo +0 -0
  62. data/locale/pt_BR/foreman_discovery.edit.po +149 -222
  63. data/locale/pt_BR/foreman_discovery.po +26 -20
  64. data/locale/ru/LC_MESSAGES/foreman_discovery.mo +0 -0
  65. data/locale/ru/foreman_discovery.edit.po +152 -223
  66. data/locale/ru/foreman_discovery.po +26 -20
  67. data/locale/sv_SE/LC_MESSAGES/foreman_discovery.mo +0 -0
  68. data/locale/sv_SE/foreman_discovery.edit.po +147 -220
  69. data/locale/sv_SE/foreman_discovery.po +24 -18
  70. data/locale/zh_CN/LC_MESSAGES/foreman_discovery.mo +0 -0
  71. data/locale/zh_CN/foreman_discovery.edit.po +155 -224
  72. data/locale/zh_CN/foreman_discovery.po +26 -20
  73. data/locale/zh_TW/LC_MESSAGES/foreman_discovery.mo +0 -0
  74. data/locale/zh_TW/foreman_discovery.edit.po +151 -222
  75. data/locale/zh_TW/foreman_discovery.po +26 -20
  76. data/test/functional/api/v2/discovered_hosts_controller_test.rb +2 -0
  77. data/test/functional/api/v2/discovery_rules_controller_test.rb +96 -9
  78. data/test/functional/api/v2/settings_controller_test.rb +22 -0
  79. data/test/functional/discovered_hosts_controller_test.rb +20 -21
  80. data/test/functional/discovery_rules_controller_test.rb +5 -4
  81. data/test/integration/discovered_hosts_test.rb +20 -10
  82. data/test/models/setting_test.rb +11 -0
  83. data/test/test_helper_discovery.rb +1 -0
  84. data/test/unit/discovered_extensions_test.rb +2 -13
  85. data/test/unit/discovery_rule_test.rb +87 -1
  86. data/test/unit/fact_parser_test.rb +2 -2
  87. data/test/unit/host_discovered_test.rb +60 -28
  88. data/test/unit/ui_notifications/destroy_host_test.rb +14 -4
  89. data/test/unit/ui_notifications/new_host_test.rb +8 -1
  90. metadata +22 -4
@@ -44,9 +44,6 @@ msgstr ""
44
44
  msgid "Auto Provision"
45
45
  msgstr ""
46
46
 
47
- msgid "Auto Provision All"
48
- msgstr ""
49
-
50
47
  msgid "Auto provisioning"
51
48
  msgstr ""
52
49
 
@@ -74,6 +71,9 @@ msgstr ""
74
71
  msgid "Clean all reported facts during provisioning (except discovery facts)"
75
72
  msgstr ""
76
73
 
74
+ msgid "Collapse All"
75
+ msgstr ""
76
+
77
77
  msgid "Could not get facts from proxy %{url}: %{error}"
78
78
  msgstr ""
79
79
 
@@ -95,6 +95,9 @@ msgstr ""
95
95
  msgid "DHCP filename option (Grub2 or PXELinux by default)"
96
96
  msgstr ""
97
97
 
98
+ msgid "Delete"
99
+ msgstr ""
100
+
98
101
  msgid "Delete %s?"
99
102
  msgstr "¿Borrar %s?"
100
103
 
@@ -104,9 +107,6 @@ msgstr ""
104
107
  msgid "Delete a rule"
105
108
  msgstr ""
106
109
 
107
- msgid "Delete hosts"
108
- msgstr ""
109
-
110
110
  msgid "Delete rule '%s'?"
111
111
  msgstr ""
112
112
 
@@ -125,6 +125,9 @@ msgstr ""
125
125
  msgid "Discovered Hosts"
126
126
  msgstr ""
127
127
 
128
+ msgid "Discovered host '%{host}' has all NICs filtered out, filter: %{filter}"
129
+ msgstr ""
130
+
128
131
  msgid "Discovered host: %s"
129
132
  msgstr ""
130
133
 
@@ -155,6 +158,9 @@ msgstr ""
155
158
  msgid "Discovery Rules"
156
159
  msgstr ""
157
160
 
161
+ msgid "Discovery fact parser does not work with non-discovery host '%{host}'"
162
+ msgstr ""
163
+
158
164
  msgid "Discovery location"
159
165
  msgstr ""
160
166
 
@@ -188,10 +194,13 @@ msgstr ""
188
194
  msgid "Disks size"
189
195
  msgstr ""
190
196
 
197
+ msgid "Do not allow to discover existing managed host matching MAC of a provisioning NIC (errors out early)"
198
+ msgstr ""
199
+
191
200
  msgid "Domain will be appended automatically. A hostname based on MAC address will be used when left blank."
192
201
  msgstr ""
193
202
 
194
- msgid "Edit Discovery Rule"
203
+ msgid "Edit %s"
195
204
  msgstr ""
196
205
 
197
206
  msgid "Enable"
@@ -200,6 +209,9 @@ msgstr ""
200
209
  msgid "Enable rule '%s'?"
201
210
  msgstr ""
202
211
 
212
+ msgid "Error on existing NIC"
213
+ msgstr ""
214
+
203
215
  msgid "Errors during auto provisioning: %s"
204
216
  msgstr ""
205
217
 
@@ -212,9 +224,6 @@ msgstr ""
212
224
  msgid "Execute rules against all currently discovered hosts"
213
225
  msgstr ""
214
226
 
215
- msgid "Expand All"
216
- msgstr ""
217
-
218
227
  msgid "Expected discovery_fact '%s' is missing, unable to detect primary interface and set hostname"
219
228
  msgstr ""
220
229
 
@@ -507,9 +516,6 @@ msgstr ""
507
516
  msgid "Reboot"
508
517
  msgstr ""
509
518
 
510
- msgid "Reboot All"
511
- msgstr ""
512
-
513
519
  msgid "Rebooting %s"
514
520
  msgstr ""
515
521
 
@@ -642,13 +648,10 @@ msgstr ""
642
648
  msgid "UUID to track orchestration tasks status, GET /api/orchestration/:UUID/tasks"
643
649
  msgstr ""
644
650
 
645
- msgid "Unable to assign subnet, primary interface is missing IP address"
646
- msgstr ""
647
-
648
- msgid "Unable to detect primary interface using MAC '%{mac}' specified by discovery_fact '%{fact}'"
651
+ msgid "Unable to find a discovery rule, no host provided (check permissions)"
649
652
  msgstr ""
650
653
 
651
- msgid "Unable to find a discovery rule, no host provided (check permissions)"
654
+ msgid "Unable to find primary NIC with %{mac} specified via '%{fact}', NIC filter: %{filter}"
652
655
  msgstr ""
653
656
 
654
657
  msgid "Unable to perform kexec on %{name} via %{url}: %{msg}"
@@ -693,6 +696,9 @@ msgstr "obxetos seleccionados. Desactivar para limpar"
693
696
  msgid "location ID for provisioned hosts"
694
697
  msgstr ""
695
698
 
699
+ msgid "must be present."
700
+ msgstr ""
701
+
696
702
  msgid "must start with a letter or ERB."
697
703
  msgstr ""
698
704
 
@@ -1,7 +1,7 @@
1
1
  # SOME DESCRIPTIVE TITLE.
2
2
  # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
3
3
  # This file is distributed under the same license as the foreman_discovery package.
4
- #
4
+ #
5
5
  # Translators:
6
6
  # caifti <caifti@gmail.com>, 2014
7
7
  # caifti <caifti@gmail.com>, 2014
@@ -9,10 +9,10 @@ msgid ""
9
9
  msgstr ""
10
10
  "Project-Id-Version: foreman_discovery 10.0.0\n"
11
11
  "Report-Msgid-Bugs-To: \n"
12
- "POT-Creation-Date: 2017-12-11 10:28+0100\n"
13
12
  "PO-Revision-Date: 2018-01-05 19:26+0000\n"
14
13
  "Last-Translator: Bryan Kearney <bryan.kearney@gmail.com>\n"
15
- "Language-Team: Italian (http://www.transifex.com/foreman/foreman/language/it/)\n"
14
+ "Language-Team: Italian (http://www.transifex.com/foreman/foreman/language/it/)"
15
+ "\n"
16
16
  "MIME-Version: 1.0\n"
17
17
  "Content-Type: text/plain; charset=UTF-8\n"
18
18
  "Content-Transfer-Encoding: 8bit\n"
@@ -23,23 +23,19 @@ msgstr ""
23
23
  msgid "List all discovered hosts"
24
24
  msgstr "Elenca tutti gli host rilevati"
25
25
 
26
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:17
27
- #: ../app/controllers/api/v2/discovery_rules_controller.rb:15
26
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:17 ../app/controllers/api/v2/discovery_rules_controller.rb:15
28
27
  msgid "filter results"
29
28
  msgstr "filtra i risultati"
30
29
 
31
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:18
32
- #: ../app/controllers/api/v2/discovery_rules_controller.rb:16
30
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:18 ../app/controllers/api/v2/discovery_rules_controller.rb:16
33
31
  msgid "sort results"
34
32
  msgstr "ordina risultati"
35
33
 
36
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:19
37
- #: ../app/controllers/api/v2/discovery_rules_controller.rb:17
34
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:19 ../app/controllers/api/v2/discovery_rules_controller.rb:17
38
35
  msgid "paginate results"
39
36
  msgstr "paginazione risultati"
40
37
 
41
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:20
42
- #: ../app/controllers/api/v2/discovery_rules_controller.rb:18
38
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:20 ../app/controllers/api/v2/discovery_rules_controller.rb:18
43
39
  msgid "number of entries per request"
44
40
  msgstr "numero di voci per richiesta"
45
41
 
@@ -47,8 +43,7 @@ msgstr "numero di voci per richiesta"
47
43
  msgid "Show a discovered host"
48
44
  msgstr "Visualizza un host rilevato"
49
45
 
50
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:37
51
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:79
46
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:37 ../app/controllers/api/v2/discovered_hosts_controller.rb:79
52
47
  msgid "DHCP filename option (Grub2 or PXELinux by default)"
53
48
  msgstr ""
54
49
 
@@ -69,14 +64,11 @@ msgid "not required if it's a virtual machine"
69
64
  msgstr "non necessario se è una macchina virtuale"
70
65
 
71
66
  #: ../app/controllers/api/v2/discovered_hosts_controller.rb:76
72
- msgid ""
73
- "UUID to track orchestration tasks status, GET /api/orchestration/:UUID/tasks"
67
+ msgid "UUID to track orchestration tasks status, GET /api/orchestration/:UUID/tasks"
74
68
  msgstr "UUID per controllare gli stati dei compiti d'orchestrazione, GET /api/orchestration/:UUID/tasks"
75
69
 
76
70
  #: ../app/controllers/api/v2/discovered_hosts_controller.rb:78
77
- msgid ""
78
- "required if value is not inherited from host group or default password in "
79
- "settings"
71
+ msgid "required if value is not inherited from host group or default password in settings"
80
72
  msgstr "necessario se il valore non è ereditato da un gruppo di host o password predefinita nelle impostazione"
81
73
 
82
74
  #: ../app/controllers/api/v2/discovered_hosts_controller.rb:89
@@ -88,62 +80,54 @@ msgid "Upload facts for a host, creating the host if required"
88
80
  msgstr "Carica gli eventi per un host creando, se necessario, un host"
89
81
 
90
82
  #: ../app/controllers/api/v2/discovered_hosts_controller.rb:97
91
- msgid ""
92
- "hash containing facts for the host with minimum set of facts: "
93
- "discovery_bootif, macaddress_eth0, ipaddress, ipaddress_eth0, interfaces: "
94
- "eth0 (example in case primary interface is named eth0)"
83
+ 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)"
95
84
  msgstr ""
96
85
 
97
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:117
86
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:116
98
87
  msgid "Execute rules against a discovered host"
99
88
  msgstr "Esegui le regole nei confronti di un host rilevato"
100
89
 
101
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:123
102
- #: ../app/controllers/discovered_hosts_controller.rb:150
90
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:122 ../app/controllers/discovered_hosts_controller.rb:159
103
91
  msgid "Host %{host} was provisioned with rule %{rule}"
104
92
  msgstr "È stato eseguito il provisioning dell'host %{host} con la regola %{rule}"
105
93
 
106
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:126
94
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:125
107
95
  msgid "Unable to provision %{host}: %{errors}"
108
96
  msgstr ""
109
97
 
110
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:132
111
- #: ../app/controllers/discovered_hosts_controller.rb:157
98
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:131 ../app/controllers/discovered_hosts_controller.rb:166
112
99
  msgid "No rule found for host %s"
113
100
  msgstr "Nessuna regola trovata per l'host %s"
114
101
 
115
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:139
102
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:138
116
103
  msgid "Execute rules against all currently discovered hosts"
117
104
  msgstr "Esegui le regole nei confronti degli host attualemente rilevati"
118
105
 
119
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:143
120
- #: ../app/controllers/discovered_hosts_controller.rb:163
106
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:142 ../app/controllers/discovered_hosts_controller.rb:172
121
107
  msgid "Errors during auto provisioning: %s"
122
108
  msgstr "Errore durante auto provisioning: %s"
123
109
 
124
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:146
125
- #: ../app/controllers/discovered_hosts_controller.rb:166
110
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:145 ../app/controllers/discovered_hosts_controller.rb:175
126
111
  msgid "No discovered hosts to provision"
127
112
  msgstr "Nessun host rilevato per il provisioning"
128
113
 
129
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:168
114
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:167
130
115
  msgid "%s discovered hosts were provisioned"
131
116
  msgstr ""
132
117
 
133
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:179
118
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:178
134
119
  msgid "Refreshing the facts of a discovered host"
135
120
  msgstr "Aggiornamento eventi di un host rilevato"
136
121
 
137
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:188
122
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:187
138
123
  msgid "Rebooting a discovered host"
139
124
  msgstr "Riavvio di un host rilevato"
140
125
 
141
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:197
126
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:196
142
127
  msgid "Rebooting all discovered hosts"
143
128
  msgstr ""
144
129
 
145
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:208
146
- #: ../app/controllers/discovered_hosts_controller.rb:125
130
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:207 ../app/controllers/discovered_hosts_controller.rb:128
147
131
  msgid "Discovered hosts are rebooting now"
148
132
  msgstr ""
149
133
 
@@ -168,8 +152,7 @@ msgid "the hostgroup that is used to auto provision a host"
168
152
  msgstr "gruppo di host usato per l'auto provision di un host"
169
153
 
170
154
  #: ../app/controllers/api/v2/discovery_rules_controller.rb:35
171
- msgid ""
172
- "defines a pattern to assign human-readable hostnames to the matching hosts"
155
+ msgid "defines a pattern to assign human-readable hostnames to the matching hosts"
173
156
  msgstr "definisce uno schema per assegnare gli hostname leggibili dall'utente agli host corrispondenti"
174
157
 
175
158
  #: ../app/controllers/api/v2/discovery_rules_controller.rb:36
@@ -177,8 +160,7 @@ msgid "enables to limit maximum amount of provisioned hosts per rule"
177
160
  msgstr "permette di limitare la quantità massima di host con provisioning per regola"
178
161
 
179
162
  #: ../app/controllers/api/v2/discovery_rules_controller.rb:37
180
- msgid ""
181
- "puts the rules in order, low numbers go first. Must be greater then zero"
163
+ msgid "puts the rules in order, low numbers go first. Must be greater then zero"
182
164
  msgstr "ordina le regole, i numeri più piccoli hanno maggiore priorità. Deve essere maggiore di zero."
183
165
 
184
166
  #: ../app/controllers/api/v2/discovery_rules_controller.rb:38
@@ -225,95 +207,95 @@ msgstr ""
225
207
  msgid "No discovered hosts to reboot"
226
208
  msgstr ""
227
209
 
228
- #: ../app/controllers/discovered_hosts_controller.rb:61
210
+ #: ../app/controllers/discovered_hosts_controller.rb:63
229
211
  msgid "Successfully provisioned %s"
230
212
  msgstr ""
231
213
 
232
- #: ../app/controllers/discovered_hosts_controller.rb:93
214
+ #: ../app/controllers/discovered_hosts_controller.rb:96
233
215
  msgid "Facts refreshed for %s"
234
216
  msgstr "Eventi aggiornati per %s"
235
217
 
236
- #: ../app/controllers/discovered_hosts_controller.rb:95
218
+ #: ../app/controllers/discovered_hosts_controller.rb:98
237
219
  msgid "Failed to refresh facts for %s"
238
220
  msgstr "Impossibile aggiornare gli eventi per %s"
239
221
 
240
- #: ../app/controllers/discovered_hosts_controller.rb:98
222
+ #: ../app/controllers/discovered_hosts_controller.rb:101
241
223
  msgid "Failed to refresh facts for %{hostname} with error %{error_message}"
242
224
  msgstr ""
243
225
 
244
- #: ../app/controllers/discovered_hosts_controller.rb:105
226
+ #: ../app/controllers/discovered_hosts_controller.rb:108
245
227
  msgid "Host of type %s can not be rebooted"
246
228
  msgstr "Impossibile eseguire il riavvio sul tipo di host %s "
247
229
 
248
- #: ../app/controllers/discovered_hosts_controller.rb:109
230
+ #: ../app/controllers/discovered_hosts_controller.rb:112
249
231
  msgid "Rebooting host %s"
250
232
  msgstr "Riavvio host %s"
251
233
 
252
- #: ../app/controllers/discovered_hosts_controller.rb:111
234
+ #: ../app/controllers/discovered_hosts_controller.rb:114
253
235
  msgid "Failed to reboot host %s"
254
236
  msgstr "Impossibile eseguire il riavvio dell'host: %s"
255
237
 
256
- #: ../app/controllers/discovered_hosts_controller.rb:114
238
+ #: ../app/controllers/discovered_hosts_controller.rb:117
257
239
  msgid "Failed to reboot host %{hostname} with error %{error_message}"
258
240
  msgstr "Impossibile eseguire il riavvio dell'host %{hostname} con errore %{error_message}"
259
241
 
260
- #: ../app/controllers/discovered_hosts_controller.rb:128
242
+ #: ../app/controllers/discovered_hosts_controller.rb:131
261
243
  msgid "Failed to reboot hosts with error %s"
262
244
  msgstr ""
263
245
 
264
- #: ../app/controllers/discovered_hosts_controller.rb:140
246
+ #: ../app/controllers/discovered_hosts_controller.rb:149
265
247
  msgid "Destroyed selected hosts"
266
248
  msgstr "Host selezionati annullati"
267
249
 
268
- #: ../app/controllers/discovered_hosts_controller.rb:142
250
+ #: ../app/controllers/discovered_hosts_controller.rb:151
269
251
  msgid "The following hosts were not deleted: %s"
270
252
  msgstr "I seguenti host non sono stati rilevati: %s"
271
253
 
272
- #: ../app/controllers/discovered_hosts_controller.rb:154
254
+ #: ../app/controllers/discovered_hosts_controller.rb:163
273
255
  msgid "Failed to auto provision host %s: %s"
274
256
  msgstr "Impossibile eseguire auto provision dell'host %s: %s"
275
257
 
276
- #: ../app/controllers/discovered_hosts_controller.rb:182
258
+ #: ../app/controllers/discovered_hosts_controller.rb:191
277
259
  msgid "Discovered hosts are provisioning now"
278
260
  msgstr "Gli host rilevati stanno eseguendo ora il provisioning"
279
261
 
280
- #: ../app/controllers/discovered_hosts_controller.rb:214
262
+ #: ../app/controllers/discovered_hosts_controller.rb:223
281
263
  msgid "Highlights"
282
264
  msgstr ""
283
265
 
284
- #: ../app/controllers/discovered_hosts_controller.rb:214
266
+ #: ../app/controllers/discovered_hosts_controller.rb:223
285
267
  msgid "Storage"
286
268
  msgstr "Storage"
287
269
 
288
- #: ../app/controllers/discovered_hosts_controller.rb:214
270
+ #: ../app/controllers/discovered_hosts_controller.rb:223
289
271
  msgid "Hardware"
290
272
  msgstr "Hardware"
291
273
 
292
- #: ../app/controllers/discovered_hosts_controller.rb:214
274
+ #: ../app/controllers/discovered_hosts_controller.rb:223
293
275
  msgid "Network"
294
276
  msgstr "Rete"
295
277
 
296
- #: ../app/controllers/discovered_hosts_controller.rb:214
278
+ #: ../app/controllers/discovered_hosts_controller.rb:223
297
279
  msgid "Software"
298
280
  msgstr "Software"
299
281
 
300
- #: ../app/controllers/discovered_hosts_controller.rb:214
282
+ #: ../app/controllers/discovered_hosts_controller.rb:223
301
283
  msgid "IPMI"
302
284
  msgstr "IPMI"
303
285
 
304
- #: ../app/controllers/discovered_hosts_controller.rb:214
286
+ #: ../app/controllers/discovered_hosts_controller.rb:223
305
287
  msgid "Miscellaneous"
306
288
  msgstr "Varie"
307
289
 
308
- #: ../app/controllers/discovered_hosts_controller.rb:291
290
+ #: ../app/controllers/discovered_hosts_controller.rb:301
309
291
  msgid "No hosts were found with that id or name"
310
292
  msgstr "Nessun host trovato con l'id o nome indicato"
311
293
 
312
- #: ../app/controllers/discovered_hosts_controller.rb:295
294
+ #: ../app/controllers/discovered_hosts_controller.rb:305
313
295
  msgid "No hosts selected"
314
296
  msgstr "Nessun host selezionato"
315
297
 
316
- #: ../app/controllers/discovered_hosts_controller.rb:301
298
+ #: ../app/controllers/discovered_hosts_controller.rb:311
317
299
  msgid "Something went wrong while selecting hosts - %s"
318
300
  msgstr "Si è verificato un errore durante la selezione degli host - %s"
319
301
 
@@ -329,19 +311,15 @@ msgstr "Regola disabilitata"
329
311
  msgid "%s ago"
330
312
  msgstr "%s fa"
331
313
 
332
- #: ../app/helpers/discovered_hosts_helper.rb:14
333
- #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:46
314
+ #: ../app/helpers/discovered_hosts_helper.rb:14 ../app/helpers/discovered_hosts_helper.rb:29 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:46
334
315
  msgid "Auto Provision"
335
316
  msgstr "Auto Provision"
336
317
 
337
- #: ../app/helpers/discovered_hosts_helper.rb:15
338
- #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:47
318
+ #: ../app/helpers/discovered_hosts_helper.rb:15 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:47
339
319
  msgid "Refresh facts"
340
320
  msgstr "Aggiorna eventi"
341
321
 
342
- #: ../app/helpers/discovered_hosts_helper.rb:16
343
- #: ../app/models/setting/discovered.rb:23
344
- #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:48
322
+ #: ../app/helpers/discovered_hosts_helper.rb:16 ../app/helpers/discovered_hosts_helper.rb:30 ../app/models/setting/discovered.rb:23 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:48
345
323
  msgid "Reboot"
346
324
  msgstr "Riavvia"
347
325
 
@@ -349,62 +327,51 @@ msgstr "Riavvia"
349
327
  msgid "Back"
350
328
  msgstr "Indietro"
351
329
 
352
- #: ../app/helpers/discovered_hosts_helper.rb:21
353
- #: ../app/helpers/discovered_hosts_helper.rb:37
330
+ #: ../app/helpers/discovered_hosts_helper.rb:21 ../app/helpers/discovered_hosts_helper.rb:35
354
331
  msgid "Select Action"
355
332
  msgstr "Seleziona azione"
356
333
 
357
- #: ../app/helpers/discovered_hosts_helper.rb:23
358
- msgid "Expand All"
359
- msgstr "Espandi tutti"
360
-
361
- #: ../app/helpers/discovered_hosts_helper.rb:27
362
- #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:49
334
+ #: ../app/helpers/discovered_hosts_helper.rb:23 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:49
363
335
  msgid "Delete %s?"
364
336
  msgstr "Cancella %s?"
365
337
 
366
- #: ../app/helpers/discovered_hosts_helper.rb:33
367
- msgid "Delete hosts"
368
- msgstr "Cancella gli host"
369
-
370
- #: ../app/helpers/discovered_hosts_helper.rb:34
338
+ #: ../app/helpers/discovered_hosts_helper.rb:31
371
339
  msgid "Assign Organization"
372
340
  msgstr "Assegna organizzazione"
373
341
 
374
- #: ../app/helpers/discovered_hosts_helper.rb:35
342
+ #: ../app/helpers/discovered_hosts_helper.rb:32
375
343
  msgid "Assign Location"
376
344
  msgstr "Assegna posizione"
377
345
 
378
- #: ../app/helpers/discovered_hosts_helper.rb:39
346
+ #: ../app/helpers/discovered_hosts_helper.rb:33
347
+ msgid "Delete"
348
+ msgstr ""
349
+
350
+ #: ../app/helpers/discovered_hosts_helper.rb:37
379
351
  msgid "%s - The following hosts are about to be changed"
380
352
  msgstr "%s - I seguenti host stanno per essere modificati"
381
353
 
382
- #: ../app/helpers/discovered_hosts_helper.rb:48
383
- #: ../app/views/dashboard/_discovery_widget_host.html.erb:2
354
+ #: ../app/helpers/discovered_hosts_helper.rb:46 ../app/views/dashboard/_discovery_widget_host.html.erb:2
384
355
  msgid "N/A"
385
356
  msgstr "N/A"
386
357
 
387
- #: ../app/helpers/discovered_hosts_helper.rb:60
358
+ #: ../app/helpers/discovered_hosts_helper.rb:58
388
359
  msgid "New in the last 24 hours"
389
360
  msgstr ""
390
361
 
391
- #: ../app/helpers/discovered_hosts_helper.rb:64
362
+ #: ../app/helpers/discovered_hosts_helper.rb:62
392
363
  msgid "Not reported in more than 7 days"
393
364
  msgstr ""
394
365
 
395
- #: ../app/helpers/discovered_hosts_helper.rb:68
366
+ #: ../app/helpers/discovered_hosts_helper.rb:66
396
367
  msgid "Reported in the last 7 days"
397
368
  msgstr ""
398
369
 
399
- #: ../app/helpers/discovered_hosts_helper.rb:92
370
+ #: ../app/helpers/discovered_hosts_helper.rb:90
400
371
  msgid "Provision"
401
372
  msgstr "Provisioning"
402
373
 
403
- #: ../app/helpers/discovery_rules_helper.rb:26
404
- #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:2
405
- #: ../app/views/discovered_hosts/welcome.html.erb:1
406
- #: ../app/views/discovered_hosts/welcome.html.erb:6
407
- #: ../lib/foreman_discovery/engine.rb:166
374
+ #: ../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:173
408
375
  msgid "Discovered Hosts"
409
376
  msgstr ""
410
377
 
@@ -440,66 +407,59 @@ msgstr "Specificare un utente con una email abilitata"
440
407
  msgid "Discovered hosts summary"
441
408
  msgstr ""
442
409
 
443
- #: ../app/models/discovery_rule.rb:9
410
+ #: ../app/models/discovery_rule.rb:10
444
411
  msgid "can't contain white spaces."
445
412
  msgstr "non può avere spazi."
446
413
 
447
- #: ../app/models/discovery_rule.rb:11
414
+ #: ../app/models/discovery_rule.rb:12
448
415
  msgid "must start with a letter or ERB."
449
416
  msgstr "deve iniziare con una lettera o ERB."
450
417
 
451
- #: ../app/models/discovery_rule.rb:45
452
- msgid ""
453
- "Host group organization %s must also be associated to the discovery rule"
454
- msgid_plural ""
455
- "Host group organizations %s must also be associated to the discovery rule"
418
+ #: ../app/models/discovery_rule.rb:15
419
+ msgid "must be present."
420
+ msgstr ""
421
+
422
+ #: ../app/models/discovery_rule.rb:48
423
+ msgid "Host group organization %s must also be associated to the discovery rule"
424
+ msgid_plural "Host group organizations %s must also be associated to the discovery rule"
456
425
  msgstr[0] ""
457
426
  msgstr[1] ""
458
427
 
459
- #: ../app/models/discovery_rule.rb:51
428
+ #: ../app/models/discovery_rule.rb:54
460
429
  msgid "Host group location %s must also be associated to the discovery rule"
461
- msgid_plural ""
462
- "Host group locations %s must also be associated to the discovery rule"
430
+ msgid_plural "Host group locations %s must also be associated to the discovery rule"
463
431
  msgstr[0] ""
464
432
  msgstr[1] ""
465
433
 
466
- #: ../app/models/host/discovered.rb:37
434
+ #: ../app/models/host/discovered.rb:51
467
435
  msgid "Invalid facts, must be a Hash"
468
436
  msgstr "Eventi non validi, deve essere un Hash"
469
437
 
470
- #: ../app/models/host/discovered.rb:42
471
- msgid ""
472
- "Expected discovery_fact '%s' is missing, unable to detect primary interface "
473
- "and set hostname"
438
+ #: ../app/models/host/discovered.rb:56
439
+ msgid "Expected discovery_fact '%s' is missing, unable to detect primary interface and set hostname"
474
440
  msgstr ""
475
441
 
476
- #: ../app/models/host/discovered.rb:49
477
- msgid ""
478
- "Invalid facts: hash does not contain a valid value for any of the facts in "
479
- "the discovery_hostname setting: %s"
442
+ #: ../app/models/host/discovered.rb:63
443
+ msgid "Invalid facts: hash does not contain a valid value for any of the facts in the discovery_hostname setting: %s"
480
444
  msgstr ""
481
445
 
482
- #: ../app/models/host/discovered.rb:66
446
+ #: ../app/models/host/discovered.rb:89
483
447
  msgid "Facts could not be imported"
484
448
  msgstr ""
485
449
 
486
- #: ../app/models/host/discovered.rb:133
487
- msgid "Unable to assign subnet, primary interface is missing IP address"
488
- msgstr ""
489
-
490
- #: ../app/models/host/discovered.rb:190
450
+ #: ../app/models/host/discovered.rb:212
491
451
  msgid "Could not get facts from proxy %{url}: %{error}"
492
452
  msgstr "Impossibile ottenere gli eventi dal proxy %{url}: %{error}"
493
453
 
494
- #: ../app/models/host/discovered.rb:198
454
+ #: ../app/models/host/discovered.rb:220
495
455
  msgid "Unable to reboot %{name} via %{url}: %{msg}"
496
456
  msgstr ""
497
457
 
498
- #: ../app/models/host/discovered.rb:206
458
+ #: ../app/models/host/discovered.rb:228
499
459
  msgid "Unable to perform kexec on %{name} via %{url}: %{msg}"
500
460
  msgstr ""
501
461
 
502
- #: ../app/models/host/discovered.rb:225
462
+ #: ../app/models/host/discovered.rb:247
503
463
  msgid "Invalid hostname: Could not normalize the hostname"
504
464
  msgstr ""
505
465
 
@@ -552,9 +512,7 @@ msgid "Hostname facts"
552
512
  msgstr ""
553
513
 
554
514
  #: ../app/models/setting/discovered.rb:22
555
- msgid ""
556
- "Automatically provision newly discovered hosts, according to the "
557
- "provisioning rules"
515
+ msgid "Automatically provision newly discovered hosts, according to the provisioning rules"
558
516
  msgstr "Esegui automaticamente il provisioning degli host trovati, in base alle regole per il provisioning"
559
517
 
560
518
  #: ../app/models/setting/discovered.rb:22
@@ -630,9 +588,7 @@ msgid "IPMI facts"
630
588
  msgstr ""
631
589
 
632
590
  #: ../app/models/setting/discovered.rb:32
633
- msgid ""
634
- "Automatically generate PXE configuration to pin a newly discovered host to "
635
- "discovery"
591
+ msgid "Automatically generate PXE configuration to pin a newly discovered host to discovery"
636
592
  msgstr ""
637
593
 
638
594
  #: ../app/models/setting/discovered.rb:32
@@ -671,26 +627,40 @@ msgstr ""
671
627
  msgid "Force DNS"
672
628
  msgstr ""
673
629
 
674
- #: ../app/models/setting/discovered.rb:43
630
+ #: ../app/models/setting/discovered.rb:37
631
+ msgid "Do not allow to discover existing managed host matching MAC of a provisioning NIC (errors out early)"
632
+ msgstr ""
633
+
634
+ #: ../app/models/setting/discovered.rb:37
635
+ msgid "Error on existing NIC"
636
+ msgstr ""
637
+
638
+ #: ../app/models/setting/discovered.rb:44
675
639
  msgid "The default location to place discovered hosts in"
676
640
  msgstr "La posizione predefinita nella quale posizionare gli host trovati"
677
641
 
678
- #: ../app/models/setting/discovered.rb:43
642
+ #: ../app/models/setting/discovered.rb:44
679
643
  msgid "Discovery location"
680
644
  msgstr ""
681
645
 
682
- #: ../app/models/setting/discovered.rb:51
646
+ #: ../app/models/setting/discovered.rb:52
683
647
  msgid "The default organization to place discovered hosts in"
684
648
  msgstr "L'organizzazione predefinita nella quale posizionare gli host trovati"
685
649
 
686
- #: ../app/models/setting/discovered.rb:51
650
+ #: ../app/models/setting/discovered.rb:52
687
651
  msgid "Discovery organization"
688
652
  msgstr ""
689
653
 
690
- #: ../app/services/foreman_discovery/fact_parser.rb:9
691
- msgid ""
692
- "Unable to detect primary interface using MAC '%{mac}' specified by "
693
- "discovery_fact '%{fact}'"
654
+ #: ../app/services/foreman_discovery/fact_parser.rb:4
655
+ msgid "Discovery fact parser does not work with non-discovery host '%{host}'"
656
+ msgstr ""
657
+
658
+ #: ../app/services/foreman_discovery/fact_parser.rb:6
659
+ msgid "Discovered host '%{host}' has all NICs filtered out, filter: %{filter}"
660
+ msgstr ""
661
+
662
+ #: ../app/services/foreman_discovery/fact_parser.rb:12
663
+ msgid "Unable to find primary NIC with %{mac} specified via '%{fact}', NIC filter: %{filter}"
694
664
  msgstr ""
695
665
 
696
666
  #: ../app/services/foreman_discovery/node_api/node_resource.rb:75
@@ -709,25 +679,15 @@ msgstr "Nessun host rilevato disponibile"
709
679
  msgid "Host"
710
680
  msgstr "Host"
711
681
 
712
- #: ../app/views/dashboard/_discovery_widget_host_list.html.erb:4
713
- #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:7
714
- #: ../app/views/discovered_hosts/_selected_hosts.html.erb:8
715
- #: ../app/views/discovered_mailer/discovered_summary.html.erb:18
716
- #: ../app/views/discovered_mailer/discovered_summary.text.erb:10
682
+ #: ../app/views/dashboard/_discovery_widget_host_list.html.erb:4 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:7 ../app/views/discovered_hosts/_selected_hosts.html.erb:8 ../app/views/discovered_mailer/discovered_summary.html.erb:18 ../app/views/discovered_mailer/discovered_summary.text.erb:10
717
683
  msgid "Model"
718
684
  msgstr "Modello"
719
685
 
720
- #: ../app/views/dashboard/_discovery_widget_host_list.html.erb:5
721
- #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:9
722
- #: ../app/views/discovered_mailer/discovered_summary.html.erb:20
723
- #: ../app/views/discovered_mailer/discovered_summary.text.erb:12
686
+ #: ../app/views/dashboard/_discovery_widget_host_list.html.erb:5 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:9 ../app/views/discovered_mailer/discovered_summary.html.erb:20 ../app/views/discovered_mailer/discovered_summary.text.erb:12
724
687
  msgid "CPUs"
725
688
  msgstr "CPU"
726
689
 
727
- #: ../app/views/dashboard/_discovery_widget_host_list.html.erb:6
728
- #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:10
729
- #: ../app/views/discovered_mailer/discovered_summary.html.erb:21
730
- #: ../app/views/discovered_mailer/discovered_summary.text.erb:13
690
+ #: ../app/views/dashboard/_discovery_widget_host_list.html.erb:6 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:10 ../app/views/discovered_mailer/discovered_summary.html.erb:21 ../app/views/discovered_mailer/discovered_summary.text.erb:13
731
691
  msgid "Memory"
732
692
  msgstr "Memoria"
733
693
 
@@ -747,16 +707,11 @@ msgstr "Seleziona tutti gli oggetti in questa pagina"
747
707
  msgid "items selected. Uncheck to Clear"
748
708
  msgstr "oggetti selezionati. Deselezionare per annullare"
749
709
 
750
- #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:6
751
- #: ../app/views/discovered_hosts/_selected_hosts.html.erb:7
752
- #: ../app/views/discovered_mailer/discovered_summary.html.erb:17
753
- #: ../app/views/discovered_mailer/discovered_summary.text.erb:9
710
+ #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:6 ../app/views/discovered_hosts/_selected_hosts.html.erb:7 ../app/views/discovered_mailer/discovered_summary.html.erb:17 ../app/views/discovered_mailer/discovered_summary.text.erb:9
754
711
  msgid "Name"
755
712
  msgstr "Nome"
756
713
 
757
- #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:8
758
- #: ../app/views/discovered_mailer/discovered_summary.html.erb:19
759
- #: ../app/views/discovered_mailer/discovered_summary.text.erb:11
714
+ #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:8 ../app/views/discovered_mailer/discovered_summary.html.erb:19 ../app/views/discovered_mailer/discovered_summary.text.erb:11
760
715
  msgid "IP Address"
761
716
  msgstr "Indirizzo IP"
762
717
 
@@ -768,13 +723,11 @@ msgstr ""
768
723
  msgid "Disks Size"
769
724
  msgstr ""
770
725
 
771
- #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:17
772
- #: ../app/views/discovered_hosts/_selected_hosts.html.erb:10
726
+ #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:17 ../app/views/discovered_hosts/_selected_hosts.html.erb:10
773
727
  msgid "Location"
774
728
  msgstr "Posizione"
775
729
 
776
- #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:20
777
- #: ../app/views/discovered_hosts/_selected_hosts.html.erb:13
730
+ #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:20 ../app/views/discovered_hosts/_selected_hosts.html.erb:13
778
731
  msgid "Organization"
779
732
  msgstr "Organizzazione"
780
733
 
@@ -802,18 +755,8 @@ msgstr "Invia"
802
755
  msgid "Provision %s"
803
756
  msgstr ""
804
757
 
805
- #: ../app/views/discovered_hosts/index.html.erb:2
806
- msgid "Reboot All"
807
- msgstr ""
808
-
809
- #: ../app/views/discovered_hosts/index.html.erb:3
810
- msgid "Auto Provision All"
811
- msgstr "Esegui Auto Provision su tutti"
812
-
813
758
  #: ../app/views/discovered_hosts/multiple_destroy.html.erb:3
814
- msgid ""
815
- "This might take a while, as all hosts, facts and reports will be destroyed "
816
- "as well"
759
+ msgid "This might take a while, as all hosts, facts and reports will be destroyed as well"
817
760
  msgstr "Questa operazione potrebbe richiedere qualche istante poichè saranno annullati anche gli host, eventi e riporti"
818
761
 
819
762
  #: ../app/views/discovered_hosts/select_multiple_location.html.erb:5
@@ -828,34 +771,36 @@ msgstr "Seleziona organizzazione"
828
771
  msgid "Discovered host: %s"
829
772
  msgstr "Host trovati: %s"
830
773
 
831
- #: ../app/views/discovered_hosts/show.html.erb:34
774
+ #: ../app/views/discovered_hosts/show.html.erb:37
832
775
  msgid "Interfaces"
833
776
  msgstr "Interfaccia"
834
777
 
835
- #: ../app/views/discovered_hosts/show.html.erb:41
778
+ #: ../app/views/discovered_hosts/show.html.erb:44
836
779
  msgid "Type"
837
780
  msgstr "Tipo"
838
781
 
839
- #: ../app/views/discovered_hosts/show.html.erb:42
782
+ #: ../app/views/discovered_hosts/show.html.erb:45
840
783
  msgid "Identifier"
841
784
  msgstr "Identificazione"
842
785
 
843
- #: ../app/views/discovered_hosts/show.html.erb:43
786
+ #: ../app/views/discovered_hosts/show.html.erb:46
844
787
  msgid "MAC address"
845
788
  msgstr "Indirizzo MAC"
846
789
 
847
- #: ../app/views/discovered_hosts/show.html.erb:44
790
+ #: ../app/views/discovered_hosts/show.html.erb:47
848
791
  msgid "IP address"
849
792
  msgstr "indirizzo IP"
850
793
 
794
+ #: ../app/views/discovered_hosts/show.html.erb:66
795
+ msgid "Collapse All"
796
+ msgstr ""
797
+
851
798
  #: ../app/views/discovered_hosts/welcome.html.erb:7
852
799
  msgid "No discovered hosts found in this context."
853
800
  msgstr ""
854
801
 
855
802
  #: ../app/views/discovered_hosts/welcome.html.erb:8
856
- msgid ""
857
- "This page shows discovered bare-metal or virtual nodes waiting to be "
858
- "provisioned."
803
+ msgid "This page shows discovered bare-metal or virtual nodes waiting to be provisioned."
859
804
  msgstr ""
860
805
 
861
806
  #: ../app/views/discovered_hosts/welcome.html.erb:9
@@ -870,23 +815,19 @@ msgstr ""
870
815
  msgid "<b>Foreman</b> Discovered hosts summary"
871
816
  msgstr ""
872
817
 
873
- #: ../app/views/discovered_mailer/discovered_summary.html.erb:10
874
- #: ../app/views/discovered_mailer/discovered_summary.text.erb:5
818
+ #: ../app/views/discovered_mailer/discovered_summary.html.erb:10 ../app/views/discovered_mailer/discovered_summary.text.erb:5
875
819
  msgid "Summary from %{time} ago to %{now}"
876
820
  msgstr ""
877
821
 
878
- #: ../app/views/discovered_mailer/discovered_summary.html.erb:11
879
- #: ../app/views/discovered_mailer/discovered_summary.text.erb:3
822
+ #: ../app/views/discovered_mailer/discovered_summary.html.erb:11 ../app/views/discovered_mailer/discovered_summary.text.erb:3
880
823
  msgid "Discovered hosts from Foreman server at %{foreman_url}"
881
824
  msgstr ""
882
825
 
883
- #: ../app/views/discovered_mailer/discovered_summary.html.erb:22
884
- #: ../app/views/discovered_mailer/discovered_summary.text.erb:14
826
+ #: ../app/views/discovered_mailer/discovered_summary.html.erb:22 ../app/views/discovered_mailer/discovered_summary.text.erb:14
885
827
  msgid "Disk count"
886
828
  msgstr "Conteggio disco"
887
829
 
888
- #: ../app/views/discovered_mailer/discovered_summary.html.erb:23
889
- #: ../app/views/discovered_mailer/discovered_summary.text.erb:15
830
+ #: ../app/views/discovered_mailer/discovered_summary.html.erb:23 ../app/views/discovered_mailer/discovered_summary.text.erb:15
890
831
  msgid "Disks size"
891
832
  msgstr "Dimensione dischi"
892
833
 
@@ -935,38 +876,28 @@ msgid "Rule priority (lower integer means higher priority)"
935
876
  msgstr "Priorità regola (valore intero più basso, priorità più alta)"
936
877
 
937
878
  #: ../app/views/discovery_rules/_template_inline.erb:2
938
- msgid ""
939
- "Specify target hostname template pattern in the same syntax as in "
940
- "Provisioning Templates (ERB)."
879
+ msgid "Specify target hostname template pattern in the same syntax as in Provisioning Templates (ERB)."
941
880
  msgstr "Specifica il pattern del template per l'hostname di destinazione con la stessa sintassi dei template di provisioning (ERB)."
942
881
 
943
882
  #: ../app/views/discovery_rules/_template_inline.erb:4
944
- msgid ""
945
- "Domain will be appended automatically. A hostname based on MAC address will "
946
- "be used when left blank."
883
+ msgid "Domain will be appended automatically. A hostname based on MAC address will be used when left blank."
947
884
  msgstr ""
948
885
 
949
886
  #: ../app/views/discovery_rules/_template_inline.erb:5
950
- msgid ""
951
- "In addition to @host attribute function rand for random integers is "
952
- "available. Examples:"
887
+ msgid "In addition to @host attribute function rand for random integers is available. Examples:"
953
888
  msgstr ""
954
889
 
955
890
  #: ../app/views/discovery_rules/_template_inline.erb:8
956
- msgid ""
957
- "When creating hostname patterns, make sure the resulting host names are "
958
- "unique."
891
+ msgid "When creating hostname patterns, make sure the resulting host names are unique."
959
892
  msgstr ""
960
893
 
961
894
  #: ../app/views/discovery_rules/_template_inline.erb:9
962
- msgid ""
963
- "Hostnames must not start with numbers. A good approach is to use unique "
964
- "information provided by facter (MAC address, BIOS or serial ID)."
895
+ msgid "Hostnames must not start with numbers. A good approach is to use unique information provided by facter (MAC address, BIOS or serial ID)."
965
896
  msgstr ""
966
897
 
967
898
  #: ../app/views/discovery_rules/edit.html.erb:1
968
- msgid "Edit Discovery Rule"
969
- msgstr "Modifica la regola per la scoperta"
899
+ msgid "Edit %s"
900
+ msgstr ""
970
901
 
971
902
  #: ../app/views/discovery_rules/index.html.erb:1
972
903
  msgid "Discovery Rules"
@@ -1020,30 +951,26 @@ msgstr ""
1020
951
  msgid "Details"
1021
952
  msgstr "Dettagli:"
1022
953
 
1023
- #: ../lib/foreman_discovery/engine.rb:151
954
+ #: ../lib/foreman_discovery/engine.rb:158
1024
955
  msgid "Discovered hosts"
1025
956
  msgstr "Host trovati"
1026
957
 
1027
- #: ../lib/foreman_discovery/engine.rb:156
958
+ #: ../lib/foreman_discovery/engine.rb:163
1028
959
  msgid "Discovery rules"
1029
960
  msgstr "Regola per la scoperta"
1030
961
 
1031
- #: ../lib/foreman_discovery/engine.rb:172
962
+ #: ../lib/foreman_discovery/engine.rb:179
1032
963
  msgid "Discovery Kexec template"
1033
964
  msgstr ""
1034
965
 
1035
- #: ../lib/foreman_discovery/engine.rb:181
966
+ #: ../lib/foreman_discovery/engine.rb:188
1036
967
  msgid "Discovery Proxy"
1037
968
  msgstr ""
1038
969
 
1039
- #: ../lib/foreman_discovery/engine.rb:182
1040
- msgid ""
1041
- "Discovery Proxy to use within this subnet for managing connection to "
1042
- "discovered hosts"
970
+ #: ../lib/foreman_discovery/engine.rb:189
971
+ msgid "Discovery Proxy to use within this subnet for managing connection to discovered hosts"
1043
972
  msgstr ""
1044
973
 
1045
- #: ../lib/foreman_discovery/engine.rb:183
1046
- msgid ""
1047
- "ID of Discovery Proxy to use within this subnet for managing connection to "
1048
- "discovered hosts"
974
+ #: ../lib/foreman_discovery/engine.rb:190
975
+ msgid "ID of Discovery Proxy to use within this subnet for managing connection to discovered hosts"
1049
976
  msgstr ""