Apt-get update not completing successfully

Just flashed a new Debian image into the DB410c. I’m trying to update various system packages and system is complaining about not finding repositories.

sudo apt-get update

N: Repository ‘http://deb.debian.org/debian buster InRelease’ changed its ‘Version’ value from ‘’ to ‘10.1’
E: Repository ‘http://deb.debian.org/debian buster InRelease’ changed its ‘Suite’ value from ‘testing’ to ‘stable’
N: This must be accepted explicitly before updates for this repository can be applied. See apt-secure(8) manpage for details.

Any help will be appreciated.

Try:

apt-get --allow-releaseinfo-change update

or just

apt update

solved my own problem:

apt-get update --allow-releaseinfo-change

Simply saying Y when asked for that choice helped me directly. Just accept explicitly is making all needed changes.