From 8d54c4be1bbc92b3dbbae6dfd4731d7cbfd3abc4 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Fri, 21 Dec 2012 09:23:14 -0600 Subject: [PATCH] there is no point making isos on arm, lets log and move on. --- src/pypungi/__init__.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/pypungi/__init__.py b/src/pypungi/__init__.py index 209e981a..7581044f 100644 --- a/src/pypungi/__init__.py +++ b/src/pypungi/__init__.py @@ -1071,6 +1071,9 @@ class Pungi(pypungi.PungiBase): def doCreateIsos(self): """Create iso of the tree.""" + if self.config.get('pungi', 'arch').startswith('arm'): + self.logger.info("ARCH: arm, not doing doCreateIsos().") + return isolist=[] anaruntime = '/usr/share/anaconda/boot'