attempting to fix naive system updater
[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 check_result "problem while doing 'apt-get update'"
6 # new magic to tell dpkg to go with existing config files.  let's see if it works!
7 sudo apt-get dist-upgrade -y -o Dpkg::Options::="--force-confold"
8 check_result "problem while doing 'apt-get dist-upgrade'"
9
10