foreman_discovery 16.1.2 → 16.1.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ef6a4731f46b5f34f372a87f8da770e0510504664852ef61253677bb587c8842
4
- data.tar.gz: 75715ed1dae928289c3189443f8f290c6fa95a681678610c0aca980b18825aa1
3
+ metadata.gz: 6ac7d31fa470fc53b81672be0f21309d8df92eef200481143055c9ad3af467be
4
+ data.tar.gz: a71a4512c1bd4f90d0163dfaf07b5a670112f4825395a004c723e2f6da98d8ba
5
5
  SHA512:
6
- metadata.gz: 5882e04be01b4d3f213acf4b751a0a4784436cd97558ab1e9448f8976e89f86db047c986923da5d62f72757c86430790590c942f0579ba62224f7ce458ef9c9d
7
- data.tar.gz: 154d39a5d013b431ce6367d5a0f87e06521df092c36a4d95da0114062f4aef569ddd80600ac077db7639b9628739056e66d619de7604e026e45f57406a069c3c
6
+ metadata.gz: e271f6b3990930e40277c8921254e1fd45ae89796b7d4693816d6083eb5fdcce078eb310b73579bab68e7c07c51c3e3ebf2bf93242339e6b62424d6bc48692df
7
+ data.tar.gz: ae858e8f800237891cb92ce4868d43820e9f20e409c26f0bd887df6bef3c783c9e3dffbb90ce8b91971a3b5b331334593c0968712a93dc3c5c7df174346651f3
@@ -102,9 +102,16 @@ module Api
102
102
  state = true
103
103
  User.as_anonymous_admin do
104
104
  @discovered_host = Host::Discovered.import_host(facts)
105
- Rails.logger.warn 'Discovered facts import unsuccessful, skipping auto provisioning' unless @discovered_host
106
- if Setting['discovery_auto'] && @discovered_host && (rule = find_discovery_rule(@discovered_host))
107
- state = perform_auto_provision(@discovered_host, rule)
105
+ # Host::Based.set_taxonomies sets taxonomies during import from either
106
+ # facts or via Global Foreman setting "default_taxonomy", reset it back so
107
+ # the anonymous admin can see all records. We set taxonomy explicitly via
108
+ # discovery SubnetAndTaxonomy import hook and enforce taxnomy manually
109
+ # in find_discovery_rule method via validate_rule_by_taxonomy.
110
+ Taxonomy.no_taxonomy_scope do
111
+ Rails.logger.warn 'Discovered facts import unsuccessful, skipping auto provisioning' unless @discovered_host
112
+ if Setting['discovery_auto'] && @discovered_host && (rule = find_discovery_rule(@discovered_host))
113
+ state = perform_auto_provision(@discovered_host, rule)
114
+ end
108
115
  end
109
116
  end
110
117
  process_response state
@@ -1,3 +1,3 @@
1
1
  module ForemanDiscovery
2
- VERSION = "16.1.2"
2
+ VERSION = "16.1.3"
3
3
  end
@@ -7,7 +7,7 @@
7
7
  # Robert Antoni Buj Gelonch <rbuj@fedoraproject.org>, 2015-2016
8
8
  msgid ""
9
9
  msgstr ""
10
- "Project-Id-Version: foreman_discovery 16.1.0\n"
10
+ "Project-Id-Version: foreman_discovery 16.3.4\n"
11
11
  "Report-Msgid-Bugs-To: \n"
12
12
  "PO-Revision-Date: 2020-05-26 17:21+0000\n"
13
13
  "Last-Translator: Transifex Bot <>\n"
@@ -43,7 +43,7 @@ msgstr "Nombre d'entrades per petició"
43
43
  msgid "Show a discovered host"
44
44
  msgstr "Mostra un amfitrió descobert"
45
45
 
46
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:37 ../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:85
47
47
  msgid "DHCP filename option (Grub2 or PXELinux by default)"
48
48
  msgstr ""
49
49
 
@@ -55,6 +55,10 @@ msgstr "Crea un amfitrió descobert per a provar-ho (utilitzeu /facts per crear
55
55
  msgid "Provision a discovered host"
56
56
  msgstr "Aprovisiona un amfitrió descobert"
