Merge "Disable non-dhcp resolv.conf"

This commit is contained in:
Jenkins 2013-02-11 18:11:15 +00:00 committed by Gerrit Code Review
commit 098b272cf7

View File

@ -44,12 +44,9 @@ if [ ! -d $STAGING_DIR/etc ]; then
exit 1 exit 1
fi fi
# Configure dns (use same dns as dom0) # Only support DHCP for now - don't support how different versions of Ubuntu handle resolv.conf
# but only when not precise if [ "$MGT_IP" != "dhcp" ] && [ "$PUB_IP" != "dhcp" ]; then
if [ "$UBUNTU_INST_RELEASE" != "precise" ]; then echo "Configuration without DHCP not supported"
cp /etc/resolv.conf $STAGING_DIR/etc/resolv.conf
elif [ "$MGT_IP" != "dhcp" ] && [ "$PUB_IP" != "dhcp" ]; then
echo "Configuration without DHCP not supported on Precise"
exit 1 exit 1
fi fi