qubes-pool skip DomainPools without volumes
This commit is contained in:
parent
c8363cfc95
commit
90928dc4a0
@ -84,7 +84,10 @@ def list_pools(app):
|
|||||||
''' Prints out all known pools and their drivers '''
|
''' Prints out all known pools and their drivers '''
|
||||||
result = [('NAME', 'DRIVER')]
|
result = [('NAME', 'DRIVER')]
|
||||||
for pool in app.pools.values():
|
for pool in app.pools.values():
|
||||||
result += [(pool.name, pool.driver)]
|
if len(pool.volumes) > 0 and not issubclass(
|
||||||
|
pool.__class__, qubes.storage.domain.DomainPool):
|
||||||
|
# skip empty DomainPools
|
||||||
|
result += [(pool.name, pool.driver)]
|
||||||
qubes.tools.print_table(result)
|
qubes.tools.print_table(result)
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user