57
57
 
58
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:54 ../app/controllers/api/v2/discovered_hosts_controller.rb:57 ../app/controllers/api/v2/discovered_hosts_controller.rb:58 ../app/controllers/api/v2/discovered_hosts_controller.rb:61 ../app/controllers/api/v2/discovered_hosts_controller.rb:64
59
+ msgid "required if host is managed and value is not inherited from host group"
60
+ msgstr ""
61
+
58
62
  #: ../app/controllers/api/v2/discovered_hosts_controller.rb:55
59
63
  msgid "not required if using a subnet with DHCP proxy"
60
64
  msgstr "no es requereix si s'està utilitzant una subxarxa amb servidor intermediari DHCP"
@@ -63,71 +67,99 @@ msgstr "no es requereix si s'està utilitzant una subxarxa amb servidor intermed
63
67
  msgid "not required if it's a virtual machine"
64
68
  msgstr ""
65
69
 
66
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:76
70
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:62
71
+ msgid "required if not imaged based provisioning and host is managed and value is not inherited from host group"
72
+ msgstr ""
73
+
74
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:63
75
+ msgid "required if host is managed and custom partition has not been defined"
76
+ msgstr ""
77
+
78
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:69
79
+ msgid "Host's owner type"
80
+ msgstr ""
81
+
82
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:72
83
+ msgid "Host's parameters (array or indexed hash)"
84
+ msgstr ""
85
+
86
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:73
87
+ msgid "Name of the parameter"
88
+ msgstr ""
89
+
90
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:74
91
+ msgid "Parameter value"
92
+ msgstr ""
93
+
94
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:75
95
+ msgid "Type of value"
96
+ msgstr ""
97
+
98
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:82
67
99
  msgid "UUID to track orchestration tasks status, GET /api/orchestration/:UUID/tasks"
68
100
  msgstr ""
69
101
 
70
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:78
102
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:84
71
103
  msgid "required if value is not inherited from host group or default password in settings"
72
104
  msgstr ""
73
105
 
74
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:89
106
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:95
75
107
  msgid "Delete a discovered host"
76
108
  msgstr "Suprimeix un amfitrió descobert"
77
109
 
78
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:96
110
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:102
79
111
  msgid "Upload facts for a host, creating the host if required"
80
112
  msgstr "Puja els objectes d'interès per a un amfitrió, creant el nou amfitrió si fos necessari"
81
113
 
82
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:97
114
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:103
83
115
  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)"
84
116
  msgstr ""
85
117
 
86
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:116
118
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:129
87
119
  msgid "Execute rules against a discovered host"
88
120
  msgstr ""
89
121
 
90
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:122 ../app/controllers/discovered_hosts_controller.rb:160
122
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:135 ../app/controllers/discovered_hosts_controller.rb:160
91
123
  msgid "Host %{host} was provisioned with rule %{rule}"
92
124
  msgstr "L'amfitrió %{host} va ser aprovisionat amb la regla %{rule}"
93
125
 
94
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:125
126
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:138
95
127
  msgid "Unable to provision %{host}: %{errors}"
96
128
  msgstr "No es pot aprovisionar a %{host}: %{errors}"
97
129
 
98
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:131 ../app/controllers/discovered_hosts_controller.rb:167
130
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:144 ../app/controllers/discovered_hosts_controller.rb:167
99
131
  msgid "No rule found for host %s"
100
132
  msgstr "No s'ha trobat cap regla per a l'amfitrió %s"
101
133
 
102
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:138
134
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:151
103
135
  msgid "Execute rules against all currently discovered hosts"
104
136
  msgstr "Executa les regles contra tots els amfitrions detectats actualment"
105
137
 
106
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:142 ../app/controllers/discovered_hosts_controller.rb:173
138
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:155 ../app/controllers/discovered_hosts_controller.rb:173
107
139
  msgid "Errors during auto provisioning: %s"
108
140
  msgstr "Erros durant l'auto aprovisionament: %s"
109
141
 
110
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:145 ../app/controllers/discovered_hosts_controller.rb:176
142
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:158 ../app/controllers/discovered_hosts_controller.rb:176
111
143
  msgid "No discovered hosts to provision"
