next try to fix upgrade stalling
[feisty_meow.git] / scripts / system / naive_system_updater.sh
1
2 source "$FEISTY_MEOW_SCRIPTS/core/launch_feisty_meow.sh"
3
4 sudo apt-get update -y
5 test_or_die "problem while doing 'apt-get update'"
6 # newest magic to tell dpkg to go with existing config files and force non-interactive version.
7 export DEBIAN_FRONTEND=noninteractive
8 sudo apt-get dist-upgrade -y -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confold"
9 test_or_die "problem while doing 'apt-get dist-upgrade'"
10
11