From 30d7e15f72b107dc5bbeee51b5a3162bdd9e83e2 Mon Sep 17 00:00:00 2001 From: Andrew Williams Date: Thu, 28 Oct 2010 13:03:11 +0100 Subject: [PATCH] Update fabric file to use the new pid location --- fabfile.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fabfile.py b/fabfile.py index 540351c..ca9fe53 100644 --- a/fabfile.py +++ b/fabfile.py @@ -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():