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
@@ -45,9 +45,6 @@ msgstr "Hôtes associés"
45
45
  msgid "Auto Provision"
46
46
  msgstr "Provisionner automatiquement"
47
47
 
48
- msgid "Auto Provision All"
49
- msgstr "Tout provisionner automatiquement"
50
-
51
48
  msgid "Auto provisioning"
52
49
  msgstr "Provisionnement automatique"
53
50
 
@@ -75,6 +72,9 @@ msgstr "Nettoyer tous les facts"
75
72
  msgid "Clean all reported facts during provisioning (except discovery facts)"
76
73
  msgstr "Supprimer tous les facts reçus pendant le provisionning (à l'exception des facts discovery)"
77
74
 
75
+ msgid "Collapse All"
76
+ msgstr ""
77
+
78
78
  msgid "Could not get facts from proxy %{url}: %{error}"
79
79
  msgstr "Impossible de récupérer les facts depuis le proxy %{url} : %{error}"
80
80
 
@@ -96,6 +96,9 @@ msgstr ""
96
96
  msgid "DHCP filename option (Grub2 or PXELinux by default)"
97
97
  msgstr "Option nom de fichier DHCP (Grub2 ou PXELinux par défaut)"
98
98
 
99
+ msgid "Delete"
100
+ msgstr ""
101
+
99
102
  msgid "Delete %s?"
100
103
  msgstr "Supprimer %s ?"
101
104
 
@@ -105,9 +108,6 @@ msgstr "Supprimer un hôte détecté"
105
108
  msgid "Delete a rule"
106
109
  msgstr "Supprimer une règle"
107
110
 
108
- msgid "Delete hosts"
109
- msgstr "Supprimer ces Hôtes"
110
-
111
111
  msgid "Delete rule '%s'?"
112
112
  msgstr "Supprimer la règle '%s' ?"
113
113
 
@@ -126,6 +126,9 @@ msgstr "Désactiver la règle '%s' ?"
126
126
  msgid "Discovered Hosts"
127
127
  msgstr "Hôtes détectés"
128
128
 
129
+ msgid "Discovered host '%{host}' has all NICs filtered out, filter: %{filter}"
130
+ msgstr ""
131
+
129
132
  msgid "Discovered host: %s"
130
133
  msgstr "Hôtes détectés : %s"
131
134
 
@@ -156,6 +159,9 @@ msgstr "Proxy de découverte à utilisé à l'interieur de ce sous-reseaux pour
156
159
  msgid "Discovery Rules"
157
160
  msgstr "Règles de détection"
158
161
 
162
+ msgid "Discovery fact parser does not work with non-discovery host '%{host}'"
163
+ msgstr ""
164
+
159
165
  msgid "Discovery location"
160
166
  msgstr "Emplacement des hôtes détectés"
161
167
 
@@ -189,11 +195,14 @@ msgstr "Taille des disques"
189
195
  msgid "Disks size"
190
196
  msgstr "Taille des disques"
191
197
 
198
+ msgid "Do not allow to discover existing managed host matching MAC of a provisioning NIC (errors out early)"
199
+ msgstr ""
200
+
192
201
  msgid "Domain will be appended automatically. A hostname based on MAC address will be used when left blank."
193
202
  msgstr "Le domaine sera ajouté automatiquement. Un nom d'hôte basé sur une adresse MAC sera utilisé si le champ est laissé vide. "
194
203
 
195
- msgid "Edit Discovery Rule"
196
- msgstr "Modifier la règle de détection"
204
+ msgid "Edit %s"
205
+ msgstr ""
197
206
 
198
207
  msgid "Enable"
199
208
  msgstr "Activer"
@@ -201,6 +210,9 @@ msgstr "Activer"
201
210
  msgid "Enable rule '%s'?"
202
211
  msgstr "Activer la règle '%s' ?"
203
212
 
213
+ msgid "Error on existing NIC"
214
+ msgstr ""
215
+
204
216
  msgid "Errors during auto provisioning: %s"
205
217
  msgstr "Erreurs lors de l'auto-provisioning : %s"
206
218
 
@@ -213,9 +225,6 @@ msgstr "Appliquer les règles à un hôte détecté"
213
225
  msgid "Execute rules against all currently discovered hosts"
214
226
  msgstr "Appliquer les règles à tous les hôtes détectés"
215
227
 
216
- msgid "Expand All"
217
- msgstr "Tout étendre"
218
-
219
228
  msgid "Expected discovery_fact '%s' is missing, unable to detect primary interface and set hostname"
220
229
  msgstr "Le discovery_fact '%s' attendu est manquant, il n'est pas possible de détecter l'interface primaire ni de positionner le nom d'hôte"
221
230
 
@@ -508,9 +517,6 @@ msgstr "Provisionner un hôte détecté"
508
517
  msgid "Reboot"
509
518
  msgstr "Redémarrer"
510
519
 
511
- msgid "Reboot All"
512
- msgstr "Tout redémarrer"
513
-
514
520
  msgid "Rebooting %s"
515
521
  msgstr "Redémarrage %s"
516
522
 
@@ -643,15 +649,12 @@ msgstr "Type"
643
649
  msgid "UUID to track orchestration tasks status, GET /api/orchestration/:UUID/tasks"
644
650
  msgstr "UUID pour surveiller l'état des tâches d'orchestration : GET /api/orchestration/:UUID/tasks"
645
651
 
