Commit cc80b058 by Toshio Kuratomi

Be more specific in checking if a job restarted successfully.

Fixes: #9056
parent 4a26d0d7
......@@ -1287,7 +1287,7 @@ def main():
(rc, out, err) = service.modify_service_state()
if rc != 0:
if err and "is already" in err:
if err and "Job is already running" in err:
# upstart got confused, one such possibility is MySQL on Ubuntu 12.04
# where status may report it has no start/stop links and we could
# not get accurate status
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment