diff options
-rw-r--r-- | boot/asdc_install.sh | 3 | ||||
-rw-r--r-- | boot/mso_install.sh | 3 | ||||
-rw-r--r-- | boot/robot_install.sh | 3 |
3 files changed, 6 insertions, 3 deletions
diff --git a/boot/asdc_install.sh b/boot/asdc_install.sh index a7baae76..24544f27 100644 --- a/boot/asdc_install.sh +++ b/boot/asdc_install.sh @@ -127,10 +127,11 @@ 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 # Run docker containers. For openstack Ubuntu 16.04 images this will run as a service after the VM has restarted -./asdc_vm_init.sh
\ No newline at end of file +./asdc_vm_init.sh diff --git a/boot/mso_install.sh b/boot/mso_install.sh index 45bb712b..9717b692 100644 --- a/boot/mso_install.sh +++ b/boot/mso_install.sh @@ -98,10 +98,11 @@ 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 # Run docker containers. For openstack Ubuntu 16.04 images this will run as a service after the VM has restarted -./mso_vm_init.sh
\ No newline at end of file +./mso_vm_init.sh diff --git a/boot/robot_install.sh b/boot/robot_install.sh index d623526d..5c593b32 100644 --- a/boot/robot_install.sh +++ b/boot/robot_install.sh @@ -97,10 +97,11 @@ 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 # Run docker containers. For openstack Ubuntu 16.04 images this will run as a service after the VM has restarted -./robot_vm_init.sh
\ No newline at end of file +./robot_vm_init.sh |