Skip to content

Commit

Permalink
Exclude VMs with skip-update boolean feature
Browse files Browse the repository at this point in the history
  • Loading branch information
alimirjamali committed Oct 10, 2024
1 parent 3f7bf98 commit 3988dab
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
2 changes: 2 additions & 0 deletions doc/tools/qubes-vm-update.rst
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,8 @@ Targeting is used to choose the VMs that will be checked for available updates,

Additionally, not all VMs in the system can be updated directly (such as AppVMs), and to update them, you must use one of the "propagation" options. This means, after updating the template, restarting the VM and applying the installed updates to it. Using at least the `--apply-to-sys` flag is recommended, which restarts all service VMs. Keep in mind that during this process, unsaved data may be lost.

VMs with `skip-update` feature set to True will be excluded from update, unless directly targeted with `--targets` option.

RETURN CODES
============

Expand Down
6 changes: 6 additions & 0 deletions vmupdate/vmupdate.py
Original file line number Diff line number Diff line change
Expand Up @@ -208,6 +208,12 @@ def preselect_targets(args, app) -> Set[qubesadmin.vm.QubesVM]:
print("Skipping dom0. To update AdminVM use `qubes-dom0-update`")
targets = {vm for vm in targets
if vm.name != 'dom0' and vm.name not in to_skip}

# exclude vms with `skip-update` feature, but allow --targets to override it
if not args.targets:
targets = {vm for vm in targets
if not bool(vm.featrues.get('skip-update', False))}

return targets


Expand Down

0 comments on commit 3988dab

Please sign in to comment.