mirror of https://github.com/apache/cloudstack.git
VPC - new system vm doesn't bring up eth0 reliably, and we don't set eth0 to
auto start like we should. cloud-early-config sets 'auto lo $1', but we don't pass $1 in vpc router scenario like we do in others for some reason. eth0 is always link local in vpc router, so setting it to that. Signed-off-by: Marcus Sorensen <marcus@betterservers.com> 1365546368 -0600
This commit is contained in:
parent
bf56403d82
commit
be55c5b3a5
|
|
@ -704,7 +704,7 @@ setup_vpcrouter() {
|
|||
fi
|
||||
|
||||
cat > /etc/network/interfaces << EOF
|
||||
auto lo $1
|
||||
auto lo eth0
|
||||
iface lo inet loopback
|
||||
EOF
|
||||
setup_interface "0" $ETH0_IP $ETH0_MASK $GW
|
||||
|
|
|
|||
Loading…
Reference in New Issue