e207dd09b449d7daca0fe5699375889ff5b25c47
[demo.git] / vnfs / vCPE / scripts / v_web_install.sh
1 #!/bin/bash
2
3 REPO_URL_BLOB=$(cat /opt/config/repo_url_blob.txt)
4 REPO_URL_ARTIFACTS=$(cat /opt/config/repo_url_artifacts.txt)
5 DEMO_ARTIFACTS_VERSION=$(cat /opt/config/demo_artifacts_version.txt)
6 INSTALL_SCRIPT_VERSION=$(cat /opt/config/install_script_version.txt)
7 CLOUD_ENV=$(cat /opt/config/cloud_env.txt)
8
9 # Convert Network CIDR to Netmask
10 cdr2mask () {
11         # Number of args to shift, 255..255, first non-255 byte, zeroes
12         set -- $(( 5 - ($1 / 8) )) 255 255 255 255 $(( (255 << (8 - ($1 % 8))) & 255 )) 0 0 0
13         [ $1 -gt 1 ] && shift $1 || shift
14         echo ${1-0}.${2-0}.${3-0}.${4-0}
15 }
16
17 # OpenStack network configuration
18 if [[ $CLOUD_ENV == "openstack" ]]
19 then
20         echo 127.0.0.1 $(hostname) >> /etc/hosts
21
22         # Allow remote login as root
23         mv /root/.ssh/authorized_keys /root/.ssh/authorized_keys.bk
24         cp /home/ubuntu/.ssh/authorized_keys /root/.ssh
25
26         MTU=$(/sbin/ifconfig | grep MTU | sed 's/.*MTU://' | sed 's/ .*//' | sort -n | head -1)
27
28         IP=$(cat /opt/config/cpe_public_ipaddr.txt)
29         BITS=$(cat /opt/config/cpe_public_net_cidr.txt | cut -d"/" -f2)
30         NETMASK=$(cdr2mask $BITS)
31         echo "auto eth1" >> /etc/network/interfaces
32         echo "iface eth1 inet static" >> /etc/network/interfaces
33         echo "    address $IP" >> /etc/network/interfaces
34         echo "    netmask $NETMASK" >> /etc/network/interfaces
35         echo "    mtu $MTU" >> /etc/network/interfaces
36
37         IP=$(cat /opt/config/oam_ipaddr.txt)
38         BITS=$(cat /opt/config/oam_cidr.txt | cut -d"/" -f2)
39         NETMASK=$(cdr2mask $BITS)
40         echo "auto eth2" >> /etc/network/interfaces
41         echo "iface eth2 inet static" >> /etc/network/interfaces
42         echo "    address $IP" >> /etc/network/interfaces
43         echo "    netmask $NETMASK" >> /etc/network/interfaces
44         echo "    mtu $MTU" >> /etc/network/interfaces
45
46         ifup eth1
47         ifup eth2
48 fi
49
50 # Download required dependencies
51 echo "deb http://ppa.launchpad.net/openjdk-r/ppa/ubuntu $(lsb_release -c -s) main" >>  /etc/apt/sources.list.d/java.list
52 echo "deb-src http://ppa.launchpad.net/openjdk-r/ppa/ubuntu $(lsb_release -c -s) main" >>  /etc/apt/sources.list.d/java.list
53 apt-get update
54 apt-get install --allow-unauthenticated -y wget openjdk-8-jdk apt-transport-https ca-certificates g++ libcurl4-gnutls-dev
55 sleep 1
56
57 # Download DHCP config files
58 cd /opt
59 wget $REPO_URL_BLOB/org.onap.demo/vnfs/vcpe/$INSTALL_SCRIPT_VERSION/v_web_init.sh
60 wget $REPO_URL_BLOB/org.onap.demo/vnfs/vcpe/$INSTALL_SCRIPT_VERSION/v_web.sh
61 chmod +x v_web_init.sh
62 chmod +x v_web.sh
63 mv v_web.sh /etc/init.d
64 update-rc.d v_web.sh defaults
65
66 # Install Apache2 web server
67 apt-get update
68 apt install -y apache2
69 mv /var/www/html/index.html /var/www/html/index.html.example
70 cat > /var/www/html/index.html << EOF
71 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
72 <html xmlns="http://www.w3.org/1999/xhtml">
73 <body>
74 <center><h1>Welcome to the vCPE Use Case Web Server!</h1><center>
75 </body>
76 </html>
77 EOF
78
79 # Rename network interface in openstack Ubuntu 16.04 images. Then, reboot the VM to pick up changes
80 if [[ $CLOUD_ENV != "rackspace" ]]
81 then
82         sed -i "s/GRUB_CMDLINE_LINUX=.*/GRUB_CMDLINE_LINUX=\"net.ifnames=0 biosdevname=0\"/g" /etc/default/grub
83         grub-mkconfig -o /boot/grub/grub.cfg
84         sed -i "s/ens[0-9]*/eth0/g" /etc/network/interfaces.d/*.cfg
85         sed -i "s/ens[0-9]*/eth0/g" /etc/udev/rules.d/70-persistent-net.rules
86         echo 'network: {config: disabled}' >> /etc/cloud/cloud.cfg.d/99-disable-network-config.cfg
87         echo "APT::Periodic::Unattended-Upgrade \"0\";" >> /etc/apt/apt.conf.d/10periodic
88         reboot
89 fi
90
91 ./v_web_init.sh