qvm-ls: don't exclude dom0 when using --all
Fixes QubesOS/qubes-issues#5248.
This commit is contained in:
parent
1b53de8365
commit
b112ef250d
@ -690,6 +690,14 @@ def main(args=None, app=None):
|
|||||||
else:
|
else:
|
||||||
domains = args.app.domains
|
domains = args.app.domains
|
||||||
|
|
||||||
|
if args.all_domains:
|
||||||
|
# Normally, --all means "all domains except for AdminVM".
|
||||||
|
# However, in the case of qvm-ls it does not make sense to exclude
|
||||||
|
# AdminVMs, so we override the list from parser.
|
||||||
|
domains = [
|
||||||
|
vm for vm in args.app.domains if vm.name not in args.exclude
|
||||||
|
]
|
||||||
|
|
||||||
if args.tags:
|
if args.tags:
|
||||||
# filter only VMs having at least one of the specified tags
|
# filter only VMs having at least one of the specified tags
|
||||||
domains = [dom for dom in domains
|
domains = [dom for dom in domains
|
||||||
|
Loading…
Reference in New Issue
Block a user