From 6b7407599b400c50279c00db9b729f2d70ba7f63 Mon Sep 17 00:00:00 2001 From: "Brian C. Lane" Date: Fri, 26 Jun 2015 14:11:41 -0700 Subject: [PATCH] livemedia-creator: fix base repo log monitor (#1196721) The anaconda rebase changed the repo download failure to ERR, fix this in the log watching code so that it will shut down the VM when it hits it. Related: rhbz#1196721 --- src/sbin/livemedia-creator | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sbin/livemedia-creator b/src/sbin/livemedia-creator index ca84e9e9..2081dad4 100755 --- a/src/sbin/livemedia-creator +++ b/src/sbin/livemedia-creator @@ -131,7 +131,7 @@ class LogRequestHandler(SocketServer.BaseRequestHandler): "Out of memory:", "Call Trace:", "insufficient disk space:"] - re_tests = [r"WARNING packaging: base repo .* not valid"] + re_tests = [r"packaging: base repo .* not valid"] for t in simple_tests: if line.find(t) > -1: self.server.log_error = True