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
This commit is contained in:
Brian C. Lane 2015-06-26 14:11:41 -07:00
parent 96371548d3
commit 6b7407599b
1 changed files with 1 additions and 1 deletions

View File

@ -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