From c89ec0c2b85e1dacc9b65066de0cc8384a14b97b Mon Sep 17 00:00:00 2001 From: "Fred T. Hamster" Date: Sat, 28 Sep 2024 21:36:17 -0400 Subject: [PATCH] added upgrade before dist-upgrade sometimes the upgrade is needed first, especially seen after a faulty upgrade to ubuntu noble. --- scripts/system/naive_system_updater.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/scripts/system/naive_system_updater.sh b/scripts/system/naive_system_updater.sh index 7be9d658..2a786ca0 100644 --- a/scripts/system/naive_system_updater.sh +++ b/scripts/system/naive_system_updater.sh @@ -2,7 +2,10 @@ source "$FEISTY_MEOW_SCRIPTS/core/launch_feisty_meow.sh" sudo apt update -y -exit_on_error "problem while doing 'apt update'" +exit_on_error "problem while doing 'apt update -y'" + +sudo apt upgrade -y +exit_on_error "problem while doing 'apt upgrade -y'" # newest magic to tell dpkg to go with existing config files and force non-interactive version. sudo bash -c "\ -- 2.34.1