From feadeaadb80a3578aaf937896413ea6705b3afa9 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Sat, 22 Sep 2012 08:51:52 -0500 Subject: [PATCH] We need to reset the arch to ppc64p7 for both ppc and ppc64 --- src/pypungi/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pypungi/__init__.py b/src/pypungi/__init__.py index 90c04474..a2ac2fce 100644 --- a/src/pypungi/__init__.py +++ b/src/pypungi/__init__.py @@ -232,7 +232,7 @@ class Pungi(pypungi.PungiBase): arch = self.config.get('pungi', 'arch') if arch == 'i386': yumarch = 'athlon' - elif arch == 'ppc': + elif arch in ['ppc', 'ppc64']: yumarch = 'ppc64p7' elif arch == 'sparc': yumarch = 'sparc64v'