646
- msgid "Unable to assign subnet, primary interface is missing IP address"
647
- msgstr "Impossible d'assigner le sous-réseau, l'interface primaire n'a pas d'adresse IP"
648
-
649
- msgid "Unable to detect primary interface using MAC '%{mac}' specified by discovery_fact '%{fact}'"
650
- msgstr "Impossible de détecter l'interface primaire en utilisant l'adresse MAC '%{mac}' spécifiée par le discovery_fact '%{fact}'"
651
-
652
652
  msgid "Unable to find a discovery rule, no host provided (check permissions)"
653
653
  msgstr "Impossible de trouver une règle de détection, aucun hôte fourni (vérifier les permissions)"
654
654
 
655
+ msgid "Unable to find primary NIC with %{mac} specified via '%{fact}', NIC filter: %{filter}"
656
+ msgstr ""
657
+
655
658
  msgid "Unable to perform kexec on %{name} via %{url}: %{msg}"
656
659
  msgstr "Impossible de lancer kexec sur %{name} via %{url}: %{msg}"
657
660
 
@@ -694,6 +697,9 @@ msgstr "items sélectionnés. Décocher pour Effacer"
694
697
  msgid "location ID for provisioned hosts"
695
698
  msgstr ""
696
699
 
700
+ msgid "must be present."
701
+ msgstr ""
702
+
697
703
  msgid "must start with a letter or ERB."
698
704
  msgstr "doit commencer par une lettre ou ERB."
699
705
 
@@ -1,16 +1,16 @@
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
  msgid ""
7
7
  msgstr ""
8
8
  "Project-Id-Version: foreman_discovery 10.0.0\n"
9
9
  "Report-Msgid-Bugs-To: \n"
10
- "POT-Creation-Date: 2017-12-11 10:28+0100\n"
11
10
  "PO-Revision-Date: 2017-12-11 11:31+0000\n"
12
11
  "Last-Translator: Lukáš Zapletal\n"
13
- "Language-Team: Galician (http://www.transifex.com/foreman/foreman/language/gl/)\n"
12
+ "Language-Team: Galician (http://www.transifex.com/foreman/foreman/language/gl/"
13
+ ")\n"
14
14
  "MIME-Version: 1.0\n"
15
15
  "Content-Type: text/plain; charset=UTF-8\n"
16
16
  "Content-Transfer-Encoding: 8bit\n"
@@ -21,23 +21,19 @@ msgstr ""
21
21
  msgid "List all discovered hosts"
22
22
  msgstr ""
23
23
 
24
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:17
25
- #: ../app/controllers/api/v2/discovery_rules_controller.rb:15
24
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:17 ../app/controllers/api/v2/discovery_rules_controller.rb:15
26
25
  msgid "filter results"
27
26
  msgstr ""
28
27
 
29
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:18
30
- #: ../app/controllers/api/v2/discovery_rules_controller.rb:16
28
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:18 ../app/controllers/api/v2/discovery_rules_controller.rb:16
31
29
  msgid "sort results"
32
30
  msgstr ""
33
31
 
34
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:19
35
- #: ../app/controllers/api/v2/discovery_rules_controller.rb:17
32
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:19 ../app/controllers/api/v2/discovery_rules_controller.rb:17
36
33
  msgid "paginate results"
37
34
  msgstr ""
38
35
 
39
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:20
40
- #: ../app/controllers/api/v2/discovery_rules_controller.rb:18
36
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:20 ../app/controllers/api/v2/discovery_rules_controller.rb:18
41
37
  msgid "number of entries per request"
42
38
  msgstr ""
43
39
 
@@ -45,8 +41,7 @@ msgstr ""
45
41
  msgid "Show a discovered host"
46
42
  msgstr ""
47
43
 
48
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:37
49
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:79
44
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:37 ../app/controllers/api/v2/discovered_hosts_controller.rb:79
50
45
  msgid "DHCP filename option (Grub2 or PXELinux by default)"
51
46
  msgstr ""
52
47
 
@@ -67,14 +62,11 @@ msgid "not required if it's a virtual machine"
67
62
  msgstr ""
68
63
 
69
64
  #: ../app/controllers/api/v2/discovered_hosts_controller.rb:76
70
- msgid ""
71
- "UUID to track orchestration tasks status, GET /api/orchestration/:UUID/tasks"
65
+ msgid "UUID to track orchestration tasks status, GET /api/orchestration/:UUID/tasks"
72
66
  msgstr ""
73
67
 
74
68
  #: ../app/controllers/api/v2/discovered_hosts_controller.rb:78
75
- msgid ""
76
- "required if value is not inherited from host group or default password in "
77
- "settings"
69
+ msgid "required if value is not inherited from host group or default password in settings"
78
70
  msgstr ""
79
71
 
80
72
  #: ../app/controllers/api/v2/discovered_hosts_controller.rb:89
@@ -86,62 +78,54 @@ msgid "Upload facts for a host, creating the host if required"
86
78
  msgstr ""
87
79
 
88
80
  #: ../app/controllers/api/v2/discovered_hosts_controller.rb:97
89
- msgid ""
90
- "hash containing facts for the host with minimum set of facts: "
91
- "discovery_bootif, macaddress_eth0, ipaddress, ipaddress_eth0, interfaces: "
92
- "eth0 (example in case primary interface is named eth0)"
81
+ 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)"
93
82
  msgstr ""
94
83
 
95
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:117
84
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:116
96
85
  msgid "Execute rules against a discovered host"
97
86
  msgstr ""
98
87
 
99
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:123
100
- #: ../app/controllers/discovered_hosts_controller.rb:150
88
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:122 ../app/controllers/discovered_hosts_controller.rb:159
101
89
  msgid "Host %{host} was provisioned with rule %{rule}"
