foreman_discovery 3.0.0 → 4.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +1 -1
- data/app/controllers/api/v2/discovered_hosts_controller.rb +31 -11
- data/app/controllers/api/v2/discovery_rules_controller.rb +8 -16
- data/app/controllers/concerns/foreman/controller/discovered_extensions.rb +47 -2
- data/app/controllers/discovered_hosts_controller.rb +30 -55
- data/app/controllers/discovery_rules_controller.rb +2 -4
- data/app/helpers/discovered_hosts_helper.rb +27 -5
- data/app/lib/facter_utils.rb +18 -0
- data/app/lib/puppet_fact_parser_extensions.rb +18 -32
- data/app/models/discovery_rule.rb +33 -2
- data/app/models/host/discovered.rb +47 -61
- data/app/models/host/managed_extensions.rb +12 -3
- data/app/models/setting/discovered.rb +18 -6
- data/app/services/foreman_discovery/host_converter.rb +22 -0
- data/app/views/api/v2/discovered_hosts/main.json.rabl +1 -1
- data/app/views/api/v2/discovery_rules/main.json.rabl +6 -1
- data/app/views/api/v2/discovery_rules/show.json.rabl +4 -0
- data/app/views/dashboard/_discovery_widget.html.erb +6 -4
- data/app/views/dashboard/_discovery_widget_host.html.erb +4 -0
- data/app/views/dashboard/_discovery_widget_host_list.html.erb +2 -3
- data/app/views/discovered_hosts/_discovered_host.html.erb +3 -5
- data/app/views/discovered_hosts/_discovered_hosts_list.html.erb +7 -7
- data/app/views/discovered_hosts/index.html.erb +1 -0
- data/app/views/discovery_rules/_form.html.erb +51 -32
- data/config/routes.rb +4 -4
- data/db/migrate/20150310153859_remove_discovery_attribute_sets_from_managed_hosts.rb +8 -0
- data/db/migrate/20150331132115_remove_old_permissions.rb +16 -0
- data/db/migrate/20150505111345_remove_leftover_tokens.rb +13 -0
- data/db/migrate/20150512150432_remove_old_discovery_reader_permissions.rb +10 -0
- data/db/migrate/20150714144500_review_discovery_permissions.rb +17 -0
- data/lib/foreman_discovery/engine.rb +46 -16
- data/lib/foreman_discovery/version.rb +1 -1
- data/locale/de/LC_MESSAGES/foreman_discovery.mo +0 -0
- data/locale/de/foreman_discovery.po +74 -72
- data/locale/de/foreman_discovery.pox +40 -0
- data/locale/en_GB/LC_MESSAGES/foreman_discovery.mo +0 -0
- data/locale/en_GB/foreman_discovery.po +90 -88
- data/locale/en_GB/foreman_discovery.pox +0 -0
- data/locale/es/LC_MESSAGES/foreman_discovery.mo +0 -0
- data/locale/es/foreman_discovery.po +3 -3
- data/locale/es/foreman_discovery.pox +41 -0
- data/locale/fr/LC_MESSAGES/foreman_discovery.mo +0 -0
- data/locale/fr/foreman_discovery.po +3 -3
- data/locale/fr/foreman_discovery.pox +69 -0
- data/locale/gl/LC_MESSAGES/foreman_discovery.mo +0 -0
- data/locale/gl/foreman_discovery.po +3 -3
- data/locale/gl/foreman_discovery.pox +21 -0
- data/locale/it/LC_MESSAGES/foreman_discovery.mo +0 -0
- data/locale/it/foreman_discovery.po +3 -3
- data/locale/it/foreman_discovery.pox +0 -0
- data/locale/ja/LC_MESSAGES/foreman_discovery.mo +0 -0
- data/locale/ja/foreman_discovery.po +67 -66
- data/locale/ja/foreman_discovery.pox +29 -0
- data/locale/ko/LC_MESSAGES/foreman_discovery.mo +0 -0
- data/locale/ko/foreman_discovery.po +3 -3
- data/locale/ko/foreman_discovery.pox +189 -0
- data/locale/messages.mo +0 -0
- data/locale/pt_BR/LC_MESSAGES/foreman_discovery.mo +0 -0
- data/locale/pt_BR/foreman_discovery.po +7 -7
- data/locale/pt_BR/foreman_discovery.pox +0 -0
- data/locale/ru/LC_MESSAGES/foreman_discovery.mo +0 -0
- data/locale/ru/foreman_discovery.po +98 -96
- data/locale/ru/foreman_discovery.pox +0 -0
- data/locale/sv_SE/LC_MESSAGES/foreman_discovery.mo +0 -0
- data/locale/sv_SE/foreman_discovery.po +3 -3
- data/locale/zh_CN/LC_MESSAGES/foreman_discovery.mo +0 -0
- data/locale/zh_CN/foreman_discovery.po +3 -3
- data/locale/zh_CN/foreman_discovery.pox +33 -0
- data/locale/zh_TW/LC_MESSAGES/foreman_discovery.mo +0 -0
- data/locale/zh_TW/foreman_discovery.po +3 -3
- data/locale/zh_TW/foreman_discovery.pox +23 -0
- data/test/functional/api/v2/discovered_hosts_controller_test.rb +45 -7
- data/test/functional/discovered_hosts_controller_test.rb +52 -11
- data/test/unit/discovered_extensions_test.rb +40 -17
- data/test/unit/discovery_rule_test.rb +59 -0
- data/test/unit/host_discovered_test.rb +69 -6
- data/test/unit/puppet_fact_parser_extensions_test.rb +55 -40
- metadata +103 -81
- data/app/services/host_converter.rb +0 -30
@@ -45,16 +45,23 @@ module ForemanDiscovery
|
|
45
45
|
:discovered_hosts => [:index, :show, :auto_complete_search],
|
46
46
|
:"api/v2/discovered_hosts" => [:index, :show]
|
47
47
|
}, :resource_type => 'Host'
|
48
|
+
permission :submit_discovered_hosts, {
|
49
|
+
:"api/v2/discovered_hosts" => [:facts, :create]
|
50
|
+
}, :resource_type => 'Host'
|
51
|
+
permission :auto_provision_discovered_hosts, {
|
52
|
+
:discovered_hosts => [:auto_provision, :auto_provision_all],
|
53
|
+
:"api/v2/discovered_hosts" => [:auto_provision, :auto_provision_all]
|
54
|
+
}, :resource_type => 'Host'
|
48
55
|
permission :provision_discovered_hosts, {
|
49
|
-
:discovered_hosts => [:
|
50
|
-
:"api/v2/discovered_hosts" => [:
|
56
|
+
:discovered_hosts => [:edit, :update],
|
57
|
+
:"api/v2/discovered_hosts" => [:update]
|
51
58
|
}, :resource_type => 'Host'
|
52
59
|
permission :edit_discovered_hosts, {
|
53
|
-
:discovered_hosts => [:
|
60
|
+
:discovered_hosts => [:update_multiple_location,
|
54
61
|
:select_multiple_organization,
|
55
62
|
:update_multiple_organization,
|
56
|
-
:select_multiple_location, :refresh_facts, :reboot],
|
57
|
-
:"api/v2/discovered_hosts" => [:
|
63
|
+
:select_multiple_location, :refresh_facts, :reboot, :reboot_all],
|
64
|
+
:"api/v2/discovered_hosts" => [:refresh_facts, :reboot, :reboot_all]
|
58
65
|
}, :resource_type => 'Host'
|
59
66
|
permission :destroy_discovered_hosts, {
|
60
67
|
:discovered_hosts => [:destroy, :submit_multiple_destroy, :multiple_destroy],
|
@@ -67,28 +74,48 @@ module ForemanDiscovery
|
|
67
74
|
permission :view_discovery_rules, {
|
68
75
|
:discovery_rules => [:index, :show, :auto_complete_search],
|
69
76
|
:"api/v2/discovery_rules" => [:index, :show]
|
70
|
-
}
|
71
|
-
permission :
|
77
|
+
}, :resource_type => 'DiscoveryRule'
|
78
|
+
permission :create_discovery_rules, {
|
72
79
|
:discovery_rules => [:new, :create],
|
73
80
|
:"api/v2/discovery_rules" => [:create]
|
74
|
-
}
|
81
|
+
}, :resource_type => 'DiscoveryRule'
|
75
82
|
permission :edit_discovery_rules, {
|
76
83
|
:discovery_rules => [:edit, :update, :enable, :disable],
|
77
84
|
:"api/v2/discovery_rules" => [:create, :update]
|
78
|
-
}
|
85
|
+
}, :resource_type => 'DiscoveryRule'
|
79
86
|
permission :execute_discovery_rules, {
|
80
87
|
:discovery_rules => [:auto_provision, :auto_provision_all],
|
81
88
|
:"api/v2/discovery_rules" => [:auto_provision, :auto_provision_all]
|
82
|
-
}
|
83
|
-
permission :
|
89
|
+
}, :resource_type => 'DiscoveryRule'
|
90
|
+
permission :destroy_discovery_rules, {
|
84
91
|
:discovery_rules => [:destroy],
|
85
92
|
:"api/v2/discovery_rules" => [:destroy]
|
86
|
-
}
|
93
|
+
}, :resource_type => 'DiscoveryRule'
|
87
94
|
end
|
88
95
|
|
89
|
-
|
90
|
-
|
91
|
-
|
96
|
+
READER = [
|
97
|
+
:view_discovered_hosts,
|
98
|
+
:view_discovery_rules,
|
99
|
+
:view_organizations,
|
100
|
+
:view_locations,
|
101
|
+
]
|
102
|
+
MANAGER = READER + [
|
103
|
+
:assign_organizations,
|
104
|
+
:assign_locations,
|
105
|
+
# discovered_hosts
|
106
|
+
:submit_discovered_hosts,
|
107
|
+
:provision_discovered_hosts,
|
108
|
+
:auto_provision_discovered_hosts,
|
109
|
+
:edit_discovered_hosts,
|
110
|
+
:destroy_discovered_hosts,
|
111
|
+
# discovered_rules
|
112
|
+
:create_discovery_rules,
|
113
|
+
:execute_discovery_rules,
|
114
|
+
:edit_discovery_rules,
|
115
|
+
:destroy_discovery_rules,
|
116
|
+
]
|
117
|
+
role "Discovery Reader", READER
|
118
|
+
role "Discovery Manager", MANAGER
|
92
119
|
|
93
120
|
# menu entries
|
94
121
|
menu :top_menu, :discovered_hosts, :url_hash => {:controller => :discovered_hosts, :action => :index},
|
@@ -102,7 +129,7 @@ module ForemanDiscovery
|
|
102
129
|
:after=> :hostgroups
|
103
130
|
|
104
131
|
# add dashboard widget
|
105
|
-
widget 'discovery_widget', :name=>N_('Discovery widget'), :sizex =>
|
132
|
+
widget 'discovery_widget', :name=>N_('Discovery widget'), :sizex => 6, :sizey =>1
|
106
133
|
|
107
134
|
# add template helpers
|
108
135
|
allowed_template_helpers :rand
|
@@ -139,6 +166,9 @@ module ForemanDiscovery
|
|
139
166
|
|
140
167
|
# Include subnet extensions
|
141
168
|
::Subnet.send :include, DiscoverySubnet
|
169
|
+
|
170
|
+
# Include helper for dashboard
|
171
|
+
::DashboardHelper.send(:include, DiscoveredHostsHelper)
|
142
172
|
end
|
143
173
|
|
144
174
|
rake_tasks do
|
Binary file
|
@@ -4,16 +4,18 @@
|
|
4
4
|
#
|
5
5
|
# Translators:
|
6
6
|
# Arnold Bechtoldt <mail@arnoldbechtoldt.com>, 2014
|
7
|
+
# Christina Gurski <Gurski_christina@yahoo.de>, 2015
|
7
8
|
# Ettore Atalan <atalanttore@googlemail.com>, 2014-2015
|
9
|
+
# Lukáš Zapletal, 2015
|
8
10
|
# simon11 <simon.stieger.98@live.de>, 2014
|
9
11
|
msgid ""
|
10
12
|
msgstr ""
|
11
|
-
"Project-Id-Version: foreman_discovery
|
13
|
+
"Project-Id-Version: foreman_discovery 3.0.0\n"
|
12
14
|
"Report-Msgid-Bugs-To: \n"
|
13
15
|
"POT-Creation-Date: 2015-01-28 17:53+0100\n"
|
14
|
-
"PO-Revision-Date: 2015-
|
15
|
-
"Last-Translator:
|
16
|
-
"Language-Team: German (http://www.transifex.com/
|
16
|
+
"PO-Revision-Date: 2015-08-10 10:06+0000\n"
|
17
|
+
"Last-Translator: Lukáš Zapletal\n"
|
18
|
+
"Language-Team: German (http://www.transifex.com/foreman/foreman/language/de/)\n"
|
17
19
|
"MIME-Version: 1.0\n"
|
18
20
|
"Content-Type: text/plain; charset=UTF-8\n"
|
19
21
|
"Content-Transfer-Encoding: 8bit\n"
|
@@ -36,15 +38,15 @@ msgid "Assign Organization"
|
|
36
38
|
msgstr "Organisation zuweisen"
|
37
39
|
|
38
40
|
msgid "Auto Provision"
|
39
|
-
msgstr ""
|
41
|
+
msgstr "Automatische Bereitstellung"
|
40
42
|
|
41
43
|
msgid "Auto Provision All"
|
42
|
-
msgstr ""
|
44
|
+
msgstr "Alle automatisch bereitstellen"
|
43
45
|
|
44
46
|
msgid ""
|
45
47
|
"Automatically provision newly discovered hosts, according to the "
|
46
48
|
"provisioning rules"
|
47
|
-
msgstr ""
|
49
|
+
msgstr "Automatisch neu entdeckte Hosts gemäß den Bereitstellungsregeln bereitstellen"
|
48
50
|
|
49
51
|
msgid "CPUs"
|
50
52
|
msgstr "CPUs"
|
@@ -53,13 +55,13 @@ msgid "Cancel"
|
|
53
55
|
msgstr "Abbrechen"
|
54
56
|
|
55
57
|
msgid "Could not get facts from proxy %{url}: %{error}"
|
56
|
-
msgstr ""
|
58
|
+
msgstr "Konnte keine Facts von Proxy %{url} empfangen: %{error}"
|
57
59
|
|
58
60
|
msgid "Create a discovered host"
|
59
|
-
msgstr ""
|
61
|
+
msgstr "Einen entdeckten Host erstellen"
|
60
62
|
|
61
63
|
msgid "Create a discovery rule"
|
62
|
-
msgstr ""
|
64
|
+
msgstr "Eine Entdeckungsregel erstellen"
|
63
65
|
|
64
66
|
msgid "Delete"
|
65
67
|
msgstr "Löschen"
|
@@ -68,7 +70,7 @@ msgid "Delete %s?"
|
|
68
70
|
msgstr "%s löschen?"
|
69
71
|
|
70
72
|
msgid "Delete a discovered host"
|
71
|
-
msgstr ""
|
73
|
+
msgstr "Einen entdeckten Host löschen"
|
72
74
|
|
73
75
|
msgid "Delete a rule"
|
74
76
|
msgstr "Regel löschen"
|
@@ -86,7 +88,7 @@ msgid "Disable rule?"
|
|
86
88
|
msgstr "Regel deaktivieren?"
|
87
89
|
|
88
90
|
msgid "Discovered Host Pool"
|
89
|
-
msgstr ""
|
91
|
+
msgstr "Entdeckter Host-Pool"
|
90
92
|
|
91
93
|
msgid "Discovered host: %s"
|
92
94
|
msgstr "Entdeckter Host: %s"
|
@@ -95,43 +97,43 @@ msgid "Discovered hosts"
|
|
95
97
|
msgstr "Entdeckte Hosts"
|
96
98
|
|
97
99
|
msgid "Discovered hosts are provisioning now"
|
98
|
-
msgstr ""
|
100
|
+
msgstr "Entdeckte Hosts werden jetzt bereitgestellt"
|
99
101
|
|
100
102
|
msgid "Discovery Rules"
|
101
|
-
msgstr ""
|
103
|
+
msgstr "Entdeckungsregeln"
|
102
104
|
|
103
105
|
msgid "Discovery rules"
|
104
|
-
msgstr ""
|
106
|
+
msgstr "Entdeckungsregeln"
|
105
107
|
|
106
108
|
msgid "Discovery widget"
|
107
|
-
msgstr ""
|
109
|
+
msgstr "Entdeckungs-Widget"
|
108
110
|
|
109
111
|
msgid "DiscoveryRule|Enabled"
|
110
|
-
msgstr ""
|
112
|
+
msgstr "Aktiviert"
|
111
113
|
|
112
114
|
msgid "DiscoveryRule|Name"
|
113
|
-
msgstr ""
|
115
|
+
msgstr "Name"
|
114
116
|
|
115
117
|
msgid "DiscoveryRule|Priority"
|
116
|
-
msgstr ""
|
118
|
+
msgstr "Priorität"
|
117
119
|
|
118
120
|
msgid "DiscoveryRule|Query"
|
119
|
-
msgstr ""
|
121
|
+
msgstr "Abfrage"
|
120
122
|
|
121
123
|
msgid "Disk count"
|
122
|
-
msgstr ""
|
124
|
+
msgstr "Festplattenanzahl"
|
123
125
|
|
124
126
|
msgid "Disks size"
|
125
|
-
msgstr ""
|
127
|
+
msgstr "Festplattengröße"
|
126
128
|
|
127
129
|
msgid ""
|
128
130
|
"Domain will be appended automatically. A hostname based on MAC address will "
|
129
131
|
"be used when left blank. In addition to @host attribute function rand for "
|
130
132
|
"random integers is available. Examples:"
|
131
|
-
msgstr ""
|
133
|
+
msgstr "Domäne wird automatisch angefügt. Bei Freilassung wird ein auf einer MAC-Adresse basierender Hostname verwendet. Zusätzlich zum @host-Attribut ist die Funktion \"rand\" für Random Integers verfügbar. Beispiele:"
|
132
134
|
|
133
135
|
msgid "Edit Discovery Rule"
|
134
|
-
msgstr ""
|
136
|
+
msgstr "Entdeckungsregel bearbeiten"
|
135
137
|
|
136
138
|
msgid "Enable"
|
137
139
|
msgstr "Aktivieren"
|
@@ -140,13 +142,13 @@ msgid "Enable rule?"
|
|
140
142
|
msgstr "Regel aktivieren?"
|
141
143
|
|
142
144
|
msgid "Errors during auto provisioning: %s"
|
143
|
-
msgstr ""
|
145
|
+
msgstr "Fehler bei der automatischen Bereitstellung: %s"
|
144
146
|
|
145
147
|
msgid "Execute rules against a discovered host"
|
146
|
-
msgstr ""
|
148
|
+
msgstr "Anwenden der Regeln auf alle entdeckten Hosts"
|
147
149
|
|
148
150
|
msgid "Execute rules against all currently discovered hosts"
|
149
|
-
msgstr ""
|
151
|
+
msgstr "Anwenden der Regeln auf alle gegenwärtig entdeckten Hosts"
|
150
152
|
|
151
153
|
msgid "Fact"
|
152
154
|
msgstr "Fakt"
|
@@ -158,55 +160,55 @@ msgid "Facts refreshed for %s"
|
|
158
160
|
msgstr "Fakten für %s erneuert"
|
159
161
|
|
160
162
|
msgid "Failed to auto provision host %s: %s"
|
161
|
-
msgstr ""
|
163
|
+
msgstr "Fehler bei der automatischen Bereitstellung von Host %s: %s"
|
162
164
|
|
163
165
|
msgid "Failed to import facts for discovered host"
|
164
|
-
msgstr ""
|
166
|
+
msgstr "Importieren von Fakten für entdeckten Host fehlgeschlagen"
|
165
167
|
|
166
168
|
msgid "Failed to import facts for discovered host: %s"
|
167
|
-
msgstr ""
|
169
|
+
msgstr "Importieren von Fakten für entdeckten Host fehlgeschlagen: %s"
|
168
170
|
|
169
171
|
msgid "Failed to reboot host %s"
|
170
|
-
msgstr ""
|
172
|
+
msgstr "Neustart von Host %s fehlgeschlagen"
|
171
173
|
|
172
174
|
msgid "Failed to reboot host %{hostname} with error %{error_message}"
|
173
|
-
msgstr ""
|
175
|
+
msgstr "Neustart von Host %{hostname} fehlgeschlagen mit Fehler %{error_message}"
|
174
176
|
|
175
177
|
msgid "Failed to refresh facts for %s"
|
176
|
-
msgstr "Fakten für %s konnten nicht
|
178
|
+
msgstr "Fakten für %s konnten nicht aktualisiert werden"
|
177
179
|
|
178
180
|
msgid "Host"
|
179
181
|
msgstr "Host"
|
180
182
|
|
181
183
|
msgid "Host %{host} was provisioned with rule %{rule}"
|
182
|
-
msgstr ""
|
184
|
+
msgstr "Host %{host} wurde mit Regel %{rule} bereitgestellt"
|
183
185
|
|
184
186
|
msgid "Host group"
|
185
187
|
msgstr "Hostgruppe"
|
186
188
|
|
187
189
|
msgid "Host of type %s can not be rebooted"
|
188
|
-
msgstr ""
|
190
|
+
msgstr "Host vom Typ %s kann nicht neu gestartet werden"
|
189
191
|
|
190
192
|
msgid "Hostname for provisioned hosts"
|
191
|
-
msgstr ""
|
193
|
+
msgstr "Hostname für bereitgestellte Hosts"
|
192
194
|
|
193
195
|
msgid "Hosts limit"
|
194
|
-
msgstr ""
|
196
|
+
msgstr "Host-Limit"
|
195
197
|
|
196
198
|
msgid "Hosts/limit"
|
197
|
-
msgstr ""
|
199
|
+
msgstr "Hosts/Limit"
|
198
200
|
|
199
201
|
msgid "IP Address"
|
200
202
|
msgstr "IP-Adresse"
|
201
203
|
|
202
204
|
msgid "Imported discovered host"
|
203
|
-
msgstr ""
|
205
|
+
msgstr "Entdeckter Host importiert"
|
204
206
|
|
205
207
|
msgid "Invalid facts, must be a Hash"
|
206
208
|
msgstr "Ungültige Fakten, es muss sich um einen Hash handeln"
|
207
209
|
|
208
210
|
msgid "Invalid facts: hash does not contain IP address"
|
209
|
-
msgstr ""
|
211
|
+
msgstr "Ungültige Fakten: Hash enthält keine IP-Adresse"
|
210
212
|
|
211
213
|
msgid "Invalid facts: hash does not contain the required fact '%s'"
|
212
214
|
msgstr "Ungültige Fakten: Der Hash enthält den benötigten Fakt nicht: %s"
|
@@ -215,16 +217,16 @@ msgid "Last facts upload"
|
|
215
217
|
msgstr "Letzter Fakten-Upload"
|
216
218
|
|
217
219
|
msgid "List all discovered hosts"
|
218
|
-
msgstr ""
|
220
|
+
msgstr "Alle entdeckten Hosts auflisten"
|
219
221
|
|
220
222
|
msgid "List all discovery rules"
|
221
|
-
msgstr ""
|
223
|
+
msgstr "Alle Entdeckungsregeln auflisten"
|
222
224
|
|
223
225
|
msgid "Location"
|
224
226
|
msgstr "Ort"
|
225
227
|
|
226
228
|
msgid "Maximum hosts provisioned with this rule (0 = unlimited)"
|
227
|
-
msgstr ""
|
229
|
+
msgstr "Maximale Anzahl Hosts, die mit dieser Regel bereitgestellt werden (0 = unendlich)"
|
228
230
|
|
229
231
|
msgid "Memory"
|
230
232
|
msgstr "Speicher"
|
@@ -239,16 +241,16 @@ msgid "Name"
|
|
239
241
|
msgstr "Name"
|
240
242
|
|
241
243
|
msgid "New Discovery Rule"
|
242
|
-
msgstr ""
|
244
|
+
msgstr "Neue Entdeckungsregel"
|
243
245
|
|
244
246
|
msgid "New Rule"
|
245
247
|
msgstr "Neue Regel"
|
246
248
|
|
247
249
|
msgid "No discovered hosts available"
|
248
|
-
msgstr ""
|
250
|
+
msgstr "Keine entdeckten Hosts verfügbar"
|
249
251
|
|
250
252
|
msgid "No discovered hosts to provision"
|
251
|
-
msgstr ""
|
253
|
+
msgstr "Keine entdeckten Hosts bereitzustellen"
|
252
254
|
|
253
255
|
msgid "No hosts selected"
|
254
256
|
msgstr "Keine Hosts ausgewählt"
|
@@ -257,7 +259,7 @@ msgid "No hosts were found with that id or name"
|
|
257
259
|
msgstr "Es wurden keine Systeme mit dieser Kennung oder diesem Namen gefunden"
|
258
260
|
|
259
261
|
msgid "No rule found for host %s"
|
260
|
-
msgstr ""
|
262
|
+
msgstr "Keine Regel gefunden für Host %s"
|
261
263
|
|
262
264
|
msgid "Organization"
|
263
265
|
msgstr "Organisation"
|
@@ -269,25 +271,25 @@ msgid "Provision"
|
|
269
271
|
msgstr "Bereitstellen"
|
270
272
|
|
271
273
|
msgid "Provision a discovered host"
|
272
|
-
msgstr ""
|
274
|
+
msgstr "Einen entdeckten Host bereitstellen"
|
273
275
|
|
274
276
|
msgid "Reboot"
|
275
|
-
msgstr ""
|
277
|
+
msgstr "Neustart"
|
276
278
|
|
277
279
|
msgid "Rebooting %s"
|
278
280
|
msgstr "%s wird neu gestartet"
|
279
281
|
|
280
282
|
msgid "Rebooting a discovered host"
|
281
|
-
msgstr ""
|
283
|
+
msgstr "Neustart eine entdeckten Hosts"
|
282
284
|
|
283
285
|
msgid "Rebooting host %s"
|
284
|
-
msgstr ""
|
286
|
+
msgstr "Starte Host %s neu"
|
285
287
|
|
286
288
|
msgid "Refresh facts"
|
287
|
-
msgstr "Fakten
|
289
|
+
msgstr "Fakten aktualisieren"
|
288
290
|
|
289
291
|
msgid "Refreshing the facts of a discovered host"
|
290
|
-
msgstr ""
|
292
|
+
msgstr "Aktualisiere Fakten eines entdeckten Hosts"
|
291
293
|
|
292
294
|
msgid "Rule disabled"
|
293
295
|
msgstr "Regel deaktiviert"
|
@@ -296,7 +298,7 @@ msgid "Rule enabled"
|
|
296
298
|
msgstr "Regel aktiviert"
|
297
299
|
|
298
300
|
msgid "Rule priority (lower integer means higher priority)"
|
299
|
-
msgstr ""
|
301
|
+
msgstr "Regelpriorität (ein kleinerer Integer bedeutet höhere Priorität)"
|
300
302
|
|
301
303
|
msgid "Select Action"
|
302
304
|
msgstr "Aktion auswählen"
|
@@ -311,13 +313,13 @@ msgid "Select organization"
|
|
311
313
|
msgstr "Organisation auswählen"
|
312
314
|
|
313
315
|
msgid "Show a discovered host"
|
314
|
-
msgstr ""
|
316
|
+
msgstr "Einen entdeckten Host anzeigen"
|
315
317
|
|
316
318
|
msgid "Show a discovery rule"
|
317
|
-
msgstr ""
|
319
|
+
msgstr "Einen Entdeckungsregel anzeigen"
|
318
320
|
|
319
321
|
msgid "Show fact as an extra column in the discovered hosts list"
|
320
|
-
msgstr ""
|
322
|
+
msgstr "Fakt als zusätzliche Spalte in der Liste entdeckter Hosts anzeigen"
|
321
323
|
|
322
324
|
msgid "Something went wrong while selecting hosts - %s"
|
323
325
|
msgstr "Beim Auswählen der Hosts ist ein Fehler aufgetreten - %s"
|
@@ -325,7 +327,7 @@ msgstr "Beim Auswählen der Hosts ist ein Fehler aufgetreten - %s"
|
|
325
327
|
msgid ""
|
326
328
|
"Specify target hostname template pattern in the same syntax as in "
|
327
329
|
"Provisioning Templates (ERB)."
|
328
|
-
msgstr ""
|
330
|
+
msgstr "Spezifizieren Sie die Ziel-Hostnamen-Bereitstellungsvorlage in derselben Syntax wie in Bereitstellungstabellen (ERB). "
|
329
331
|
|
330
332
|
msgid "Submit"
|
331
333
|
msgstr "Absenden"
|
@@ -334,7 +336,7 @@ msgid "Subnet"
|
|
334
336
|
msgstr "Subnetz"
|
335
337
|
|
336
338
|
msgid "Target host group for this rule with all properties set"
|
337
|
-
msgstr ""
|
339
|
+
msgstr "Ziel-Hostgruppe für diese Regel mit allen gesetzten Eigenschaften"
|
338
340
|
|
339
341
|
msgid "Template"
|
340
342
|
msgstr "Vorlage"
|
@@ -349,7 +351,7 @@ msgid "The default organization to place discovered hosts in"
|
|
349
351
|
msgstr "Standard-Organisation zum Platzieren entdeckter Hosts"
|
350
352
|
|
351
353
|
msgid "The default prefix to use for the host name, must start with a letter"
|
352
|
-
msgstr ""
|
354
|
+
msgstr "Das für den Hostnamen zu verwendende Standard-Präfix, muss mit einem Buchstaben beginnen"
|
353
355
|
|
354
356
|
msgid "The following hosts were not deleted: %s"
|
355
357
|
msgstr "Die folgenden Systeme wurden nicht gelöscht: %s"
|
@@ -361,18 +363,18 @@ msgstr "Dies kann eine Weile dauern, weil alle Systeme, Fakten und Reporte auch
|
|
361
363
|
|
362
364
|
msgid "Total pool size"
|
363
365
|
msgid_plural "Total pool size"
|
364
|
-
msgstr[0] ""
|
365
|
-
msgstr[1] ""
|
366
|
+
msgstr[0] "Gesamt-Pool-Größe"
|
367
|
+
msgstr[1] "Gesamt-Pool-Größe"
|
366
368
|
|
367
369
|
msgid ""
|
368
370
|
"UUID to track orchestration tasks status, GET /api/orchestration/:UUID/tasks"
|
369
|
-
msgstr ""
|
371
|
+
msgstr "UUID zum Tracken des Status der Orchestrierungsaufgaben, GET /api/orchestration/:UUID/tasks"
|
370
372
|
|
371
373
|
msgid "Update a rule"
|
372
374
|
msgstr "Regel aktualisieren"
|
373
375
|
|
374
376
|
msgid "Upload facts for a host, creating the host if required"
|
375
|
-
msgstr ""
|
377
|
+
msgstr "Fakten für einen Host hochladen mit Erstellung des Hosts, wenn erforderlich"
|
376
378
|
|
377
379
|
msgid "Value"
|
378
380
|
msgstr "Wert"
|
@@ -384,39 +386,39 @@ msgid ""
|
|
384
386
|
"When creating hostname patterns, make sure the resulting host names are "
|
385
387
|
"unique. Hostnames must not start with numbers. A good approach is to use "
|
386
388
|
"unique information provided by facter (MAC address, BIOS or serial ID)."
|
387
|
-
msgstr ""
|
389
|
+
msgstr "Versichern Sie sich beim Erstellen von Hostnamen-Patterns, dass die resultierenden Hostnamen eindeutig sind. Hostnamen dürfen nicht mit Zahlen beginnen. Ein guter Ansatz besteht darin, eindeutige vom Facter gelieferte Informationen (MAC-Adresse, BIOS oder serielle Kennung) zu verwenden."
|
388
390
|
|
389
391
|
msgid "can't contain white spaces."
|
390
|
-
msgstr ""
|
392
|
+
msgstr "kann keine Leerzeichen enthalten"
|
391
393
|
|
392
394
|
msgid "filter results"
|
393
395
|
msgstr "Ergebnisse filtern"
|
394
396
|
|
395
397
|
msgid "hash containing facts for the host"
|
396
|
-
msgstr ""
|
398
|
+
msgstr "Hash, der Fakten für den Host enthält"
|
397
399
|
|
398
400
|
msgid "items selected. Uncheck to Clear"
|
399
401
|
msgstr "Elemente ausgewählt. Zum Leeren abwählen"
|
400
402
|
|
401
403
|
msgid "must start with a letter or ERB."
|
402
|
-
msgstr ""
|
404
|
+
msgstr "muss mit einem Buchstaben oder ERB beginnen"
|
403
405
|
|
404
406
|
msgid "not required if it's a virtual machine"
|
405
|
-
msgstr ""
|
407
|
+
msgstr "nicht erforderlich, wenn es sich um eine virtuelle Maschine handelt"
|
406
408
|
|
407
409
|
msgid "not required if using a subnet with DHCP proxy"
|
408
|
-
msgstr ""
|
410
|
+
msgstr "nicht erforderlich, wenn ein Subnetz mit DHCP-Proxy verwendet wird"
|
409
411
|
|
410
412
|
msgid "number of entries per request"
|
411
413
|
msgstr "Anzahl der Einträge pro Anfrage"
|
412
414
|
|
413
415
|
msgid "paginate results"
|
414
|
-
msgstr ""
|
416
|
+
msgstr "Ergebnisse nummerieren"
|
415
417
|
|
416
418
|
msgid ""
|
417
419
|
"required if value is not inherited from host group or default password in "
|
418
420
|
"settings"
|
419
|
-
msgstr ""
|
421
|
+
msgstr "erforderlich, wenn der Wert nicht von einer Hostgruppe oder einem Standardpasswort in den Einstellungen vererbt ist"
|
420
422
|
|
421
423
|
msgid "sort results"
|
422
424
|
msgstr "Ergebnisse sortieren"
|
@@ -0,0 +1,40 @@
|
|
1
|
+
msgid ""
|
2
|
+
msgstr ""
|
3
|
+
"Project-Id-Version: foreman_discovery 3.0.0\n"
|
4
|
+
"Report-Msgid-Bugs-To: \n"
|
5
|
+
"POT-Creation-Date: 2015-01-28 17:53+0100\n"
|
6
|
+
"PO-Revision-Date: 2015-06-29 19:06+0000\n"
|
7
|
+
"Last-Translator: Christina Gurski <Gurski_christina@yahoo.de>\n"
|
8
|
+
"Language-Team: German "
|
9
|
+
"(http://www.transifex.com/foreman/foreman/language/de/)\n"
|
10
|
+
"Language: de\n"
|
11
|
+
"MIME-Version: 1.0\n"
|
12
|
+
"Content-Type: text/plain; charset=UTF-8\n"
|
13
|
+
"Content-Transfer-Encoding: 8bit\n"
|
14
|
+
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
15
|
+
"X-Generator: Translate Toolkit 1.9.0\n"
|
16
|
+
|
17
|
+
# (pofilter) puncspacing: Different spacing around punctuation
|
18
|
+
msgid "Could not get facts from proxy %{url}: %{error}"
|
19
|
+
msgstr "Konnte keine Facts von Proxy %{url} empfangen: %{error}"
|
20
|
+
|
21
|
+
# (pofilter) endwhitespace: Different whitespace at the end
|
22
|
+
msgid ""
|
23
|
+
"Specify target hostname template pattern in the same syntax as in "
|
24
|
+
"Provisioning Templates (ERB)."
|
25
|
+
msgstr "Spezifizieren Sie die Ziel-Hostnamen-Bereitstellungsvorlage in derselben Syntax wie in Bereitstellungstabellen (ERB). "
|
26
|
+
|
27
|
+
# (pofilter) puncspacing: Different spacing around punctuation
|
28
|
+
msgid ""
|
29
|
+
"When creating hostname patterns, make sure the resulting host names are "
|
30
|
+
"unique. Hostnames must not start with numbers. A good approach is to use "
|
31
|
+
"unique information provided by facter (MAC address, BIOS or serial ID)."
|
32
|
+
msgstr "Versichern Sie sich beim Erstellen von Hostnamen-Patterns, dass die resultierenden Hostnamen eindeutig sind. Hostnamen dürfen nicht mit Zahlen beginnen. Ein guter Ansatz besteht darin, eindeutige vom Facter gelieferte Informationen (MAC-Adresse, BIOS oder serielle Kennung) zu verwenden."
|
33
|
+
|
34
|
+
# (pofilter) endpunc: Different punctuation at the end
|
35
|
+
msgid "can't contain white spaces."
|
36
|
+
msgstr "kann keine Leerzeichen enthalten"
|
37
|
+
|
38
|
+
# (pofilter) endpunc: Different punctuation at the end
|
39
|
+
msgid "must start with a letter or ERB."
|
40
|
+
msgstr "muss mit einem Buchstaben oder ERB beginnen"
|
Binary file
|