92885b02097a9ef957bb5d74052da69618c00428
[demo.git] / vnfs / vCPE / scripts / v_gmux_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/bng_mux_net_ipaddr.txt)
29         BITS=$(cat /opt/config/bng_mux_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         IP=$(cat /opt/config/mux_gw_net_ipaddr.txt)
47         BITS=$(cat /opt/config/mux_gw_net_cidr.txt | cut -d"/" -f2)
48         NETMASK=$(cdr2mask $BITS)
49         echo "auto eth3" >> /etc/network/interfaces
50         echo "iface eth3 inet static" >> /etc/network/interfaces
51         echo "    address $IP" >> /etc/network/interfaces
52         echo "    netmask $NETMASK" >> /etc/network/interfaces
53         echo "    mtu $MTU" >> /etc/network/interfaces
54
55         ifup eth1
56         ifup eth2
57         ifup eth3
58 fi
59
60 # Download required dependencies
61 echo "deb http://ppa.launchpad.net/openjdk-r/ppa/ubuntu xenial main" >> /etc/apt/sources.list.d/java.list
62 echo "deb-src http://ppa.launchpad.net/openjdk-r/ppa/ubuntu xenial main" >> /etc/apt/sources.list.d/java.list
63 apt-get update
64 apt-get install --allow-unauthenticated -y wget openjdk-8-jdk apt-transport-https ca-certificates g++ libcurl4-gnutls-dev
65 sleep 1
66
67 # Download DHCP config files
68 cd /opt
69 wget $REPO_URL_BLOB/org.onap.demo/vnfs/vcpe/$INSTALL_SCRIPT_VERSION/v_gmux_init.sh
70 wget $REPO_URL_BLOB/org.onap.demo/vnfs/vcpe/$INSTALL_SCRIPT_VERSION/v_gmux.sh
71 chmod +x v_gmux_init.sh
72 chmod +x v_gmux.sh
73 mv v_gmux.sh /etc/init.d
74 update-rc.d v_gmux.sh defaults
75
76 # Rename network interface in openstack Ubuntu 16.04 images. Then, reboot the VM to pick up changes
77 if [[ $CLOUD_ENV != "rackspace" ]]
78 then
79         sed -i "s/GRUB_CMDLINE_LINUX=.*/GRUB_CMDLINE_LINUX=\"net.ifnames=0 biosdevname=0\"/g" /etc/default/grub
80         grub-mkconfig -o /boot/grub/grub.cfg
81         sed -i "s/ens[0-9]*/eth0/g" /etc/network/interfaces.d/*.cfg
82         sed -i "s/ens[0-9]*/eth0/g" /etc/udev/rules.d/70-persistent-net.rules
83         echo 'network: {config: disabled}' >> /etc/cloud/cloud.cfg.d/99-disable-network-config.cfg
84         echo "APT::Periodic::Unattended-Upgrade \"0\";" >> /etc/apt/apt.conf.d/10periodic
85         reboot
86 fi
87
88 ./v_gmux_init.sh