You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@allura.apache.org by br...@apache.org on 2014/05/08 16:44:44 UTC

[5/7] git commit: [#7316] fix taskd proc name check (we started using setproctitle quite a while ago)

[#7316] fix taskd proc name check (we started using setproctitle quite a while ago)


Project: http://git-wip-us.apache.org/repos/asf/allura/repo
Commit: http://git-wip-us.apache.org/repos/asf/allura/commit/ce6e55b9
Tree: http://git-wip-us.apache.org/repos/asf/allura/tree/ce6e55b9
Diff: http://git-wip-us.apache.org/repos/asf/allura/diff/ce6e55b9

Branch: refs/heads/master
Commit: ce6e55b9f31a969effe6e893621d089770f02e36
Parents: f35aadd
Author: Dave Brondsema <da...@brondsema.net>
Authored: Thu Apr 17 16:49:22 2014 -0400
Committer: Dave Brondsema <da...@brondsema.net>
Committed: Thu May 8 10:44:09 2014 -0400

----------------------------------------------------------------------
 vagrant/start_allura | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/allura/blob/ce6e55b9/vagrant/start_allura
----------------------------------------------------------------------
diff --git a/vagrant/start_allura b/vagrant/start_allura
index c3f7016..48d4a5f 100755
--- a/vagrant/start_allura
+++ b/vagrant/start_allura
@@ -43,7 +43,7 @@ fi
 cd /home/vagrant/src/allura/Allura
 
 # Start taskd
-if pgrep -f "paster taskd" >/dev/null
+if pgrep -f "^taskd" >/dev/null
 then
     echo "Taskd is running."
 else