@@ -183,44 +183,44 @@ DEFAULT_SR = 'default'
183
183
CACHE_IMPORTED_VM = False
184
184
185
185
# Default NFS device config:
186
- NFS_DEVICE_CONFIG: dict[str, dict[ str, str] ] = {
186
+ NFS_DEVICE_CONFIG: dict[str, str] = {
187
187
# 'server': '10.0.0.2', # URL/Hostname of NFS server
188
188
# 'serverpath': '/path/to/shared/mount' # Path to shared mountpoint
189
189
}
190
190
191
191
# Default NFS4+ only device config:
192
- NFS4_DEVICE_CONFIG: dict[str, dict[ str, str] ] = {
192
+ NFS4_DEVICE_CONFIG: dict[str, str] = {
193
193
# 'server': '10.0.0.2', # URL/Hostname of NFS server
194
194
# 'serverpath': '/path_to_shared_mount' # Path to shared mountpoint
195
195
# 'nfsversion': '4.1'
196
196
}
197
197
198
198
# Default NFS ISO device config:
199
- NFS_ISO_DEVICE_CONFIG: dict[str, dict[ str, str] ] = {
199
+ NFS_ISO_DEVICE_CONFIG: dict[str, str] = {
200
200
# 'location': '10.0.0.2:/path/to/shared/mount' # URL/Hostname of NFS server and path to shared mountpoint
201
201
}
202
202
203
203
# Default CIFS ISO device config:
204
- CIFS_ISO_DEVICE_CONFIG: dict[str, dict[ str, str] ] = {
204
+ CIFS_ISO_DEVICE_CONFIG: dict[str, str] = {
205
205
# 'location': r'\\10.0.0.2\<shared folder name>',
206
206
# 'username': '<user>',
207
207
# 'cifspassword': '<password>',
208
208
# 'type': 'cifs',
209
209
# 'vers': '<1.0> or <3.0>'
210
210
}
211
211
212
- CEPHFS_DEVICE_CONFIG: dict[str, dict[ str, str] ] = {
212
+ CEPHFS_DEVICE_CONFIG: dict[str, str] = {
213
213
# 'server': '10.0.0.2',
214
214
# 'serverpath': '/vms'
215
215
}
216
216
217
- MOOSEFS_DEVICE_CONFIG: dict[str, dict[ str, str] ] = {
217
+ MOOSEFS_DEVICE_CONFIG: dict[str, str] = {
218
218
# 'masterhost': 'mfsmaster',
219
219
# 'masterport': '9421',
220
220
# 'rootpath': '/vms'
221
221
}
222
222
223
- LVMOISCSI_DEVICE_CONFIG: dict[str, dict[ str, str] ] = {
223
+ LVMOISCSI_DEVICE_CONFIG: dict[str, str] = {
224
224
# 'target': '192.168.1.1',
225
225
# 'port': '3260',
226
226
# 'targetIQN': 'target.example',
0 commit comments