apt_upgradeurgency: nowapt_upgrade — the most common case
A standard package vulnerability where the patched version is in the regular apt repos for your release codename.
How the matcher decides
Matcher reads the USN release_packages[<your_codename>] list, finds your installed version via dpkg-query, runs dpkg --compare-versions installed lt fixed. If installed is strictly less than fixed, finding fires.
Expected downtime
Typically zero. Most apt upgrades restart their service automatically (sshd, nginx, postgres, etc.) and existing connections survive.
Recommended command
sudo apt-get update sudo apt-get install --only-upgrade -y <package-name>
Real example from the MSS VPS audit log
USN-8222-1 OpenSSH 9.6p1-3ubuntu13.15 → 13.16 on Ubuntu noble. We applied this on the MSS VPS this morning; existing SSH session survived; new connections used the patched binary immediately.
When this fails / edge cases
If apt list --upgradable doesn't show the package, the patched version isn't in your enabled repos yet. Wait for the security mirror to sync (usually <1 hour after a USN drops), then retry.