Update fabric file to use the new pid location

This commit is contained in:
2010-10-28 13:03:11 +01:00
parent baf88520a9
commit 30d7e15f72

4
fabfile.py vendored
View File

@@ -129,8 +129,8 @@ def stop():
require('path')
with cd('%(path)s/dreddit-auth/' % env):
run('kill `cat auth.pid`')
run('rm -f auth.pid')
run('kill `cat ./logs/auth.pid`')
run('rm -f ./logs/auth.pid')
def restart():