tests: switch default LVM pool to qubes_dom0/vm-pool

This is now the installer default. Anyway, it is still possible to
override it with an environment variable.
This commit is contained in:
Marek Marczykowski-Górecki 2020-07-09 02:52:59 +02:00
parent 8a04abe4b1
commit 4a2e0bc734
No known key found for this signature in database
GPG Key ID: 063938BA42CFA724

View File

@ -40,7 +40,7 @@ from qubes.storage.lvm import ThinPool, ThinVolume, qubes_lvm
if 'DEFAULT_LVM_POOL' in os.environ.keys():
DEFAULT_LVM_POOL = os.environ['DEFAULT_LVM_POOL']
else:
DEFAULT_LVM_POOL = 'qubes_dom0/pool00'
DEFAULT_LVM_POOL = 'qubes_dom0/vm-pool'
def lvm_pool_exists(volume_group, thin_pool):