112
144
  msgstr "Sense amfitrions descoberts per aprovisionar"
113
145
 
114
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:167
146
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:180
115
147
  msgid "%s discovered hosts were provisioned"
116
148
  msgstr "%s amfitrions descoberts van ser aprovisionats"
117
149
 
118
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:178
150
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:191
119
151
  msgid "Refreshing the facts of a discovered host"
120
152
  msgstr "S'estan refrescant els objectes d'interès d'un amfitrió descobert"
121
153
 
122
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:187
154
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:200
123
155
  msgid "Rebooting a discovered host"
124
156
  msgstr "S'està reiniciant un amfitrió descobert"
125
157
 
126
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:196
158
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:209
127
159
  msgid "Rebooting all discovered hosts"
128
160
  msgstr "S'estan reiniciant tots els amfitrions descoberts"
129
161
 
130
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:207 ../app/controllers/discovered_hosts_controller.rb:129
162
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:220 ../app/controllers/discovered_hosts_controller.rb:129
131
163
  msgid "Discovered hosts are rebooting now"
132
164
  msgstr "Ara s'estan reiniciant els amfitrions descoberts"
133
165
 
@@ -371,7 +403,7 @@ msgstr "Es va informar en els últims 7 dies"
371
403
  msgid "Provision"
372
404
  msgstr "Aprovisiona"
373
405
 
374
- #: ../app/helpers/discovery_rules_helper.rb:26 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:1 ../app/views/discovered_hosts/welcome.html.erb:1 ../app/views/discovered_hosts/welcome.html.erb:6 ../lib/foreman_discovery/engine.rb:158 ../lib/foreman_discovery/engine.rb:173
406
+ #: ../app/helpers/discovery_rules_helper.rb:26 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:1 ../app/views/discovered_hosts/welcome.html.erb:8 ../lib/foreman_discovery/engine.rb:159 ../lib/foreman_discovery/engine.rb:174
375
407
  msgid "Discovered Hosts"
376
408
  msgstr ""
377
409
 
@@ -841,18 +873,6 @@ msgstr "Adreça IP"
841
873
  msgid "Collapse All"
842
874
  msgstr ""
843
875
 
844
- #: ../app/views/discovered_hosts/welcome.html.erb:7
845
- msgid "No discovered hosts found in this context."
846
- msgstr ""
847
-
848
- #: ../app/views/discovered_hosts/welcome.html.erb:8
849
- msgid "This page shows discovered bare-metal or virtual nodes waiting to be provisioned."
850
- msgstr ""
851
-
852
- #: ../app/views/discovered_hosts/welcome.html.erb:9
853
- msgid "Learn more about this in the documentation."
854
- msgstr "Obteniu més informació sobre això a la documentació."
855
-
856
876
  #: ../app/views/discovered_mailer/discovered_summary.html.erb:6
857
877
  msgid "Summary report for discovered hosts from Foreman"
858
878
  msgstr ""
@@ -945,7 +965,7 @@ msgstr ""
945
965
  msgid "Edit %s"
946
966
  msgstr "Edita %s"
947
967
 
948
- #: ../app/views/discovery_rules/index.html.erb:1 ../lib/foreman_discovery/engine.rb:163
968
+ #: ../app/views/discovery_rules/index.html.erb:1 ../lib/foreman_discovery/engine.rb:164
949
969
  msgid "Discovery Rules"
950
970
  msgstr "Regles de descobriment"
951
971
 
@@ -1001,19 +1021,19 @@ msgstr ""
1001
1021
  msgid "Details"
1002
1022
  msgstr ""
1003
1023
 
1004
- #: ../lib/foreman_discovery/engine.rb:179
1024
+ #: ../lib/foreman_discovery/engine.rb:180
1005
1025
  msgid "Discovery Kexec template"
1006
1026
  msgstr ""
1007
1027
 
1008
- #: ../lib/foreman_discovery/engine.rb:188
1028
+ #: ../lib/foreman_discovery/engine.rb:189
1009
1029
  msgid "Discovery Proxy"
1010
1030
  msgstr ""
1011
1031
 
