Don't ignore errors of 'apt-get update' command

This change fixes an issue with 'apt-get update' command and stop
container building with erroneous source repositories.

Change-Id: I5ce2eb66a647e1805f086aa37942bf5d13eb4106
Signed-off-by: Maksim Malchuk <maksim.malchuk@gmail.com>
(cherry picked from commit bce06d2d5a)
This commit is contained in:
Maksim Malchuk 2022-06-03 17:01:25 +03:00
parent 1b259ecc5b
commit 34cc46a4d0
2 changed files with 11 additions and 1 deletions

View File

@ -49,7 +49,7 @@ def debian_package_install(packages, clean_package_cache=True):
# handle the apt-get install
if reg_packages:
cmds.append('apt-get update')
cmds.append('apt-get --error-on=any update')
cmds.append('apt-get -y install --no-install-recommends {}'.format(
' '.join(reg_packages)
))

View File

@ -0,0 +1,10 @@
---
fixes:
- |
The ``apt-get update`` command by default didn't fail on erroneous source
repositories, it show the warning 'W: Some index files failed to download.
They have been ignored, or old ones used instead.' and continue to work.
This causes some containers (eg. rabbitmq, kolla-toolbox) successfully
built, but makes them inconsistent because the official Ubuntu repository
contains packages with the same names. Now we use ``apt-get -eany update``
command to stop building with an error in such cases.