diff options
author | Jing Lu <lvjing5@huawei.com> | 2016-12-24 01:12:49 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2016-12-24 01:12:49 +0000 |
commit | 734a4d10e3d3efc0ed869771be56b3cbd9df7602 (patch) | |
tree | 2e3387ebda2005301549a051606f47e7b7901533 /api/api-prepare.sh | |
parent | ca1bb41a5af846e150b8f4d87f336eec05ea21f8 (diff) | |
parent | 46858e3970bdbcb3026d85b9a640d3bd7f4cdd9a (diff) |
Merge "Move uwsgi.log and yardstick.sock to proper location"
Diffstat (limited to 'api/api-prepare.sh')
-rwxr-xr-x | api/api-prepare.sh | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/api/api-prepare.sh b/api/api-prepare.sh index fade8ccc6..5cc65c959 100755 --- a/api/api-prepare.sh +++ b/api/api-prepare.sh @@ -20,7 +20,7 @@ server { index index.htm index.html; location / { include uwsgi_params; - uwsgi_pass unix:///home/opnfv/repos/yardstick/api/yardstick.sock; + uwsgi_pass unix:///var/run/yardstick.sock; } } EOF @@ -47,3 +47,9 @@ command = uwsgi -i yardstick.ini autorestart = true EOF fi + +# create api log directory +mkdir -p /var/log/yardstick + +# create yardstick.sock for communicating +touch /var/run/yardstick.sock |