From cde566c6d975fb1ea1d35078e574c09b6b977e7d Mon Sep 17 00:00:00 2001 From: Marco Platania Date: Wed, 6 Sep 2017 09:49:24 -0400 Subject: [PATCH] Install Apache2 in vWEB vCPE VM - Install Apache2 - Create a sample index.html web page Change-Id: Id38d7f3a060a298cc424c35d7f7c4dc00cd8b69b Issue-ID: UCA-32 Signed-off-by: Marco Platania --- vnfs/vCPE/scripts/v_web_install.sh | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/vnfs/vCPE/scripts/v_web_install.sh b/vnfs/vCPE/scripts/v_web_install.sh index 117178a6..e207dd09 100644 --- a/vnfs/vCPE/scripts/v_web_install.sh +++ b/vnfs/vCPE/scripts/v_web_install.sh @@ -63,6 +63,19 @@ chmod +x v_web.sh mv v_web.sh /etc/init.d update-rc.d v_web.sh defaults +# Install Apache2 web server +apt-get update +apt install -y apache2 +mv /var/www/html/index.html /var/www/html/index.html.example +cat > /var/www/html/index.html << EOF + + + +

Welcome to the vCPE Use Case Web Server!

+ + +EOF + # Rename network interface in openstack Ubuntu 16.04 images. Then, reboot the VM to pick up changes if [[ $CLOUD_ENV != "rackspace" ]] then -- 2.16.6