102
90
  msgstr ""
103
91
 
104
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:126
92
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:125
105
93
  msgid "Unable to provision %{host}: %{errors}"
106
94
  msgstr ""
107
95
 
108
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:132
109
- #: ../app/controllers/discovered_hosts_controller.rb:157
96
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:131 ../app/controllers/discovered_hosts_controller.rb:166
110
97
  msgid "No rule found for host %s"
111
98
  msgstr ""
112
99
 
113
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:139
100
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:138
114
101
  msgid "Execute rules against all currently discovered hosts"
115
102
  msgstr ""
116
103
 
117
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:143
118
- #: ../app/controllers/discovered_hosts_controller.rb:163
104
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:142 ../app/controllers/discovered_hosts_controller.rb:172
119
105
  msgid "Errors during auto provisioning: %s"
120
106
  msgstr ""
121
107
 
122
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:146
123
- #: ../app/controllers/discovered_hosts_controller.rb:166
108
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:145 ../app/controllers/discovered_hosts_controller.rb:175
124
109
  msgid "No discovered hosts to provision"
125
110
  msgstr ""
126
111
 
127
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:168
112
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:167
128
113
  msgid "%s discovered hosts were provisioned"
129
114
  msgstr ""
130
115
 
131
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:179
116
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:178
132
117
  msgid "Refreshing the facts of a discovered host"
133
118
  msgstr ""
134
119
 
135
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:188
120
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:187
136
121
  msgid "Rebooting a discovered host"
137
122
  msgstr ""
138
123
 
139
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:197
124
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:196
140
125
  msgid "Rebooting all discovered hosts"
141
126
  msgstr ""
142
127
 
143
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:208
144
- #: ../app/controllers/discovered_hosts_controller.rb:125
128
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:207 ../app/controllers/discovered_hosts_controller.rb:128
145
129
  msgid "Discovered hosts are rebooting now"
146
130
  msgstr ""
147
131
 
@@ -166,8 +150,7 @@ msgid "the hostgroup that is used to auto provision a host"
166
150
  msgstr ""
167
151
 
168
152
  #: ../app/controllers/api/v2/discovery_rules_controller.rb:35
169
- msgid ""
170
- "defines a pattern to assign human-readable hostnames to the matching hosts"
153
+ msgid "defines a pattern to assign human-readable hostnames to the matching hosts"
171
154
  msgstr ""
172
155
 
173
156
  #: ../app/controllers/api/v2/discovery_rules_controller.rb:36
@@ -175,8 +158,7 @@ msgid "enables to limit maximum amount of provisioned hosts per rule"
175
158
  msgstr ""
176
159
 
177
160
  #: ../app/controllers/api/v2/discovery_rules_controller.rb:37
178
- msgid ""
179
- "puts the rules in order, low numbers go first. Must be greater then zero"
161
+ msgid "puts the rules in order, low numbers go first. Must be greater then zero"
180
162
  msgstr ""
181
163
 
182
164
  #: ../app/controllers/api/v2/discovery_rules_controller.rb:38
@@ -223,95 +205,95 @@ msgstr ""
223
205
  msgid "No discovered hosts to reboot"
224
206
  msgstr ""
225
207
 
226
- #: ../app/controllers/discovered_hosts_controller.rb:61
208
+ #: ../app/controllers/discovered_hosts_controller.rb:63
227
209
  msgid "Successfully provisioned %s"
228
210
  msgstr ""
229
211
 
230
- #: ../app/controllers/discovered_hosts_controller.rb:93
212
+ #: ../app/controllers/discovered_hosts_controller.rb:96
231
213
  msgid "Facts refreshed for %s"
232
214
  msgstr ""
233
215
 
234
- #: ../app/controllers/discovered_hosts_controller.rb:95
216
+ #: ../app/controllers/discovered_hosts_controller.rb:98
235
217
  msgid "Failed to refresh facts for %s"
236
218
  msgstr ""
237
219
 
238
- #: ../app/controllers/discovered_hosts_controller.rb:98
220
+ #: ../app/controllers/discovered_hosts_controller.rb:101
239
221
  msgid "Failed to refresh facts for %{hostname} with error %{error_message}"
240
222
  msgstr ""
241
223
 
242
- #: ../app/controllers/discovered_hosts_controller.rb:105
224
+ #: ../app/controllers/discovered_hosts_controller.rb:108
243
225
  msgid "Host of type %s can not be rebooted"
244
226
  msgstr ""
245
227
 
246
- #: ../app/controllers/discovered_hosts_controller.rb:109
228
+ #: ../app/controllers/discovered_hosts_controller.rb:112
247
229
  msgid "Rebooting host %s"
248
230
  msgstr ""
249
231
 
250
- #: ../app/controllers/discovered_hosts_controller.rb:111
232
+ #: ../app/controllers/discovered_hosts_controller.rb:114
251
233
  msgid "Failed to reboot host %s"
252
234
  msgstr ""
253
235
 
254
- #: ../app/controllers/discovered_hosts_controller.rb:114
236
+ #: ../app/controllers/discovered_hosts_controller.rb:117
255
237
  msgid "Failed to reboot host %{hostname} with error %{error_message}"
256
238
  msgstr ""
257
239
 
258
- #: ../app/controllers/discovered_hosts_controller.rb:128
240
+ #: ../app/controllers/discovered_hosts_controller.rb:131
259
241
  msgid "Failed to reboot hosts with error %s"
260
242
  msgstr ""
261
243
 
