Powerpc must now pull from archive.debian.org instead of normal mirrors. This is just a quick fix to be revisited properly.

This commit is contained in:
Jeffrey Townsend
2019-03-25 17:31:25 +00:00
parent 01c689605d
commit 03cb360bc1

View File

@@ -316,6 +316,12 @@ class OnlRfsBuilder(object):
self.kwargs = kwargs
self.arch = arch
self.kwargs['ARCH'] = arch
# Hack -- we have to pull powerpc from the archive
# This will need a cleaner fix.
if arch == 'powerpc':
self.DEFAULTS['DEBIAN_MIRROR'] = 'archive.debian.org/debian/'
self.kwargs.update(self.DEFAULTS)
self.__load(config)
self.__validate()