diff options
author | Zhaoxing Meng <meng.zhaoxing1@zte.com.cn> | 2017-09-22 07:52:14 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2017-09-22 07:52:14 +0000 |
commit | 66eb1510d4ea58713f947255ebdecbd3caedcd88 (patch) | |
tree | 9c200a8a26eadb92ebc9710efb9578e915f26cc0 /nfvparser/toscaparser/tests/artifacts/nodejs | |
parent | dde1bd595397c2e06ec897fde81cd4f8be710c5b (diff) | |
parent | 6a3e9d53686eda1d45fb54b97869a594741f089c (diff) |
Merge "Move python files to root dir"
Diffstat (limited to 'nfvparser/toscaparser/tests/artifacts/nodejs')
-rw-r--r-- | nfvparser/toscaparser/tests/artifacts/nodejs/config.sh | 28 | ||||
-rw-r--r-- | nfvparser/toscaparser/tests/artifacts/nodejs/create.sh | 7 | ||||
-rw-r--r-- | nfvparser/toscaparser/tests/artifacts/nodejs/start.sh | 3 |
3 files changed, 38 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 diff --git a/nfvparser/toscaparser/tests/artifacts/nodejs/create.sh b/nfvparser/toscaparser/tests/artifacts/nodejs/create.sh new file mode 100644 index 0000000..04fd6c6 --- /dev/null +++ b/nfvparser/toscaparser/tests/artifacts/nodejs/create.sh @@ -0,0 +1,7 @@ +#!/bin/bash +# This script installs nodejs and the prereq + +add-apt-repository ppa:chris-lea/node.js + +apt-get update +apt-get install -y nodejs build-essential diff --git a/nfvparser/toscaparser/tests/artifacts/nodejs/start.sh b/nfvparser/toscaparser/tests/artifacts/nodejs/start.sh new file mode 100644 index 0000000..6939cb7 --- /dev/null +++ b/nfvparser/toscaparser/tests/artifacts/nodejs/start.sh @@ -0,0 +1,3 @@ +#!/bin/bash +# This script starts the nodejs application +start nodeapp |