[PATCH] livemedia-creator: Ignore IGNORED errors in anaconda logs

Brian C. Lane bcl at redhat.com
Thu Jun 26 21:01:16 UTC 2014


---
 src/sbin/livemedia-creator | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/src/sbin/livemedia-creator b/src/sbin/livemedia-creator
index 0fac7e0..47eec2c 100755
--- a/src/sbin/livemedia-creator
+++ b/src/sbin/livemedia-creator
@@ -135,7 +135,11 @@ class LogRequestHandler(SocketServer.BaseRequestHandler):
         Check a line to see if it contains an error indicating installation failure
 
         :param str line: log line to check for failure
+
+        If the line contains IGNORED it will be skipped.
         """
+        if "IGNORED" in line:
+            return
         simple_tests = ["Traceback (",
                         "Out of memory:",
                         "Call Trace:",
-- 
1.9.3



More information about the anaconda-patches mailing list