Skip to content

Commit

Permalink
Fix Updater only restarting sys-* qubes
Browse files Browse the repository at this point in the history
After an update to qubes-vm-update [1] (which the SDW updater uses
under the hood) `--restart` was changed to only restart `sys-*`
qubes. The new qubes-vm-update flag --apply-to-all has the behavior
we intend.

Fixes #1127

[1]: QubesOS/qubes-core-admin-linux@93078d0b
  • Loading branch information
deeplow committed Jul 8, 2024
1 parent a36ef71 commit 4a0a0df
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sdw_updater/Updater.py
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ def apply_updates_templates(templates=current_templates, progress_callback=None)
def _start_qubes_updater_proc(templates):
update_cmd = [
"qubes-vm-update",
"--restart", # Enforce app qube restarts
"--apply-to-all", # Enforce app qube restarts
"--show-output", # Update transaction details (goes to stdout)
"--just-print-progress", # Progress reporting (goes to stderr)
"--targets",
Expand Down

0 comments on commit 4a0a0df

Please sign in to comment.