262
- #: ../app/controllers/discovered_hosts_controller.rb:140
244
+ #: ../app/controllers/discovered_hosts_controller.rb:149
263
245
  msgid "Destroyed selected hosts"
264
246
  msgstr "Eliminados equipos seleccionados"
265
247
 
266
- #: ../app/controllers/discovered_hosts_controller.rb:142
248
+ #: ../app/controllers/discovered_hosts_controller.rb:151
267
249
  msgid "The following hosts were not deleted: %s"
268
250
  msgstr "Os seguintes equipos non foron eliminados: %s"
269
251
 
270
- #: ../app/controllers/discovered_hosts_controller.rb:154
252
+ #: ../app/controllers/discovered_hosts_controller.rb:163
271
253
  msgid "Failed to auto provision host %s: %s"
272
254
  msgstr ""
273
255
 
274
- #: ../app/controllers/discovered_hosts_controller.rb:182
256
+ #: ../app/controllers/discovered_hosts_controller.rb:191
275
257
  msgid "Discovered hosts are provisioning now"
276
258
  msgstr ""
277
259
 
278
- #: ../app/controllers/discovered_hosts_controller.rb:214
260
+ #: ../app/controllers/discovered_hosts_controller.rb:223
279
261
  msgid "Highlights"
280
262
  msgstr ""
281
263
 
282
- #: ../app/controllers/discovered_hosts_controller.rb:214
264
+ #: ../app/controllers/discovered_hosts_controller.rb:223
283
265
  msgid "Storage"
284
266
  msgstr ""
285
267
 
286
- #: ../app/controllers/discovered_hosts_controller.rb:214
268
+ #: ../app/controllers/discovered_hosts_controller.rb:223
287
269
  msgid "Hardware"
288
270
  msgstr ""
289
271
 
290
- #: ../app/controllers/discovered_hosts_controller.rb:214
272
+ #: ../app/controllers/discovered_hosts_controller.rb:223
291
273
  msgid "Network"
292
274
  msgstr ""
293
275
 
294
- #: ../app/controllers/discovered_hosts_controller.rb:214
276
+ #: ../app/controllers/discovered_hosts_controller.rb:223
295
277
  msgid "Software"
296
278
  msgstr ""
297
279
 
298
- #: ../app/controllers/discovered_hosts_controller.rb:214
280
+ #: ../app/controllers/discovered_hosts_controller.rb:223
299
281
  msgid "IPMI"
300
282
  msgstr ""
301
283
 
302
- #: ../app/controllers/discovered_hosts_controller.rb:214
284
+ #: ../app/controllers/discovered_hosts_controller.rb:223
303
285
  msgid "Miscellaneous"
304
286
  msgstr ""
305
287
 
306
- #: ../app/controllers/discovered_hosts_controller.rb:291
288
+ #: ../app/controllers/discovered_hosts_controller.rb:301
307
289
  msgid "No hosts were found with that id or name"
308
290
  msgstr "Non se atopou ningún equipos con ese id ou nome"
309
291
 
310
- #: ../app/controllers/discovered_hosts_controller.rb:295
292
+ #: ../app/controllers/discovered_hosts_controller.rb:305
311
293
  msgid "No hosts selected"
312
294
  msgstr "Ningún equipo seleccionado"
313
295
 
314
- #: ../app/controllers/discovered_hosts_controller.rb:301
296
+ #: ../app/controllers/discovered_hosts_controller.rb:311
315
297
  msgid "Something went wrong while selecting hosts - %s"
316
298
  msgstr "Algo fallou ao seleccionar equipos - %s"
317
299
 
@@ -327,19 +309,15 @@ msgstr ""
327
309
  msgid "%s ago"
328
310
  msgstr "Fai %s"
329
311
 
330
- #: ../app/helpers/discovered_hosts_helper.rb:14
331
- #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:46
312
+ #: ../app/helpers/discovered_hosts_helper.rb:14 ../app/helpers/discovered_hosts_helper.rb:29 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:46
332
313
  msgid "Auto Provision"
333
314
  msgstr ""
334
315
 
335
- #: ../app/helpers/discovered_hosts_helper.rb:15
336
- #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:47
316
+ #: ../app/helpers/discovered_hosts_helper.rb:15 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:47
337
317
  msgid "Refresh facts"
338
318
  msgstr ""
339
319
 
340
- #: ../app/helpers/discovered_hosts_helper.rb:16
341
- #: ../app/models/setting/discovered.rb:23
342
- #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:48
320
+ #: ../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
343
321
  msgid "Reboot"
344
322
  msgstr ""
345
323
 
@@ -347,62 +325,51 @@ msgstr ""
347
325
  msgid "Back"
348
326
  msgstr ""
349
327
 
350
- #: ../app/helpers/discovered_hosts_helper.rb:21
351
- #: ../app/helpers/discovered_hosts_helper.rb:37
328
+ #: ../app/helpers/discovered_hosts_helper.rb:21 ../app/helpers/discovered_hosts_helper.rb:35
352
329
  msgid "Select Action"
353
330
  msgstr "Selecciona unha Acción"
354
331
 
355
- #: ../app/helpers/discovered_hosts_helper.rb:23
356
- msgid "Expand All"
357
- msgstr ""
358
-
359
- #: ../app/helpers/discovered_hosts_helper.rb:27
360
- #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:49
332
+ #: ../app/helpers/discovered_hosts_helper.rb:23 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:49
361
333
  msgid "Delete %s?"
362
334
  msgstr "¿Borrar %s?"
363
335
 
