diff options
author | 2017-09-22 07:52:14 +0000 | |
---|---|---|
committer | 2017-09-22 07:52:14 +0000 | |
commit | 66eb1510d4ea58713f947255ebdecbd3caedcd88 (patch) | |
tree | 9c200a8a26eadb92ebc9710efb9578e915f26cc0 /nfvparser/toscaparser/tests/artifacts/nodejs/config.sh | |
parent | dde1bd595397c2e06ec897fde81cd4f8be710c5b (diff) | |
parent | 6a3e9d53686eda1d45fb54b97869a594741f089c (diff) |
Merge "Move python files to root dir"
Diffstat (limited to 'nfvparser/toscaparser/tests/artifacts/nodejs/config.sh')
-rw-r--r-- | nfvparser/toscaparser/tests/artifacts/nodejs/config.sh | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/nfvparser/toscaparser/tests/artifacts/nodejs/config.sh b/nfvparser/toscaparser/tests/artifacts/nodejs/config.sh new file mode 100644 index 0000000..1e149a2 --- /dev/null +++ b/nfvparser/toscaparser/tests/artifacts/nodejs/config.sh @@ -0,0 +1,28 @@ +#!/bin/bash +# This script installs an app for nodejs: the app intended is the paypal app +# and it is configured to connect to the mongodb server +# The environment variables github_url and mongodb_ip are expected to be set up +export app_dir=/opt/app +git clone $github_url /opt/app +if [ -f /opt/app/package.json ]; then + cd /opt/app/ && npm install + sed -i "s/localhost/$mongodb_ip/" config.json +fi + +cat > /etc/init/nodeapp.conf <<EOS +description "node.js app" + +start on (net-device-up + and local-filesystems + and runlevel [2345]) +stop on runlevel [!2345] + +expect fork +respawn + +script + export HOME=/ + export NODE_PATH=/usr/lib/node + exec /usr/bin/node ${app_dir}/app.js >> /var/log/nodeapp.log 2>&1 & +end script +EOS |