mirror of
https://github.com/retspen/webvirtmgr.git
synced 2026-04-26 08:05:54 +03:00
[GH-ISSUE #137] ISO storage pool uses case sensitive extensions #112
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @cc-daveloper on GitHub (Oct 25, 2013).
Original GitHub issue: https://github.com/retspen/webvirtmgr/issues/137
The match for .iso and .img are case sensitive when they should be case insensitive to also match for .ISO and .IMG. The primary impetus is that M$ and others commonly distribute their images with the upper case .IMG extension.
@jansauerbrey commented on GitHub (Oct 27, 2013):
In addition to the upper behaiviour, I use LVM volumes which do not have any .img endings. So the check to show only *.img files within the storage pool results in no hdd entry for me.
Is it possible to remove or disable this check for img again since normally within your pool you should have only your images?
Thanks
Jan
P.S: I use ubuntu 12.04 and the newest version 3.3.4
P.P.S:
For my issue I checked the code and edited the server.py as follows:
$ diff server.py.ORIG server.py
277c277,280
< if stg.info()[0] != 0:
First change addresses problems with apparmor when driver type is set to 'None'
Second and third change address missing handling of logical storage pools.