364
- #: ../app/helpers/discovered_hosts_helper.rb:33
365
- msgid "Delete hosts"
366
- msgstr ""
367
-
368
- #: ../app/helpers/discovered_hosts_helper.rb:34
336
+ #: ../app/helpers/discovered_hosts_helper.rb:31
369
337
  msgid "Assign Organization"
370
338
  msgstr "Asignar Organización"
371
339
 
372
- #: ../app/helpers/discovered_hosts_helper.rb:35
340
+ #: ../app/helpers/discovered_hosts_helper.rb:32
373
341
  msgid "Assign Location"
374
342
  msgstr "Asignar Lugar"
375
343
 
376
- #: ../app/helpers/discovered_hosts_helper.rb:39
344
+ #: ../app/helpers/discovered_hosts_helper.rb:33
345
+ msgid "Delete"
346
+ msgstr ""
347
+
348
+ #: ../app/helpers/discovered_hosts_helper.rb:37
377
349
  msgid "%s - The following hosts are about to be changed"
378
350
  msgstr "%s - Os seguintes equipos están a piques de ser modificados"
379
351
 
380
- #: ../app/helpers/discovered_hosts_helper.rb:48
381
- #: ../app/views/dashboard/_discovery_widget_host.html.erb:2
352
+ #: ../app/helpers/discovered_hosts_helper.rb:46 ../app/views/dashboard/_discovery_widget_host.html.erb:2
382
353
  msgid "N/A"
383
354
  msgstr "N/A"
384
355
 
385
- #: ../app/helpers/discovered_hosts_helper.rb:60
356
+ #: ../app/helpers/discovered_hosts_helper.rb:58
386
357
  msgid "New in the last 24 hours"
387
358
  msgstr ""
388
359
 
389
- #: ../app/helpers/discovered_hosts_helper.rb:64
360
+ #: ../app/helpers/discovered_hosts_helper.rb:62
390
361
  msgid "Not reported in more than 7 days"
391
362
  msgstr ""
392
363
 
393
- #: ../app/helpers/discovered_hosts_helper.rb:68
364
+ #: ../app/helpers/discovered_hosts_helper.rb:66
394
365
  msgid "Reported in the last 7 days"
395
366
  msgstr ""
396
367
 
397
- #: ../app/helpers/discovered_hosts_helper.rb:92
368
+ #: ../app/helpers/discovered_hosts_helper.rb:90
398
369
  msgid "Provision"
399
370
  msgstr "Aprovisionamento"
400
371
 
401
- #: ../app/helpers/discovery_rules_helper.rb:26
402
- #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:2
403
- #: ../app/views/discovered_hosts/welcome.html.erb:1
404
- #: ../app/views/discovered_hosts/welcome.html.erb:6
405
- #: ../lib/foreman_discovery/engine.rb:166
372
+ #: ../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
406
373
  msgid "Discovered Hosts"
407
374
  msgstr ""
408
375
 
@@ -438,66 +405,59 @@ msgstr ""
438
405
  msgid "Discovered hosts summary"
439
406
  msgstr ""
440
407
 
441
- #: ../app/models/discovery_rule.rb:9
408
+ #: ../app/models/discovery_rule.rb:10
442
409
  msgid "can't contain white spaces."
443
410
  msgstr ""
444
411
 
445
- #: ../app/models/discovery_rule.rb:11
412
+ #: ../app/models/discovery_rule.rb:12
446
413
  msgid "must start with a letter or ERB."
447
414
  msgstr ""
448
415
 
449
- #: ../app/models/discovery_rule.rb:45
450
- msgid ""
451
- "Host group organization %s must also be associated to the discovery rule"
452
- msgid_plural ""
453
- "Host group organizations %s must also be associated to the discovery rule"
416
+ #: ../app/models/discovery_rule.rb:15
417
+ msgid "must be present."
418
+ msgstr ""
419
+
420
+ #: ../app/models/discovery_rule.rb:48
421
+ msgid "Host group organization %s must also be associated to the discovery rule"
422
+ msgid_plural "Host group organizations %s must also be associated to the discovery rule"
454
423
  msgstr[0] ""
455
424
  msgstr[1] ""
456
425
 
457
- #: ../app/models/discovery_rule.rb:51
426
+ #: ../app/models/discovery_rule.rb:54
458
427
  msgid "Host group location %s must also be associated to the discovery rule"
459
- msgid_plural ""
460
- "Host group locations %s must also be associated to the discovery rule"
428
+ msgid_plural "Host group locations %s must also be associated to the discovery rule"
461
429
  msgstr[0] ""
462
430
  msgstr[1] ""
463
431
 
464
- #: ../app/models/host/discovered.rb:37
432
+ #: ../app/models/host/discovered.rb:51
465
433
  msgid "Invalid facts, must be a Hash"
466
434
  msgstr ""
467
435
 
468
- #: ../app/models/host/discovered.rb:42
469
- msgid ""
470
- "Expected discovery_fact '%s' is missing, unable to detect primary interface "
471
- "and set hostname"
436
+ #: ../app/models/host/discovered.rb:56
437
+ msgid "Expected discovery_fact '%s' is missing, unable to detect primary interface and set hostname"
472
438
  msgstr ""
473
439
 
474
- #: ../app/models/host/discovered.rb:49
475
- msgid ""
476
- "Invalid facts: hash does not contain a valid value for any of the facts in "
477
- "the discovery_hostname setting: %s"
440
+ #: ../app/models/host/discovered.rb:63
441
+ msgid "Invalid facts: hash does not contain a valid value for any of the facts in the discovery_hostname setting: %s"
478
442
  msgstr ""
