diff --git a/merlin/merlin.py b/merlin/merlin.py index e2f603c..cd6fb06 100755 --- a/merlin/merlin.py +++ b/merlin/merlin.py @@ -619,6 +619,11 @@ def await_command(ear): elif command == 'status': s.send(mirror_status()) + elif command == 'dump': + s.send(str(jobs)) + s.send("\n") + s.send(str(repos)) + else: logging.error('Received unrecognized command: %s' % command) s.send('Bad command: %s' % command)