1012
- #: ../lib/foreman_discovery/engine.rb:189
1032
+ #: ../lib/foreman_discovery/engine.rb:190
1013
1033
  msgid "Discovery Proxy to use within this subnet for managing connection to discovered hosts"
1014
1034
  msgstr ""
1015
1035
 
1016
- #: ../lib/foreman_discovery/engine.rb:190
1036
+ #: ../lib/foreman_discovery/engine.rb:191
1017
1037
  msgid "ID of Discovery Proxy to use within this subnet for managing connection to discovered hosts"
1018
1038
  msgstr ""
1019
1039
 
@@ -1032,3 +1052,6 @@ msgstr ""
1032
1052
  #: action_names.rb:5
1033
1053
  msgid "Action with sub plans"
1034
1054
  msgstr ""
1055
+
1056
+ #~ msgid "Learn more about this in the documentation."
1057
+ #~ msgstr "Obteniu més informació sobre això a la documentació."
@@ -14,7 +14,7 @@
14
14
  # stbenjam <stephen@redhat.com>, 2016
15
15
  msgid ""
16
16
  msgstr ""
17
- "Project-Id-Version: foreman_discovery 16.1.0\n"
17
+ "Project-Id-Version: foreman_discovery 16.3.4\n"
18
18
  "Report-Msgid-Bugs-To: \n"
19
19
  "PO-Revision-Date: 2020-05-26 17:21+0000\n"
20
20
  "Last-Translator: Transifex Bot <>\n"
@@ -49,7 +49,7 @@ msgstr "Anzahl der Einträge pro Anfrage"
49
49
  msgid "Show a discovered host"
50
50
  msgstr "Entdeckten Host anzeigen"
51
51
 
52
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:37 ../app/controllers/api/v2/discovered_hosts_controller.rb:79
52
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:37 ../app/controllers/api/v2/discovered_hosts_controller.rb:85
53
53
  msgid "DHCP filename option (Grub2 or PXELinux by default)"
54
54
  msgstr "DHCP-Dateinamensoption (Standardmäßig Grub2/PXELinux)"
55
55
 
@@ -61,6 +61,10 @@ msgstr "Entdeckten Host zum Testen erstellen (verwenden Sie /Fakten zur Erstellu
61
61
  msgid "Provision a discovered host"
62
62
  msgstr "Entdeckten Host bereitstellen"
63
63
 
64
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:54 ../app/controllers/api/v2/discovered_hosts_controller.rb:57 ../app/controllers/api/v2/discovered_hosts_controller.rb:58 ../app/controllers/api/v2/discovered_hosts_controller.rb:61 ../app/controllers/api/v2/discovered_hosts_controller.rb:64
65
+ msgid "required if host is managed and value is not inherited from host group"
66
+ msgstr ""
67
+
64
68
  #: ../app/controllers/api/v2/discovered_hosts_controller.rb:55
65
69
  msgid "not required if using a subnet with DHCP proxy"
66
70
  msgstr "nicht erforderlich, wenn ein Subnetz mit DHCP-Proxy verwendet wird"
@@ -69,71 +73,99 @@ msgstr "nicht erforderlich, wenn ein Subnetz mit DHCP-Proxy verwendet wird"
69
73
  msgid "not required if it's a virtual machine"
70
74
  msgstr "nicht erforderlich für eine virtuelle Maschine"
71
75
 
72
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:76
76
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:62
77
+ msgid "required if not imaged based provisioning and host is managed and value is not inherited from host group"
78
+ msgstr ""
79
+
80
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:63
81
+ msgid "required if host is managed and custom partition has not been defined"
82
+ msgstr ""
83
+
84
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:69
85
+ msgid "Host's owner type"
86
+ msgstr ""
87
+
88
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:72
89
+ msgid "Host's parameters (array or indexed hash)"
90
+ msgstr ""
91
+
92
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:73
93
+ msgid "Name of the parameter"
94
+ msgstr ""
95
+
96
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:74
97
+ msgid "Parameter value"
98
+ msgstr ""
99
+
100
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:75
101
+ msgid "Type of value"
102
+ msgstr ""
103
+
104
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:82
73
105
  msgid "UUID to track orchestration tasks status, GET /api/orchestration/:UUID/tasks"
74
106
  msgstr "UUID zum Tracken des Status der Orchestrierungsaufgaben, GET /api/orchestration/:UUID/tasks"
75
107
 
76
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:78
108
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:84
77
109
  msgid "required if value is not inherited from host group or default password in settings"
78
110
  msgstr "erforderlich, falls kein Wert von Hostgruppe geerbt wird oder es nicht das Standardpasswort in Einstellungen ist"
79
111
 
80
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:89
112
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:95
81
113
  msgid "Delete a discovered host"
82
114
  msgstr "Entdeckten Host löschen"
83
115
 
84
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:96
116
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:102
85
117
  msgid "Upload facts for a host, creating the host if required"
86
118
  msgstr "Fakten für einen Host hochladen mit Erstellung des Hosts, wenn erforderlich"
87
119
 
88
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:97
120
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:103
89
121
  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)"
90
122
  msgstr "Hash, der Fakten für den Host mit minimaler Anzahl an Fakten enthält: discovery_bootif, macaddress_eth0, ipaddress, ipaddress_eth0, interfaces: eth0 (Beispiel für primäre Schnittstelle mit dem Namen eth0) "
91
123
 
92
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:116
124
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:129
93
125
  msgid "Execute rules against a discovered host"
94
126
  msgstr "Regeln auf einem entdeckten Host anwenden"
95
127
 
96
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:122 ../app/controllers/discovered_hosts_controller.rb:160
128
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:135 ../app/controllers/discovered_hosts_controller.rb:160
97
129
  msgid "Host %{host} was provisioned with rule %{rule}"
98
130
  msgstr "Host %{host} wurde bereitgestellt mit Regel %{rule}"
99
131
 
100
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:125
132
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:138
101
133
  msgid "Unable to provision %{host}: %{errors}"
102
134
  msgstr "%{host} kann nicht bereitgestellt werden: %{errors} "
103
135
 
104
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:131 ../app/controllers/discovered_hosts_controller.rb:167
136
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:144 ../app/controllers/discovered_hosts_controller.rb:167
105
137
  msgid "No rule found for host %s"
106
138
  msgstr "Keine Regel gefunden für Host %s"
107
139
 
108
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:138
140
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:151
109
141
  msgid "Execute rules against all currently discovered hosts"
110
142
  msgstr "Regeln auf allen kürzlich entdeckten Hosts anwenden"
111
143
 
112
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:142 ../app/controllers/discovered_hosts_controller.rb:173
144
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:155 ../app/controllers/discovered_hosts_controller.rb:173
113
145
  msgid "Errors during auto provisioning: %s"
114
146
  msgstr "Fehler bei automatischer Bereitstellung: %s"
115
147
 
116
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:145 ../app/controllers/discovered_hosts_controller.rb:176
148
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:158 ../app/controllers/discovered_hosts_controller.rb:176
117
149
  msgid "No discovered hosts to provision"
118
150
  msgstr "Keine entdeckten Hosts zur Bereitstellung"
119
151
 
120
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:167
152
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:180
121
153
  msgid "%s discovered hosts were provisioned"
122
154
  msgstr "%s entdeckte Hosts wurden bereitgestellt"
123
155
 
124
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:178
156
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:191
125
157
  msgid "Refreshing the facts of a discovered host"
126
158
  msgstr "Fakten eines entdeckten Hosts werden aktualisiert"
127
159
 
128
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:187
160
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:200
129
161
  msgid "Rebooting a discovered host"
130
162
  msgstr "Entdeckten Host neu starten"
131
163
 
132
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:196
164
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:209
133
165
  msgid "Rebooting all discovered hosts"
134
166
  msgstr "Alle entdeckten Hosts neu starten"
135
167
 
136
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:207 ../app/controllers/discovered_hosts_controller.rb:129
168
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:220 ../app/controllers/discovered_hosts_controller.rb:129
137
169
  msgid "Discovered hosts are rebooting now"
138
170
  msgstr "Entdeckte Hosts werden jetzt neu gestartet"
139
171
 
@@ -377,7 +409,7 @@ msgstr "Berichtet in den letzten 7 Tagen"
377
409
  msgid "Provision"
