Skip to content

Commit d37ec48

Browse files
committed
Enable GUI for setting updateproxy for standaloneVMs
Enable setting update proxy for standalone VMs in Global Config
1 parent 7b9d91e commit d37ec48

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

qubes_config/global_config/updates_handler.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -468,6 +468,8 @@ def _rule_filter(rule):
468468
def _needs_updatevm_filter(vm):
469469
if vm.klass in ("AdminVM", "AppVM"):
470470
return False
471+
if vm.klass == "StandaloneVM":
472+
return bool(vm.features.get("service.updates-proxy-setup", False))
471473
if getattr(vm, "template", None):
472474
return False
473475
return bool(

0 commit comments

Comments
 (0)