From 906c876b5a67e0f5ea905238c3830ad540eec191 Mon Sep 17 00:00:00 2001 From: Ben Grande Date: Mon, 5 Jan 2026 16:36:56 +0100 Subject: [PATCH] Make debian call post-install hook after update Other distributions already did it: - DNF calls it in qubes.post-update.actons - Pacman calls it in qubes-update-desktop.icons.hook Without running qubes.PostInstall, a system might not report all of its features. Fixes: https://github.com/QubesOS/qubes-issues/issues/10532 For: https://github.com/QubesOS/qubes-issues/issues/1512 --- package-managers/apt-conf-00notify-hook | 1 + 1 file changed, 1 insertion(+) diff --git a/package-managers/apt-conf-00notify-hook b/package-managers/apt-conf-00notify-hook index b4ef13215..95233cbdc 100644 --- a/package-managers/apt-conf-00notify-hook +++ b/package-managers/apt-conf-00notify-hook @@ -1 +1,2 @@ DPkg::Post-Invoke {"/usr/lib/qubes/upgrades-status-notify skip-refresh || true";}; +APT::Update::Post-Invoke {"/etc/qubes-rpc/qubes.PostInstall";};