Fix restart

pull/290/head
Daniel Wagner-Hall 2015-09-24 21:59:38 +00:00
parent 76328b85f6
commit f87a11e0fd
1 changed files with 2 additions and 2 deletions

View File

@ -73,8 +73,8 @@ def main():
elif action == "stop":
stop(pidfile)
elif action == "restart":
stop()
start()
stop(pidfile)
start(configfile)
else:
sys.stderr.write("Usage: %s [start|stop|restart] [configfile]\n" % (sys.argv[0],))
sys.exit(1)