479
443
 
480
- #: ../app/models/host/discovered.rb:66
444
+ #: ../app/models/host/discovered.rb:89
481
445
  msgid "Facts could not be imported"
482
446
  msgstr ""
483
447
 
484
- #: ../app/models/host/discovered.rb:133
485
- msgid "Unable to assign subnet, primary interface is missing IP address"
486
- msgstr ""
487
-
488
- #: ../app/models/host/discovered.rb:190
448
+ #: ../app/models/host/discovered.rb:212
489
449
  msgid "Could not get facts from proxy %{url}: %{error}"
490
450
  msgstr ""
491
451
 
492
- #: ../app/models/host/discovered.rb:198
452
+ #: ../app/models/host/discovered.rb:220
493
453
  msgid "Unable to reboot %{name} via %{url}: %{msg}"
494
454
  msgstr ""
495
455
 
496
- #: ../app/models/host/discovered.rb:206
456
+ #: ../app/models/host/discovered.rb:228
497
457
  msgid "Unable to perform kexec on %{name} via %{url}: %{msg}"
498
458
  msgstr ""
499
459
 
500
- #: ../app/models/host/discovered.rb:225
460
+ #: ../app/models/host/discovered.rb:247
501
461
  msgid "Invalid hostname: Could not normalize the hostname"
502
462
  msgstr ""
503
463
 
@@ -550,9 +510,7 @@ msgid "Hostname facts"
550
510
  msgstr ""
551
511
 
552
512
  #: ../app/models/setting/discovered.rb:22
553
- msgid ""
554
- "Automatically provision newly discovered hosts, according to the "
555
- "provisioning rules"
513
+ msgid "Automatically provision newly discovered hosts, according to the provisioning rules"
556
514
  msgstr ""
557
515
 
558
516
  #: ../app/models/setting/discovered.rb:22
@@ -628,9 +586,7 @@ msgid "IPMI facts"
628
586
  msgstr ""
629
587
 
630
588
  #: ../app/models/setting/discovered.rb:32
631
- msgid ""
632
- "Automatically generate PXE configuration to pin a newly discovered host to "
633
- "discovery"
589
+ msgid "Automatically generate PXE configuration to pin a newly discovered host to discovery"
634
590
  msgstr ""
635
591
 
636
592
  #: ../app/models/setting/discovered.rb:32
@@ -669,26 +625,40 @@ msgstr ""
669
625
  msgid "Force DNS"
670
626
  msgstr ""
671
627
 
672
- #: ../app/models/setting/discovered.rb:43
628
+ #: ../app/models/setting/discovered.rb:37
629
+ msgid "Do not allow to discover existing managed host matching MAC of a provisioning NIC (errors out early)"
630
+ msgstr ""
631
+
632
+ #: ../app/models/setting/discovered.rb:37
633
+ msgid "Error on existing NIC"
634
+ msgstr ""
635
+
636
+ #: ../app/models/setting/discovered.rb:44
673
637
  msgid "The default location to place discovered hosts in"
674
638
  msgstr ""
675
639
 
676
- #: ../app/models/setting/discovered.rb:43
640
+ #: ../app/models/setting/discovered.rb:44
677
641
  msgid "Discovery location"
678
642
  msgstr ""
679
643
 
680
- #: ../app/models/setting/discovered.rb:51
644
+ #: ../app/models/setting/discovered.rb:52
681
645
  msgid "The default organization to place discovered hosts in"
682
646
  msgstr ""
683
647
 
684
- #: ../app/models/setting/discovered.rb:51
648
+ #: ../app/models/setting/discovered.rb:52
685
649
  msgid "Discovery organization"
686
650
  msgstr ""
687
651
 
688
- #: ../app/services/foreman_discovery/fact_parser.rb:9
689
- msgid ""
690
- "Unable to detect primary interface using MAC '%{mac}' specified by "
691
- "discovery_fact '%{fact}'"
652
+ #: ../app/services/foreman_discovery/fact_parser.rb:4
653
+ msgid "Discovery fact parser does not work with non-discovery host '%{host}'"
654
+ msgstr ""
655
+
656
+ #: ../app/services/foreman_discovery/fact_parser.rb:6
657
+ msgid "Discovered host '%{host}' has all NICs filtered out, filter: %{filter}"
658
+ msgstr ""
659
+
660
+ #: ../app/services/foreman_discovery/fact_parser.rb:12
661
+ msgid "Unable to find primary NIC with %{mac} specified via '%{fact}', NIC filter: %{filter}"
692
662
  msgstr ""
693
663
 
694
664
  #: ../app/services/foreman_discovery/node_api/node_resource.rb:75
@@ -707,25 +677,15 @@ msgstr ""
707
677
  msgid "Host"
708
678
  msgstr "Equipo"
709
679
 
710
- #: ../app/views/dashboard/_discovery_widget_host_list.html.erb:4
711
- #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:7
712
- #: ../app/views/discovered_hosts/_selected_hosts.html.erb:8
713
- #: ../app/views/discovered_mailer/discovered_summary.html.erb:18
714
- #: ../app/views/discovered_mailer/discovered_summary.text.erb:10
680
+ #: ../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
715
681
  msgid "Model"
716
682
  msgstr "Modelo"
717
683
 
718
- #: ../app/views/dashboard/_discovery_widget_host_list.html.erb:5
719
- #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:9
720
- #: ../app/views/discovered_mailer/discovered_summary.html.erb:20
721
- #: ../app/views/discovered_mailer/discovered_summary.text.erb:12
684
+ #: ../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
722
685
  msgid "CPUs"
723
686
  msgstr "Procesadores"
724
687
 
725
- #: ../app/views/dashboard/_discovery_widget_host_list.html.erb:6
726
- #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:10
727
- #: ../app/views/discovered_mailer/discovered_summary.html.erb:21
728
- #: ../app/views/discovered_mailer/discovered_summary.text.erb:13
688
+ #: ../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
729
689
  msgid "Memory"
730
690
  msgstr "Memoria"
731
691
 
@@ -745,16 +705,11 @@ msgstr "Seleccionar tódolos obxetos desta páxina"
745
705
  msgid "items selected. Uncheck to Clear"
746
706
  msgstr "obxetos seleccionados. Desactivar para limpar"
747
707
 
748
- #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:6
749
- #: ../app/views/discovered_hosts/_selected_hosts.html.erb:7
750
- #: ../app/views/discovered_mailer/discovered_summary.html.erb:17
751
- #: ../app/views/discovered_mailer/discovered_summary.text.erb:9
708
+ #: ../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
752
709
  msgid "Name"
753
710
  msgstr "Nome"
754
711
 
755
- #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:8
756
- #: ../app/views/discovered_mailer/discovered_summary.html.erb:19
757
- #: ../app/views/discovered_mailer/discovered_summary.text.erb:11
712
+ #: ../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
758
713
  msgid "IP Address"
759
714
  msgstr "Dirección IP"
760
715
 
@@ -766,13 +721,11 @@ msgstr ""
766
721
  msgid "Disks Size"
767
722
  msgstr ""
768
723
 
769
- #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:17
770
- #: ../app/views/discovered_hosts/_selected_hosts.html.erb:10
724
+ #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:17 ../app/views/discovered_hosts/_selected_hosts.html.erb:10
771
725
  msgid "Location"
772
726
  msgstr "Lugares"
773
727
 
774
- #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:20
775
- #: ../app/views/discovered_hosts/_selected_hosts.html.erb:13
728
+ #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:20 ../app/views/discovered_hosts/_selected_hosts.html.erb:13
776
729
  msgid "Organization"
777
730
  msgstr "Organización"
778
731
 
@@ -800,18 +753,8 @@ msgstr "Introducir"
800
753
  msgid "Provision %s"
801
754
  msgstr ""
802
755
 
803
- #: ../app/views/discovered_hosts/index.html.erb:2
804
- msgid "Reboot All"
805
- msgstr ""
806
-
807
- #: ../app/views/discovered_hosts/index.html.erb:3
808
- msgid "Auto Provision All"
809
- msgstr ""
810
-
811
756
  #: ../app/views/discovered_hosts/multiple_destroy.html.erb:3
812
- msgid ""
813
- "This might take a while, as all hosts, facts and reports will be destroyed "
814
- "as well"
757
+ msgid "This might take a while, as all hosts, facts and reports will be destroyed as well"
815
758
  msgstr "Esta acción pode tardar un anaco, xa que se eliminarán tódolos equipos, datos e informes."
816
759
 
817
760
  #: ../app/views/discovered_hosts/select_multiple_location.html.erb:5
@@ -826,34 +769,36 @@ msgstr ""
826
769
  msgid "Discovered host: %s"
827
770
  msgstr ""
828
771
 
829
- #: ../app/views/discovered_hosts/show.html.erb:34
772
+ #: ../app/views/discovered_hosts/show.html.erb:37
830
773
  msgid "Interfaces"
831
774
  msgstr ""
832
775
 
833
- #: ../app/views/discovered_hosts/show.html.erb:41
776
+ #: ../app/views/discovered_hosts/show.html.erb:44
834
777
  msgid "Type"
835
778
  msgstr ""
836
779
 
837
- #: ../app/views/discovered_hosts/show.html.erb:42
780
+ #: ../app/views/discovered_hosts/show.html.erb:45
838
781
  msgid "Identifier"
839
782
  msgstr ""
840
783
 
841
- #: ../app/views/discovered_hosts/show.html.erb:43
784
+ #: ../app/views/discovered_hosts/show.html.erb:46
842
785
  msgid "MAC address"
843
786
  msgstr ""
844
787
 
845
- #: ../app/views/discovered_hosts/show.html.erb:44
788
+ #: ../app/views/discovered_hosts/show.html.erb:47
846
789
  msgid "IP address"
847
790
  msgstr ""
848
791
 
792
+ #: ../app/views/discovered_hosts/show.html.erb:66
793
+ msgid "Collapse All"
794
+ msgstr ""
795
+
849
796
  #: ../app/views/discovered_hosts/welcome.html.erb:7
850
797
  msgid "No discovered hosts found in this context."
851
798
  msgstr ""
852
799
 
853
800
  #: ../app/views/discovered_hosts/welcome.html.erb:8
854
- msgid ""
855
- "This page shows discovered bare-metal or virtual nodes waiting to be "
856
- "provisioned."
801
+ msgid "This page shows discovered bare-metal or virtual nodes waiting to be provisioned."
857
802
  msgstr ""
858
803
 
859
804
  #: ../app/views/discovered_hosts/welcome.html.erb:9
@@ -868,23 +813,19 @@ msgstr ""
868
813
  msgid "<b>Foreman</b> Discovered hosts summary"
869
814
  msgstr ""
870
815
 
871
- #: ../app/views/discovered_mailer/discovered_summary.html.erb:10
872
- #: ../app/views/discovered_mailer/discovered_summary.text.erb:5
816
+ #: ../app/views/discovered_mailer/discovered_summary.html.erb:10 ../app/views/discovered_mailer/discovered_summary.text.erb:5
873
817
  msgid "Summary from %{time} ago to %{now}"
