foreman_virt_who_configure 0.1.0 → 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/app/controllers/foreman_virt_who_configure/api/v2/configs_controller.rb +6 -0
- data/app/models/foreman_virt_who_configure/config.rb +5 -2
- data/lib/foreman_virt_who_configure/version.rb +1 -1
- data/locale/action_names.rb +60 -0
- data/locale/en/foreman_virt_who_configure.po +446 -82
- data/locale/foreman_virt_who_configure.pot +439 -26
- data/test/functional/api/v2/configs_controller_test.rb +8 -8
- data/test/unit/config_test.rb +2 -2
- data/test/unit/output_generator_test.rb +2 -2
- metadata +4 -6
- data/locale/en/foreman_virt_who_configure.edit.po +0 -733
- data/locale/en/foreman_virt_who_configure.po.time_stamp +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8a85081422d76e0419d38b23ff3da3fea2dfc36f
|
4
|
+
data.tar.gz: 757ca6961941ae5dc514e597c2b7732f71da8f29
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 95d42c49546795861b2c9af62a1ebcad0c211be9b36b1a41250a307785115c36743c1ca1e50e0f2e33cd732211ed3811ce11b7ca309f9dd51cdb288a5bb9c6aa
|
7
|
+
data.tar.gz: a2552d3d12577a1aa24e0c049526f3fa71c3cb62db5d484ccba0b08c71206bca29a82570de2d07a5a094d07641ec78c1a29b6484e75ba2ef28a05fed93513b81
|
@@ -9,6 +9,7 @@ module ForemanVirtWhoConfigure
|
|
9
9
|
end
|
10
10
|
|
11
11
|
before_action :find_resource, :only => %w{show deploy_script update destroy}
|
12
|
+
before_action :translate_filtering_mode, :only => %w{create update}
|
12
13
|
|
13
14
|
api :GET, '/configs', N_("List of virt-who configurations")
|
14
15
|
api :GET, "/organizations/:organization_id/configs", N_("List of virt-who configurations per organization")
|
@@ -111,6 +112,11 @@ module ForemanVirtWhoConfigure
|
|
111
112
|
end
|
112
113
|
end
|
113
114
|
|
115
|
+
def translate_filtering_mode
|
116
|
+
mode = params[:foreman_virt_who_configure_config].delete(:filtering_mode)
|
117
|
+
params[:foreman_virt_who_configure_config][:listing_mode] = mode if mode
|
118
|
+
end
|
119
|
+
|
114
120
|
def allowed_nested_id
|
115
121
|
%w(organization_id)
|
116
122
|
end
|
@@ -1,9 +1,12 @@
|
|
1
1
|
module ForemanVirtWhoConfigure
|
2
2
|
class Config < ActiveRecord::Base
|
3
3
|
PERMITTED_PARAMS = [
|
4
|
-
:interval, :organization_id, :compute_resource_id, :whitelist, :blacklist, :
|
4
|
+
:interval, :organization_id, :compute_resource_id, :whitelist, :blacklist, :hypervisor_id,
|
5
5
|
:hypervisor_type, :hypervisor_server, :hypervisor_username, :hypervisor_password, :debug,
|
6
|
-
:satellite_url, :proxy, :no_proxy, :name
|
6
|
+
:satellite_url, :proxy, :no_proxy, :name,
|
7
|
+
# API parameter filtering_mode gets translated to listing_mode in the controller
|
8
|
+
# We keep both params permitted for compatibility with 1.11
|
9
|
+
:listing_mode, :filtering_mode
|
7
10
|
]
|
8
11
|
include Authorizable
|
9
12
|
audited :except => [ :hypervisor_password, :last_report_at, :out_of_date_at ]
|
data/locale/action_names.rb
CHANGED
@@ -1 +1,61 @@
|
|
1
1
|
# Autogenerated!
|
2
|
+
_("Create")
|
3
|
+
_("Delete")
|
4
|
+
_("Export")
|
5
|
+
_("Incremental Update")
|
6
|
+
_("Delete Lifecycle Environment")
|
7
|
+
_("Attach subscriptions")
|
8
|
+
_("Auto attach subscriptions")
|
9
|
+
_("Destroy Content Host")
|
10
|
+
_("Install Applicable Errata")
|
11
|
+
_("Install erratum")
|
12
|
+
_("Hypervisors")
|
13
|
+
_("Hypervisors update")
|
14
|
+
_("Install package")
|
15
|
+
_("Remove package")
|
16
|
+
_("Update package")
|
17
|
+
_("Install package group")
|
18
|
+
_("Remove package group")
|
19
|
+
_("Register Host")
|
20
|
+
_("Remove subscriptions")
|
21
|
+
_("Unregister Host")
|
22
|
+
_("Update for host")
|
23
|
+
_("Package Profile Update")
|
24
|
+
_("Auto-attach subscriptions")
|
25
|
+
_("Destroy")
|
26
|
+
_("Product Create")
|
27
|
+
_("Delete Product")
|
28
|
+
_("Reindex subscriptions")
|
29
|
+
_("Update")
|
30
|
+
_("Errata mail")
|
31
|
+
_("Filtered index content")
|
32
|
+
_("Upload into")
|
33
|
+
_("Index content")
|
34
|
+
_("Index errata")
|
35
|
+
_("Index package groups")
|
36
|
+
_("Remove Content")
|
37
|
+
_("Synchronize")
|
38
|
+
_("Upload errata into")
|
39
|
+
_("Disable")
|
40
|
+
_("Enable")
|
41
|
+
_("Add Sync Plan Products")
|
42
|
+
_("Update Sync Plan Products")
|
43
|
+
_("Update Sync Plan")
|
44
|
+
_("Remote action:")
|
45
|
+
_("Report")
|
46
|
+
_("Action with sub plans")
|
47
|
+
_("Create architecture")
|
48
|
+
_("Delete architecture")
|
49
|
+
_("Update architecture")
|
50
|
+
_("Import facts")
|
51
|
+
_("Import Puppet classes")
|
52
|
+
_("Abstract async task")
|
53
|
+
_("Delete Activation Key")
|
54
|
+
_("Configure capsule")
|
55
|
+
_("Create repos")
|
56
|
+
_("Synchronize capsule content")
|
57
|
+
_("Promotion")
|
58
|
+
_("Publish")
|
59
|
+
_("Remove from Environment")
|
60
|
+
_("Remove Version")
|
61
|
+
_("Remove Versions and Associations")
|
@@ -15,85 +15,174 @@ msgstr ""
|
|
15
15
|
"Content-Transfer-Encoding: 8bit\n"
|
16
16
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
17
17
|
|
18
|
-
msgid "
|
18
|
+
msgid "List of virt-who configurations"
|
19
19
|
msgstr ""
|
20
20
|
|
21
|
-
msgid "
|
21
|
+
msgid "List of virt-who configurations per organization"
|
22
22
|
msgstr ""
|
23
23
|
|
24
|
-
msgid "
|
24
|
+
msgid "Show a virt-who configuration"
|
25
25
|
msgstr ""
|
26
26
|
|
27
|
-
msgid "
|
27
|
+
msgid "Renders a deploy script for the specified virt-who configuration"
|
28
28
|
msgstr ""
|
29
29
|
|
30
|
-
msgid "
|
30
|
+
msgid "Configuration name"
|
31
31
|
msgstr ""
|
32
32
|
|
33
|
-
msgid "
|
33
|
+
msgid "Configuration interval in minutes"
|
34
34
|
msgstr ""
|
35
35
|
|
36
|
-
msgid "
|
36
|
+
msgid ""
|
37
|
+
"Hypervisor filtering mode, %{unlimited} means no filtering, %{whitelist} means"
|
38
|
+
" whitelist, %{blacklist} means blacklist"
|
37
39
|
msgstr ""
|
38
40
|
|
39
|
-
msgid "
|
41
|
+
msgid ""
|
42
|
+
"Hypervisor whitelist, applicable only when filtering mode is set to 1. Wildcar"
|
43
|
+
"ds and regular expressions are supported, multiple records must be separated b"
|
44
|
+
"y comma."
|
40
45
|
msgstr ""
|
41
46
|
|
42
|
-
msgid "
|
47
|
+
msgid ""
|
48
|
+
"Hypervisor blacklist, applicable only when filtering mode is set to 2. Wildcar"
|
49
|
+
"ds and regular expressions are supported, multiple records must be separated b"
|
50
|
+
"y comma."
|
43
51
|
msgstr ""
|
44
52
|
|
45
|
-
msgid "
|
53
|
+
msgid "Specifies how the hypervisor will be identified."
|
46
54
|
msgstr ""
|
47
55
|
|
48
|
-
msgid "
|
56
|
+
msgid "Hypervisor type"
|
49
57
|
msgstr ""
|
50
58
|
|
51
|
-
msgid "
|
59
|
+
msgid "Fully qualified host name or IP address of the hypervisor"
|
52
60
|
msgstr ""
|
53
61
|
|
54
|
-
msgid "
|
62
|
+
msgid "Account name by which virt-who is to connect to the hypervisor."
|
55
63
|
msgstr ""
|
56
64
|
|
57
|
-
msgid "
|
65
|
+
msgid "Hypervisor password, required for all hypervisor types except for libvirt"
|
58
66
|
msgstr ""
|
59
67
|
|
60
|
-
msgid "
|
68
|
+
msgid "Satellite server FQDN"
|
61
69
|
msgstr ""
|
62
70
|
|
63
|
-
msgid "
|
71
|
+
msgid "Enable debugging output"
|
64
72
|
msgstr ""
|
65
73
|
|
66
|
-
msgid "
|
74
|
+
msgid ""
|
75
|
+
"HTTP proxy that should be used for communication between the server on which v"
|
76
|
+
"irt-who is running and the hypervisors and virtualization managers."
|
67
77
|
msgstr ""
|
68
78
|
|
69
|
-
msgid "
|
79
|
+
msgid ""
|
80
|
+
"Ignore proxy. A comma-separated list of hostnames or domains or ip addresses t"
|
81
|
+
"o ignore proxy settings for. Optionally this may be set to * to bypass proxy s"
|
82
|
+
"ettings for all hostnames domains or ip addresses."
|
70
83
|
msgstr ""
|
71
84
|
|
72
|
-
msgid "
|
85
|
+
msgid "Organization of the virt-who configuration"
|
73
86
|
msgstr ""
|
74
87
|
|
75
|
-
msgid "
|
88
|
+
msgid "Create a virt-who configuration"
|
89
|
+
msgstr ""
|
90
|
+
|
91
|
+
msgid "Update a virt-who configuration"
|
92
|
+
msgstr ""
|
93
|
+
|
94
|
+
msgid "Configuration numeric identifier"
|
95
|
+
msgstr ""
|
96
|
+
|
97
|
+
msgid "Delete a virt-who configuration"
|
76
98
|
msgstr ""
|
77
99
|
|
78
100
|
msgid "Create Config"
|
79
101
|
msgstr ""
|
80
102
|
|
81
|
-
msgid "
|
103
|
+
msgid "New Config"
|
82
104
|
msgstr ""
|
83
105
|
|
84
|
-
msgid "
|
106
|
+
msgid "Help"
|
85
107
|
msgstr ""
|
86
108
|
|
87
|
-
msgid "
|
109
|
+
msgid "VMware vCenter server’s fully qualified host name or IP address."
|
88
110
|
msgstr ""
|
89
111
|
|
90
|
-
msgid "
|
112
|
+
msgid ""
|
113
|
+
"Red Hat Virtualization Manager’s fully qualified host name or IP address. For "
|
114
|
+
"example, <code>https://hostname:443/ovirt-engine/</code> for v4, <code>https:/"
|
115
|
+
"/hostname_or_IP:443</code> for v3"
|
91
116
|
msgstr ""
|
92
117
|
|
93
|
-
msgid "
|
118
|
+
msgid "Microsoft Hyper-V fully qualified host name or IP address."
|
94
119
|
msgstr ""
|
95
120
|
|
96
|
-
msgid "
|
121
|
+
msgid "XenServer server’s fully qualified host name or IP address."
|
122
|
+
msgstr ""
|
123
|
+
|
124
|
+
msgid ""
|
125
|
+
"Libvirt server’s fully qualified host name or IP address. You can also specify"
|
126
|
+
" preferred schema, for example: <code>qemu+ssh://libvirt.example.com/system</c"
|
127
|
+
"ode>. If you use SSH, make sure you setup root's SSH key on target host for a "
|
128
|
+
"user specified at hypervisor username field"
|
129
|
+
msgstr ""
|
130
|
+
|
131
|
+
msgid ""
|
132
|
+
"Account name by which virt-who is to connect to the hypervisor, in the format "
|
133
|
+
"<code>domain_name\\account_name</code>. Note that only a single backslash separ"
|
134
|
+
"ates the values for domain_name and account_name. If you are using a domain ac"
|
135
|
+
"count, and the global configuration file <code>/etc/sysconfig/virt-who</code>,"
|
136
|
+
" then <b>two</b> backslashes are required. For further details, see <a href=\"h"
|
137
|
+
"ttps://access.redhat.com/solutions/1270223\">Red Hat Knowledgebase solution How"
|
138
|
+
" to use a windows domain account with virt-who</a> for more information."
|
139
|
+
msgstr ""
|
140
|
+
|
141
|
+
msgid ""
|
142
|
+
"Account name by which virt-who is to connect to the Red Hat Enterprise Virtual"
|
143
|
+
"ization Manager instance. The username option requires input in the format use"
|
144
|
+
"rname@domain."
|
145
|
+
msgstr ""
|
146
|
+
|
147
|
+
msgid ""
|
148
|
+
"Account name by which virt-who is to connect to the hypervisor. By default thi"
|
149
|
+
"s is <code>Administrator</code>. To use an alternate account, create a user ac"
|
150
|
+
"count and assign that account to the following groups (Windows 2012 Server): H"
|
151
|
+
"yper-V Administrators and Remote Management Users."
|
152
|
+
msgstr ""
|
153
|
+
|
154
|
+
msgid ""
|
155
|
+
"Account name by which virt-who is to connect to the hypervisor. Virt-who does "
|
156
|
+
"not support password based authentication, you must manually setup SSH key, se"
|
157
|
+
"e <a href=\"https://access.redhat.com/solutions/1515983\">Red Hat Knowledgebase "
|
158
|
+
"solution How to configure virt-who for a KVM host</a> for more information."
|
159
|
+
msgstr ""
|
160
|
+
|
161
|
+
msgid "No Report Yet"
|
162
|
+
msgstr ""
|
163
|
+
|
164
|
+
msgid "Unknown configuration status"
|
165
|
+
msgstr ""
|
166
|
+
|
167
|
+
msgid "Unlimited"
|
168
|
+
msgstr ""
|
169
|
+
|
170
|
+
msgid "Whitelist"
|
171
|
+
msgstr ""
|
172
|
+
|
173
|
+
msgid "Blacklist"
|
174
|
+
msgstr ""
|
175
|
+
|
176
|
+
msgid "General information"
|
177
|
+
msgstr ""
|
178
|
+
|
179
|
+
msgid "Schedule"
|
180
|
+
msgstr ""
|
181
|
+
|
182
|
+
msgid "Connection"
|
183
|
+
msgstr ""
|
184
|
+
|
185
|
+
msgid "Every hour"
|
97
186
|
msgstr ""
|
98
187
|
|
99
188
|
msgid "Every 2 hours"
|
@@ -105,175 +194,450 @@ msgstr ""
|
|
105
194
|
msgid "Every 8 hours"
|
106
195
|
msgstr ""
|
107
196
|
|
108
|
-
msgid "Every
|
197
|
+
msgid "Every 12 hours"
|
109
198
|
msgstr ""
|
110
199
|
|
111
|
-
msgid "
|
200
|
+
msgid "OK"
|
112
201
|
msgstr ""
|
113
202
|
|
114
|
-
msgid "
|
203
|
+
msgid "No change"
|
115
204
|
msgstr ""
|
116
205
|
|
117
|
-
msgid "
|
206
|
+
msgid "Unknown"
|
118
207
|
msgstr ""
|
119
208
|
|
120
|
-
msgid "
|
209
|
+
msgid "Unknown configuration status, caused by unexpected conditions"
|
121
210
|
msgstr ""
|
122
211
|
|
123
|
-
msgid "
|
212
|
+
msgid ""
|
213
|
+
"The configuration was not deployed yet or the virt-who was unable to report th"
|
214
|
+
"e status"
|
124
215
|
msgstr ""
|
125
216
|
|
126
|
-
msgid "
|
217
|
+
msgid "The virt-who report arrived within the interval"
|
127
218
|
msgstr ""
|
128
219
|
|
129
|
-
msgid "
|
220
|
+
msgid ""
|
221
|
+
"The virt-who report has not arrived within the interval, which indicates there"
|
222
|
+
" was no change on hypervisor"
|
130
223
|
msgstr ""
|
131
224
|
|
132
|
-
msgid "
|
225
|
+
msgid "every %s hours"
|
133
226
|
msgstr ""
|
134
227
|
|
135
|
-
msgid "
|
228
|
+
msgid "Success"
|
136
229
|
msgstr ""
|
137
230
|
|
138
|
-
msgid "
|
231
|
+
msgid "Newer version of virt-who is required, minimum version is %s"
|
139
232
|
msgstr ""
|
140
233
|
|
141
|
-
msgid "
|
234
|
+
msgid "Unable to create virt-who config file"
|
142
235
|
msgstr ""
|
143
236
|
|
144
|
-
msgid "
|
237
|
+
msgid "Unable to create sysconfig file"
|
145
238
|
msgstr ""
|
146
239
|
|
147
|
-
msgid "
|
240
|
+
msgid "Unable to enable virt-who service using chkconfig"
|
148
241
|
msgstr ""
|
149
242
|
|
150
|
-
msgid "
|
243
|
+
msgid "Unable to start virt-who service, please see virt-who logs for more details"
|
151
244
|
msgstr ""
|
152
245
|
|
153
|
-
msgid "
|
246
|
+
msgid ""
|
247
|
+
"Unable to install virt-who package, make sure the host is properly subscribed "
|
248
|
+
"and has access to satellite-tools repository"
|
154
249
|
msgstr ""
|
155
250
|
|
156
|
-
msgid "
|
251
|
+
msgid "Owner was not provided"
|
157
252
|
msgstr ""
|
158
253
|
|
159
|
-
msgid "
|
254
|
+
msgid "Interval was not provided"
|
160
255
|
msgstr ""
|
161
256
|
|
162
|
-
msgid "
|
257
|
+
msgid "Virt-who Configurations Status"
|
163
258
|
msgstr ""
|
164
259
|
|
165
|
-
msgid "
|
260
|
+
msgid "Configuration Status"
|
166
261
|
msgstr ""
|
167
262
|
|
168
|
-
msgid "
|
263
|
+
msgid "Count"
|
169
264
|
msgstr ""
|
170
265
|
|
171
266
|
msgid "No Reports"
|
172
267
|
msgstr ""
|
173
268
|
|
269
|
+
msgid "Out Of Date"
|
270
|
+
msgstr ""
|
271
|
+
|
272
|
+
msgid "Up To Date"
|
273
|
+
msgstr ""
|
274
|
+
|
275
|
+
msgid "Total Configurations"
|
276
|
+
msgstr ""
|
277
|
+
|
278
|
+
msgid "Latest Out of Date Configurations"
|
279
|
+
msgstr ""
|
280
|
+
|
174
281
|
msgid "No configuration found"
|
175
282
|
msgstr ""
|
176
283
|
|
177
|
-
msgid "
|
284
|
+
msgid "Config|Name"
|
285
|
+
msgstr ""
|
286
|
+
|
287
|
+
msgid "Config|Last Report"
|
288
|
+
msgstr ""
|
289
|
+
|
290
|
+
msgid "Config|Interval"
|
291
|
+
msgstr ""
|
292
|
+
|
293
|
+
msgid "Edit Virt-who Config"
|
294
|
+
msgstr ""
|
295
|
+
|
296
|
+
msgid "Virt-who Configurations"
|
297
|
+
msgstr ""
|
298
|
+
|
299
|
+
msgid "Status"
|
300
|
+
msgstr ""
|
301
|
+
|
302
|
+
msgid "Actions"
|
303
|
+
msgstr ""
|
304
|
+
|
305
|
+
msgid "Edit"
|
306
|
+
msgstr ""
|
307
|
+
|
308
|
+
msgid "Delete virt-who configuration %s?"
|
309
|
+
msgstr ""
|
310
|
+
|
311
|
+
msgid "New Virt-who Config"
|
312
|
+
msgstr ""
|
313
|
+
|
314
|
+
msgid ""
|
315
|
+
"To deploy this configuration. run this script on the target host which has acc"
|
316
|
+
"ess to Red Hat Satellite Tools repository and will run virt-who reporting, pre"
|
317
|
+
"ferably Satellite host:"
|
178
318
|
msgstr ""
|
179
319
|
|
180
320
|
msgid "On the target virt-who host:"
|
181
321
|
msgstr ""
|
182
322
|
|
183
|
-
msgid "
|
323
|
+
msgid "1. Copy this configuration script to a safe directory."
|
184
324
|
msgstr ""
|
185
325
|
|
186
|
-
msgid "
|
326
|
+
msgid "2. Make the script executable and run it."
|
187
327
|
msgstr ""
|
188
328
|
|
189
|
-
msgid "
|
329
|
+
msgid "3. Delete the script."
|
190
330
|
msgstr ""
|
191
331
|
|
192
|
-
msgid "
|
332
|
+
msgid "Edit this configuration"
|
193
333
|
msgstr ""
|
194
334
|
|
195
|
-
msgid "
|
335
|
+
msgid "Download the script"
|
196
336
|
msgstr ""
|
197
337
|
|
198
|
-
msgid "
|
338
|
+
msgid "Copy to clipboard"
|
199
339
|
msgstr ""
|
200
340
|
|
201
|
-
msgid "
|
341
|
+
msgid "Configuration script: "
|
202
342
|
msgstr ""
|
203
343
|
|
204
|
-
msgid "
|
344
|
+
msgid ""
|
345
|
+
"Satellite Server’s fully-qualified host name, for example: satellite.example.c"
|
346
|
+
"om"
|
205
347
|
msgstr ""
|
206
348
|
|
207
|
-
msgid "
|
349
|
+
msgid "Hypervisor ID"
|
208
350
|
msgstr ""
|
209
351
|
|
210
|
-
msgid "
|
352
|
+
msgid ""
|
353
|
+
"Specifies that hypervisors will be identified by their <b>hostname</b>, <b>uui"
|
354
|
+
"d</b> or <b>hwuuid</b>.\n"
|
355
|
+
" Note that some virtualization backends don't hav"
|
356
|
+
"e all of them implemented.\n"
|
357
|
+
" Default is <b>hostname</b>, which provides more "
|
358
|
+
"meaningful hypervisor\n"
|
359
|
+
" names, but can cause duplicated hypervisor r"
|
360
|
+
"egistrations if the host is renamed. To avoid that, you can use <b>uuid</b> in"
|
361
|
+
"stead. <b>hwuuid</b> is applicable to esx and rhevm only.\n"
|
362
|
+
" This property is meant to be set up before t"
|
363
|
+
"he initial run of virt-who. Changing it later will result in duplicated entrie"
|
364
|
+
"s in the subscription manager."
|
211
365
|
msgstr ""
|
212
366
|
|
213
|
-
msgid "
|
367
|
+
msgid "Filtering"
|
214
368
|
msgstr ""
|
215
369
|
|
216
370
|
msgid ""
|
217
|
-
"
|
218
|
-
"
|
219
|
-
"
|
220
|
-
"
|
221
|
-
"
|
371
|
+
"If you run a hybrid environment, with virtual machines running Red Hat Enterpr"
|
372
|
+
"ise Linux and other operating systems, you may want to limit the scope of virt"
|
373
|
+
"-who’s access to hosts. For example, if some hypervisors host only Microsoft W"
|
374
|
+
"indows Server instances, there is no benefit in having those hypervisors repor"
|
375
|
+
"ted by the virt-who agent."
|
222
376
|
msgstr ""
|
223
377
|
|
224
|
-
msgid "
|
378
|
+
msgid ""
|
379
|
+
"Only hosts which uuid (or hostname or hwuuid, based on <code>hypervisor_id</co"
|
380
|
+
"de>) is specified in comma-separated list in this option will be reported. Wil"
|
381
|
+
"dcards and regular expressions are supported, multiple records must be separat"
|
382
|
+
"ed by comma. Put the value into the double-quotes if it contains special char"
|
383
|
+
"acters like comma. All new line characters will be removed in resulting confi"
|
384
|
+
"guration file, white spaces are removed from beginning and end."
|
225
385
|
msgstr ""
|
226
386
|
|
227
|
-
msgid "
|
387
|
+
msgid "Filter hosts"
|
228
388
|
msgstr ""
|
229
389
|
|
230
|
-
msgid "
|
390
|
+
msgid ""
|
391
|
+
"Hosts which uuid (or hostname or hwuuid, based on <code>hypervisor_id</code>) "
|
392
|
+
"is specified in comma-separated list in this option will <b>NOT</b> be reporte"
|
393
|
+
"d. Wildcards and regular expressions are supported, multiple records must be "
|
394
|
+
"separated by comma. Put the value into the double-quotes if it contains speci"
|
395
|
+
"al characters like comma. All new line characters will be removed in resultin"
|
396
|
+
"g configuration file, white spaces are removed from beginning and end."
|
231
397
|
msgstr ""
|
232
398
|
|
233
|
-
msgid "
|
399
|
+
msgid "Exclude hosts"
|
234
400
|
msgstr ""
|
235
401
|
|
236
|
-
msgid "
|
402
|
+
msgid "Do you want to enable debugging output?"
|
237
403
|
msgstr ""
|
238
404
|
|
239
|
-
msgid "
|
405
|
+
msgid ""
|
406
|
+
"HTTP proxy that should be used for communication between the server on which v"
|
407
|
+
"irt-who is running and the hypervisors and virtualization managers. Leave this"
|
408
|
+
" blank if no proxy is used."
|
240
409
|
msgstr ""
|
241
410
|
|
242
|
-
msgid "
|
411
|
+
msgid "HTTP proxy"
|
243
412
|
msgstr ""
|
244
413
|
|
245
|
-
msgid "
|
414
|
+
msgid ""
|
415
|
+
"A comma-separated list of hostnames or domains or ip addresses to ignore proxy"
|
416
|
+
" settings for. Optionally this may be set to <code>*</code> to bypass proxy se"
|
417
|
+
"ttings for all hostnames domains or ip addresses."
|
246
418
|
msgstr ""
|
247
419
|
|
248
|
-
msgid "
|
420
|
+
msgid "Ignore proxy"
|
249
421
|
msgstr ""
|
250
422
|
|
251
|
-
msgid "
|
423
|
+
msgid "Name of this configuration, e.g. the name of the hypervisor"
|
252
424
|
msgstr ""
|
253
425
|
|
254
|
-
msgid "
|
426
|
+
msgid "Owner"
|
255
427
|
msgstr ""
|
256
428
|
|
257
|
-
msgid "
|
429
|
+
msgid "Account password by which virt-who is to connect to the hypervisor instance."
|
258
430
|
msgstr ""
|
259
431
|
|
260
|
-
msgid "
|
432
|
+
msgid ""
|
433
|
+
"How often to check connected hypervisors for changes? Also affects how often a"
|
434
|
+
" mapping is reported. The recommended value for most environments is every two"
|
435
|
+
" hours."
|
261
436
|
msgstr ""
|
262
437
|
|
263
|
-
msgid "
|
438
|
+
msgid "Configs"
|
264
439
|
msgstr ""
|
265
440
|
|
266
|
-
msgid "
|
441
|
+
msgid "On this page you can define virt-who configurations for your hypervisors."
|
442
|
+
msgstr ""
|
443
|
+
|
444
|
+
msgid ""
|
445
|
+
"One virt-who configuration represents one config file in /etc/virt-who.d direc"
|
446
|
+
"tory and maps to single hypervisor, organization and lifecycle environment."
|
447
|
+
msgstr ""
|
448
|
+
|
449
|
+
msgid ""
|
450
|
+
"To define a new configuration, click the New Config button and fill in the for"
|
451
|
+
"m. After you provide all required information a virt-who configuration script "
|
452
|
+
"will be generated. You could either install it manually by copying the script "
|
453
|
+
"or deploy it on a selected target host through Remote Execution."
|
267
454
|
msgstr ""
|
268
455
|
|
269
456
|
msgid "Virt-who configurations"
|
270
457
|
msgstr ""
|
271
458
|
|
272
|
-
msgid "
|
459
|
+
msgid "Virt-who Configs Status"
|
273
460
|
msgstr ""
|
274
461
|
|
275
|
-
msgid "
|
462
|
+
msgid "Create"
|
276
463
|
msgstr ""
|
277
464
|
|
278
|
-
msgid "
|
465
|
+
msgid "Delete"
|
466
|
+
msgstr ""
|
467
|
+
|
468
|
+
msgid "Export"
|
469
|
+
msgstr ""
|
470
|
+
|
471
|
+
msgid "Incremental Update"
|
472
|
+
msgstr ""
|
473
|
+
|
474
|
+
msgid "Delete Lifecycle Environment"
|
475
|
+
msgstr ""
|
476
|
+
|
477
|
+
msgid "Attach subscriptions"
|
478
|
+
msgstr ""
|
479
|
+
|
480
|
+
msgid "Auto attach subscriptions"
|
481
|
+
msgstr ""
|
482
|
+
|
483
|
+
msgid "Destroy Content Host"
|
484
|
+
msgstr ""
|
485
|
+
|
486
|
+
msgid "Install Applicable Errata"
|
487
|
+
msgstr ""
|
488
|
+
|
489
|
+
msgid "Install erratum"
|
490
|
+
msgstr ""
|
491
|
+
|
492
|
+
msgid "Hypervisors"
|
493
|
+
msgstr ""
|
494
|
+
|
495
|
+
msgid "Hypervisors update"
|
496
|
+
msgstr ""
|
497
|
+
|
498
|
+
msgid "Install package"
|
499
|
+
msgstr ""
|
500
|
+
|
501
|
+
msgid "Remove package"
|
502
|
+
msgstr ""
|
503
|
+
|
504
|
+
msgid "Update package"
|
505
|
+
msgstr ""
|
506
|
+
|
507
|
+
msgid "Install package group"
|
508
|
+
msgstr ""
|
509
|
+
|
510
|
+
msgid "Remove package group"
|
511
|
+
msgstr ""
|
512
|
+
|
513
|
+
msgid "Register Host"
|
514
|
+
msgstr ""
|
515
|
+
|
516
|
+
msgid "Remove subscriptions"
|
517
|
+
msgstr ""
|
518
|
+
|
519
|
+
msgid "Unregister Host"
|
520
|
+
msgstr ""
|
521
|
+
|
522
|
+
msgid "Update for host"
|
523
|
+
msgstr ""
|
524
|
+
|
525
|
+
msgid "Package Profile Update"
|
526
|
+
msgstr ""
|
527
|
+
|
528
|
+
msgid "Auto-attach subscriptions"
|
529
|
+
msgstr ""
|
530
|
+
|
531
|
+
msgid "Destroy"
|
532
|
+
msgstr ""
|
533
|
+
|
534
|
+
msgid "Product Create"
|
535
|
+
msgstr ""
|
536
|
+
|
537
|
+
msgid "Delete Product"
|
538
|
+
msgstr ""
|
539
|
+
|
540
|
+
msgid "Reindex subscriptions"
|
541
|
+
msgstr ""
|
542
|
+
|
543
|
+
msgid "Update"
|
544
|
+
msgstr ""
|
545
|
+
|
546
|
+
msgid "Errata mail"
|
547
|
+
msgstr ""
|
548
|
+
|
549
|
+
msgid "Filtered index content"
|
550
|
+
msgstr ""
|
551
|
+
|
552
|
+
msgid "Upload into"
|
553
|
+
msgstr ""
|
554
|
+
|
555
|
+
msgid "Index content"
|
556
|
+
msgstr ""
|
557
|
+
|
558
|
+
msgid "Index errata"
|
559
|
+
msgstr ""
|
560
|
+
|
561
|
+
msgid "Index package groups"
|
562
|
+
msgstr ""
|
563
|
+
|
564
|
+
msgid "Remove Content"
|
565
|
+
msgstr ""
|
566
|
+
|
567
|
+
msgid "Synchronize"
|
568
|
+
msgstr ""
|
569
|
+
|
570
|
+
msgid "Upload errata into"
|
571
|
+
msgstr ""
|
572
|
+
|
573
|
+
msgid "Disable"
|
574
|
+
msgstr ""
|
575
|
+
|
576
|
+
msgid "Enable"
|
577
|
+
msgstr ""
|
578
|
+
|
579
|
+
msgid "Add Sync Plan Products"
|
580
|
+
msgstr ""
|
581
|
+
|
582
|
+
msgid "Update Sync Plan Products"
|
583
|
+
msgstr ""
|
584
|
+
|
585
|
+
msgid "Update Sync Plan"
|
586
|
+
msgstr ""
|
587
|
+
|
588
|
+
msgid "Remote action:"
|
589
|
+
msgstr ""
|
590
|
+
|
591
|
+
msgid "Report"
|
592
|
+
msgstr ""
|
593
|
+
|
594
|
+
msgid "Action with sub plans"
|
595
|
+
msgstr ""
|
596
|
+
|
597
|
+
msgid "Create architecture"
|
598
|
+
msgstr ""
|
599
|
+
|
600
|
+
msgid "Delete architecture"
|
601
|
+
msgstr ""
|
602
|
+
|
603
|
+
msgid "Update architecture"
|
604
|
+
msgstr ""
|
605
|
+
|
606
|
+
msgid "Import facts"
|
607
|
+
msgstr ""
|
608
|
+
|
609
|
+
msgid "Import Puppet classes"
|
610
|
+
msgstr ""
|
611
|
+
|
612
|
+
msgid "Abstract async task"
|
613
|
+
msgstr ""
|
614
|
+
|
615
|
+
msgid "Delete Activation Key"
|
616
|
+
msgstr ""
|
617
|
+
|
618
|
+
msgid "Configure capsule"
|
619
|
+
msgstr ""
|
620
|
+
|
621
|
+
msgid "Create repos"
|
622
|
+
msgstr ""
|
623
|
+
|
624
|
+
msgid "Synchronize capsule content"
|
625
|
+
msgstr ""
|
626
|
+
|
627
|
+
msgid "Promotion"
|
628
|
+
msgstr ""
|
629
|
+
|
630
|
+
msgid "Publish"
|
631
|
+
msgstr ""
|
632
|
+
|
633
|
+
msgid "Remove from Environment"
|
634
|
+
msgstr ""
|
635
|
+
|
636
|
+
msgid "Remove Version"
|
637
|
+
msgstr ""
|
638
|
+
|
639
|
+
msgid "Remove Versions and Associations"
|
640
|
+
msgstr ""
|
641
|
+
|
642
|
+
msgid "A plugin to make virt-who configuration easy"
|
279
643
|
msgstr ""
|