diff options
author | Marco Platania <platania@research.att.com> | 2017-09-20 17:10:05 -0400 |
---|---|---|
committer | Marco Platania <platania@research.att.com> | 2017-09-20 17:10:05 -0400 |
commit | 8be8e12d55102189025836c802d87865a8fe6cf3 (patch) | |
tree | 8e88629f44278417377bbb491b10ccb5e6b0270a /boot/openo_install.sh | |
parent | 14826109d7d7b8f8388f7866159c57acd1a307cb (diff) |
Fix OPEN-O VM installation issues
Change-Id: I89079d0d690032b2ea88d0f30f2f20daa3098838
Issue-ID: INT-213
Signed-off-by: Marco Platania <platania@research.att.com>
Diffstat (limited to 'boot/openo_install.sh')
-rw-r--r-- | boot/openo_install.sh | 16 |
1 files changed, 14 insertions, 2 deletions
diff --git a/boot/openo_install.sh b/boot/openo_install.sh index c039d6c6..ebf38616 100644 --- a/boot/openo_install.sh +++ b/boot/openo_install.sh @@ -7,7 +7,7 @@ DNS_IP_ADDR=$(cat /opt/config/dns_ip_addr.txt) CLOUD_ENV=$(cat /opt/config/cloud_env.txt) VNFSDK_BRANCH=$(cat /opt/config/vnfsdk_branch.txt) MTU=$(/sbin/ifconfig | grep MTU | sed 's/.*MTU://' | sed 's/ .*//' | sort -n | head -1) -CODE_REPO=$(cat /opt/config/remote_repo.txt) +VNFSDK_REPO=$(cat /opt/config/vnfsdk_repo.txt) # Add host name to /etc/host to avoid warnings in openstack images if [[ $CLOUD_ENV != "rackspace" ]] @@ -101,7 +101,19 @@ resolvconf -u # Clone Gerrit repository and run docker containers cd /opt -git clone -b $VNFSDK_BRANCH --single-branch $CODE_REPO +git clone -b $VNFSDK_BRANCH --single-branch $VNFSDK_REPO + +# Rename network interface in openstack Ubuntu 16.04 images. Then, reboot the VM to pick up changes +if [[ $CLOUD_ENV != "rackspace" ]] +then + sed -i "s/GRUB_CMDLINE_LINUX=.*/GRUB_CMDLINE_LINUX=\"net.ifnames=0 biosdevname=0\"/g" /etc/default/grub + grub-mkconfig -o /boot/grub/grub.cfg + sed -i "s/ens[0-9]*/eth0/g" /etc/network/interfaces.d/*.cfg + sed -i "s/ens[0-9]*/eth0/g" /etc/udev/rules.d/70-persistent-net.rules + echo 'network: {config: disabled}' >> /etc/cloud/cloud.cfg.d/99-disable-network-config.cfg + echo "APT::Periodic::Unattended-Upgrade \"0\";" >> /etc/apt/apt.conf.d/10periodic + reboot +fi ./msb_vm_init.sh sleep 2 |