874
818
  msgstr ""
875
819
 
876
- #: ../app/views/discovered_mailer/discovered_summary.html.erb:11
877
- #: ../app/views/discovered_mailer/discovered_summary.text.erb:3
820
+ #: ../app/views/discovered_mailer/discovered_summary.html.erb:11 ../app/views/discovered_mailer/discovered_summary.text.erb:3
878
821
  msgid "Discovered hosts from Foreman server at %{foreman_url}"
879
822
  msgstr ""
880
823
 
881
- #: ../app/views/discovered_mailer/discovered_summary.html.erb:22
882
- #: ../app/views/discovered_mailer/discovered_summary.text.erb:14
824
+ #: ../app/views/discovered_mailer/discovered_summary.html.erb:22 ../app/views/discovered_mailer/discovered_summary.text.erb:14
883
825
  msgid "Disk count"
884
826
  msgstr ""
885
827
 
886
- #: ../app/views/discovered_mailer/discovered_summary.html.erb:23
887
- #: ../app/views/discovered_mailer/discovered_summary.text.erb:15
828
+ #: ../app/views/discovered_mailer/discovered_summary.html.erb:23 ../app/views/discovered_mailer/discovered_summary.text.erb:15
888
829
  msgid "Disks size"
889
830
  msgstr ""
890
831
 
@@ -933,37 +874,27 @@ msgid "Rule priority (lower integer means higher priority)"
933
874
  msgstr ""
934
875
 
935
876
  #: ../app/views/discovery_rules/_template_inline.erb:2
936
- msgid ""
937
- "Specify target hostname template pattern in the same syntax as in "
938
- "Provisioning Templates (ERB)."
877
+ msgid "Specify target hostname template pattern in the same syntax as in Provisioning Templates (ERB)."
939
878
  msgstr ""
940
879
 
941
880
  #: ../app/views/discovery_rules/_template_inline.erb:4
942
- msgid ""
943
- "Domain will be appended automatically. A hostname based on MAC address will "
944
- "be used when left blank."
881
+ msgid "Domain will be appended automatically. A hostname based on MAC address will be used when left blank."
945
882
  msgstr ""
946
883
 
947
884
  #: ../app/views/discovery_rules/_template_inline.erb:5
948
- msgid ""
949
- "In addition to @host attribute function rand for random integers is "
950
- "available. Examples:"
885
+ msgid "In addition to @host attribute function rand for random integers is available. Examples:"
951
886
  msgstr ""
952
887
 
953
888
  #: ../app/views/discovery_rules/_template_inline.erb:8
954
- msgid ""
955
- "When creating hostname patterns, make sure the resulting host names are "
956
- "unique."
889
+ msgid "When creating hostname patterns, make sure the resulting host names are unique."
957
890
  msgstr ""
958
891
 
959
892
  #: ../app/views/discovery_rules/_template_inline.erb:9
960
- msgid ""
961
- "Hostnames must not start with numbers. A good approach is to use unique "
962
- "information provided by facter (MAC address, BIOS or serial ID)."
893
+ msgid "Hostnames must not start with numbers. A good approach is to use unique information provided by facter (MAC address, BIOS or serial ID)."
963
894
  msgstr ""
964
895
 
965
896
  #: ../app/views/discovery_rules/edit.html.erb:1
966
- msgid "Edit Discovery Rule"
897
+ msgid "Edit %s"
967
898
  msgstr ""
968
899
 
969
900
  #: ../app/views/discovery_rules/index.html.erb:1
@@ -1018,30 +949,26 @@ msgstr ""
1018
949
  msgid "Details"
1019
950
  msgstr ""
1020
951
 
1021
- #: ../lib/foreman_discovery/engine.rb:151
952
+ #: ../lib/foreman_discovery/engine.rb:158
1022
953
  msgid "Discovered hosts"
1023
954
  msgstr ""
1024
955
 
1025
- #: ../lib/foreman_discovery/engine.rb:156
956
+ #: ../lib/foreman_discovery/engine.rb:163
1026
957
  msgid "Discovery rules"
1027
958
  msgstr ""
1028
959
 
1029
- #: ../lib/foreman_discovery/engine.rb:172
960
+ #: ../lib/foreman_discovery/engine.rb:179
1030
961
  msgid "Discovery Kexec template"
1031
962
  msgstr ""
1032
963
 
1033
- #: ../lib/foreman_discovery/engine.rb:181
964
+ #: ../lib/foreman_discovery/engine.rb:188
1034
965
  msgid "Discovery Proxy"
1035
966
  msgstr ""
1036
967
 
1037
- #: ../lib/foreman_discovery/engine.rb:182
1038
- msgid ""
1039
- "Discovery Proxy to use within this subnet for managing connection to "
1040
- "discovered hosts"
968
+ #: ../lib/foreman_discovery/engine.rb:189
969
+ msgid "Discovery Proxy to use within this subnet for managing connection to discovered hosts"
1041
970
  msgstr ""
1042
971
 
1043
- #: ../lib/foreman_discovery/engine.rb:183
1044
- msgid ""
1045
- "ID of Discovery Proxy to use within this subnet for managing connection to "
1046
- "discovered hosts"
972
+ #: ../lib/foreman_discovery/engine.rb:190
973
+ msgid "ID of Discovery Proxy to use within this subnet for managing connection to discovered hosts"
1047
974
  msgstr ""