summaryrefslogtreecommitdiffstats
path: root/tests/blueprints/tosca-vnfd-hello-world-tacker/start.sh
diff options
context:
space:
mode:
Diffstat (limited to 'tests/blueprints/tosca-vnfd-hello-world-tacker/start.sh')
-rwxr-xr-xtests/blueprints/tosca-vnfd-hello-world-tacker/start.sh13
1 files changed, 3 insertions, 10 deletions
diff --git a/tests/blueprints/tosca-vnfd-hello-world-tacker/start.sh b/tests/blueprints/tosca-vnfd-hello-world-tacker/start.sh
index d2bf204..5285e69 100755
--- a/tests/blueprints/tosca-vnfd-hello-world-tacker/start.sh
+++ b/tests/blueprints/tosca-vnfd-hello-world-tacker/start.sh
@@ -21,12 +21,7 @@
# How to use:
# $ bash start.sh
-set -e
-
-sudo apt-get update
-sudo apt-get install -y python3
-
-cat <<EOF >index.html
+cat << EOM | sudo tee /home/ubuntu/index.html
<!DOCTYPE html>
<html>
<head>
@@ -38,10 +33,8 @@ body { width: 100%; background-color: white; color: black; padding: 0px; margin:
</head>
<body>
Hello World!<br>
-<a href="http://wiki.opnfv.org"><img src="logo.png"></a>
+<a href="http://wiki.opnfv.org"><img src="https://www.opnfv.org/sites/all/themes/opnfv/logo.png"></a>
</body></html>
-EOF
-
-wget https://www.opnfv.org/sites/all/themes/opnfv/logo.png
+EOM
nohup sudo python3 -m http.server 80 > /dev/null 2>&1 &