diff options
author | Alexey Romanov <alexey.v.romanov@gmail.com> | 2010-12-07 12:18:06 +0300 |
---|---|---|
committer | Alexey Romanov <alexey.v.romanov@gmail.com> | 2010-12-07 12:18:06 +0300 |
commit | 4699a7c9c5464430e38acd5a9b8032547514d9cb (patch) | |
tree | d1e02247260ee1ec505164d9a7215cba491c35cb /priv | |
parent | 62bfad57a5907a2ba5bee2fb344fa9581bfde66c (diff) |
Fix quotes
Diffstat (limited to 'priv')
-rwxr-xr-x | priv/templates/simplenode.runner | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/priv/templates/simplenode.runner b/priv/templates/simplenode.runner index caae421..46141bb 100755 --- a/priv/templates/simplenode.runner +++ b/priv/templates/simplenode.runner @@ -66,7 +66,7 @@ case "$1" in stop) # Wait for the node to completely stop... - PID=`ps -ef|grep "$RUNNER_BASE_DIR/.*/[b]eam|awk '{print $2}'"` + PID=`ps -ef|grep "$RUNNER_BASE_DIR/.*/[b]eam"|awk '{print $2}'` $NODETOOL stop while `kill -0 $PID 2>/dev/null`; do |