diff options
author | Marco Platania <platania@research.att.com> | 2017-04-28 10:14:15 -0400 |
---|---|---|
committer | Marco Platania <platania@research.att.com> | 2017-04-28 10:14:15 -0400 |
commit | 36722d07218ec607497efff9e1704ff7601e3ae8 (patch) | |
tree | 328d5e0f4085a9a2352767dd82c11eefea597cb4 /boot/aai_install.sh | |
parent | 084842742ea45c27c3ab161200ed2f40da859f53 (diff) |
enable no floating IPs in install scripts
Change-Id: Iec5a16e401d7c1f581f05a4b7a9b8ee2708cd4e3
Signed-off-by: Marco Platania <platania@research.att.com>
Diffstat (limited to 'boot/aai_install.sh')
-rw-r--r-- | boot/aai_install.sh | 29 |
1 files changed, 28 insertions, 1 deletions
diff --git a/boot/aai_install.sh b/boot/aai_install.sh index cf9043b9..255e0bdc 100644 --- a/boot/aai_install.sh +++ b/boot/aai_install.sh @@ -7,11 +7,38 @@ DNS_IP_ADDR=$(cat /opt/config/dns_ip_addr.txt) CLOUD_ENV=$(cat /opt/config/cloud_env.txt) # Add host name to /etc/host to avoid warnings in openstack images -if [[ $CLOUD_ENV == "openstack" ]] +if [[ $CLOUD_ENV != "rackspace" ]] then echo 127.0.0.1 $(hostname) >> /etc/hosts fi +# Set private IP in /etc/network/interfaces manually in the presence of public interface +# Some VM images don't add the private interface automatically, we have to do it during the component installation +if [[ $CLOUD_ENV == "openstack_nofloat" ]] +then + LOCAL_IP=$(cat /opt/config/local_ip_addr.txt) + CIDR=$(cat /opt/config/oam_network_cidr.txt) + BITMASK=$(echo $CIDR | cut -d"/" -f2) + + # Compute the netmask based on the network cidr + if [[ $BITMASK == "8" ]] + then + NETMASK=255.0.0.0 + elif [[ $BITMASK == "16" ]] + then + NETMASK=255.255.0.0 + elif [[ $BITMASK == "24" ]] + then + NETMASK=255.255.255.0 + fi + + echo "auto eth1" >> /etc/network/interfaces + echo "iface eth1 inet static" >> /etc/network/interfaces + echo " address $LOCAL_IP" >> /etc/network/interfaces + echo " netmask $NETMASK" >> /etc/network/interfaces + ifup eth1 +fi + # Download dependencies add-apt-repository -y ppa:openjdk-r/ppa apt-get update |