def stop(): """ Stops the gunicorn service. """ if search('running', gunicorn_handler('status')): gunicorn_handler('stop')
def restart(): """ Restarts the gunicorn service. """ gunicorn_handler('restart')
def start(): """ Starts the gunicorn service. """ gunicorn_handler('start')
def restart(): """ Restarts the gunicorn service. """ gunicorn_handler("restart")
def stop(): """ Stops the gunicorn service. """ if search("running", gunicorn_handler("status")): gunicorn_handler("stop")
def start(): """ Starts the gunicorn service. """ gunicorn_handler("start")