X-Git-Url: https://feistymeow.org/gitweb/?a=blobdiff_plain;f=scripts%2Fsystem%2Fnaive_system_updater.sh;h=b15d0efef2cb9905869811af115eb70faed09acb;hb=56a8b71bcfe324f83044a12738004151ff2fc064;hp=a68ff69236f71a15ef6f73ff6dddec2d0a5a0135;hpb=9fd687b2a9082cc5ce244f779d3f259ea6753216;p=feisty_meow.git diff --git a/scripts/system/naive_system_updater.sh b/scripts/system/naive_system_updater.sh index a68ff692..b15d0efe 100644 --- a/scripts/system/naive_system_updater.sh +++ b/scripts/system/naive_system_updater.sh @@ -1,10 +1,10 @@ -# load feisty meow aliases. -source $HOME/feisty_meow/scripts/core/launch_feisty_meow.sh +source "$FEISTY_MEOW_SCRIPTS/core/launch_feisty_meow.sh" sudo apt-get update -y -check_result "problem while doing 'apt-get update'" -sudo apt-get dist-upgrade -y -check_result "problem while doing 'apt-get dist-upgrade'" +test_or_die "problem while doing 'apt-get update'" +# new magic to tell dpkg to go with existing config files. let's see if it works! +sudo apt-get dist-upgrade -y -o Dpkg::Options::="--force-confold" +test_or_die "problem while doing 'apt-get dist-upgrade'"