378
410
  msgstr "Bereitstellen"
379
411
 
380
- #: ../app/helpers/discovery_rules_helper.rb:26 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:1 ../app/views/discovered_hosts/welcome.html.erb:1 ../app/views/discovered_hosts/welcome.html.erb:6 ../lib/foreman_discovery/engine.rb:158 ../lib/foreman_discovery/engine.rb:173
412
+ #: ../app/helpers/discovery_rules_helper.rb:26 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:1 ../app/views/discovered_hosts/welcome.html.erb:8 ../lib/foreman_discovery/engine.rb:159 ../lib/foreman_discovery/engine.rb:174
381
413
  msgid "Discovered Hosts"
382
414
  msgstr "Entdeckte Hosts"
383
415
 
@@ -847,18 +879,6 @@ msgstr "IP-Adresse"
847
879
  msgid "Collapse All"
848
880
  msgstr "Alle einklappen"
849
881
 
850
- #: ../app/views/discovered_hosts/welcome.html.erb:7
851
- msgid "No discovered hosts found in this context."
852
- msgstr "Keine entdeckten Hosts gefunden in diesem Kontext."
853
-
854
- #: ../app/views/discovered_hosts/welcome.html.erb:8
855
- msgid "This page shows discovered bare-metal or virtual nodes waiting to be provisioned."
856
- msgstr ""
857
-
858
- #: ../app/views/discovered_hosts/welcome.html.erb:9
859
- msgid "Learn more about this in the documentation."
860
- msgstr "Mehr dazu in der Dokumentation."
861
-
862
882
  #: ../app/views/discovered_mailer/discovered_summary.html.erb:6
863
883
  msgid "Summary report for discovered hosts from Foreman"
864
884
  msgstr "Zusammenfassungsbericht für entdeckte Hosts von Foreman"
@@ -951,7 +971,7 @@ msgstr ""
951
971
  msgid "Edit %s"
952
972
  msgstr "%s bearbeiten"
953
973
 
954
- #: ../app/views/discovery_rules/index.html.erb:1 ../lib/foreman_discovery/engine.rb:163
974
+ #: ../app/views/discovery_rules/index.html.erb:1 ../lib/foreman_discovery/engine.rb:164
955
975
  msgid "Discovery Rules"
956
976
  msgstr "Entdeckungsregeln"
957
977
 
@@ -1007,19 +1027,19 @@ msgstr "Einer oder mehrere Hosts wurden entdeckt"
1007
1027
  msgid "Details"
1008
1028
  msgstr "Details"
1009
1029
 
1010
- #: ../lib/foreman_discovery/engine.rb:179
1030
+ #: ../lib/foreman_discovery/engine.rb:180
1011
1031
  msgid "Discovery Kexec template"
1012
1032
  msgstr ""
1013
1033
 
1014
- #: ../lib/foreman_discovery/engine.rb:188
1034
+ #: ../lib/foreman_discovery/engine.rb:189
1015
1035
  msgid "Discovery Proxy"
1016
1036
  msgstr "Discovery-Proxy"
1017
1037
 
1018
- #: ../lib/foreman_discovery/engine.rb:189
1038
+ #: ../lib/foreman_discovery/engine.rb:190
1019
1039
  msgid "Discovery Proxy to use within this subnet for managing connection to discovered hosts"
1020
1040
  msgstr ""
1021
1041
 
1022
- #: ../lib/foreman_discovery/engine.rb:190
1042
+ #: ../lib/foreman_discovery/engine.rb:191
1023
1043
  msgid "ID of Discovery Proxy to use within this subnet for managing connection to discovered hosts"
1024
1044
  msgstr ""
1025
1045
 
@@ -1038,3 +1058,8 @@ msgstr ""
1038
1058
  #: action_names.rb:5
1039
1059
  msgid "Action with sub plans"
1040
1060
  msgstr ""
1061
+
1062
+ #~ msgid "Learn more about this in the documentation."
1063
+ #~ msgstr "Mehr dazu in der Dokumentation."
1064
+ #~ msgid "No discovered hosts found in this context."
1065
+ #~ msgstr "Keine entdeckten Hosts gefunden in diesem Kontext."