When I try to deploy a vm from a template and use the customization script, the vm will build, but my eth0 will have extra information in it, which is causing a slow down when trying to log in to the box via ssh.
Log in can take about 1 minute, once I remove those extra lines starting at the "check_link_down()" my login's will be normal speed and everything works just fine. So the question is where is this being added from?, and how do I get it to stop so that I don't have to manually change every VM I build?
This is on a CentOS 6.5, Scientific Linux 6 and RHEL 6, all have the same issue.
DEVICE=eth0
ONBOOT=yes
USERCTL=no
BOOTPROTO=static
NETMASK=255.255.252.0
IPADDR=XXX.XXX.XXX.65
PEERDNS=no
check_link_down() { <------ This is the information being added by the customization script
return 1;
}