From 732797c31737050f9b68a9fa87b78db0d885b9cf Mon Sep 17 00:00:00 2001 From: jae beller Date: Wed, 8 Apr 2026 00:33:03 -0400 Subject: [PATCH] Minor tweaks to Ubuntu upgrade instructions The command should be `apt full-upgrade` to remove any packages that aren't available in the new version. Also added a checkpoint step in case an emergency rollback is needed. --- src/content/docs/sprite-maintenance.mdx | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/content/docs/sprite-maintenance.mdx b/src/content/docs/sprite-maintenance.mdx index 2439bb9..5c2609d 100644 --- a/src/content/docs/sprite-maintenance.mdx +++ b/src/content/docs/sprite-maintenance.mdx @@ -36,9 +36,12 @@ With the upgrader installed, follow the [official instructions](https://ubuntu.c # upgrade to the latest packages for the current release sudo apt upgrade +# checkpoint the filesystem +sprite-env checkpoints create --comment "Before Ubuntu upgrade" + # switch to the new release sudo do-release-upgrade # upgrade installed packages to the new release -sudo apt upgrade +sudo apt full-upgrade ```