X-Git-Url: https://gerrit.fd.io/r/gitweb?p=csit.git;a=blobdiff_plain;f=resources%2Ftools%2Fdisk-image-builder%2Fcentos%2Fscripts-remote%2Fpost-install.sh;h=bd45d2330ce9fdc1da4335500de228f2ad025ad1;hp=9ae16082035f56186b7c1bcb59c13662e16a09bb;hb=e5a63c071996f351d6037ba8a08ff8eecf32ca39;hpb=005e7e00d0e9b9d4c0796c998b88d639ee316033 diff --git a/resources/tools/disk-image-builder/centos/scripts-remote/post-install.sh b/resources/tools/disk-image-builder/centos/scripts-remote/post-install.sh index 9ae1608203..bd45d2330c 100644 --- a/resources/tools/disk-image-builder/centos/scripts-remote/post-install.sh +++ b/resources/tools/disk-image-builder/centos/scripts-remote/post-install.sh @@ -15,6 +15,18 @@ TEMP_PATH="/root/temp" +echo ==========================Remove NetworkManager============================ +systemctl disable NetworkManager +systemctl enable network +yum -y remove NetworkManager + +cat - > /etc/sysconfig/network-scripts/ifcfg-eth0 <<"_EOF" +DEVICE=eth0 +BOOTPROTO=dhcp +ONBOOT=yes +_EOF +echo =======================End Remove NetworkManager=========================== + ### ### RPMs ### @@ -27,11 +39,9 @@ echo "********** INSTALLING RPMs **********" # problems during the first one(s). echo ==========================yum update============================== yum clean all -yum install -y @base yum install -y deltarpm yum update -y -yum -y install epel-release -yum update -y +yum install -y @base epel-release echo ==========================end yum update============================== attempt=1 MAX_ATTEMPTS=3