kvaps 8 years ago
parent d5c9443a63
commit 372cb6a183

@ -83,7 +83,7 @@ fi
if [ -d /etc/sysconfig/network ]; then if [ -d /etc/sysconfig/network ]; then
# Prepare network files # Prepare network files
rm -f /etc/sysconfig/network/ifcfg-eth* rm -f /etc/sysconfig/network/ifcfg-eth*
rm -f /etc/sysconfig/network/routes rm -f /etc/sysconfig/network/ifroute-eth*
sed -i '/^NETCONFIG_DNS_STATIC_SERVERS=/ s/=.*$/=""/' /etc/sysconfig/network/config sed -i '/^NETCONFIG_DNS_STATIC_SERVERS=/ s/=.*$/=""/' /etc/sysconfig/network/config
sed -i '/^NETCONFIG_DNS_STATIC_SEARCHLIST=/ s/=.*$/=""/' /etc/sysconfig/network/config sed -i '/^NETCONFIG_DNS_STATIC_SEARCHLIST=/ s/=.*$/=""/' /etc/sysconfig/network/config
fi fi

@ -106,7 +106,7 @@ EOT
if [ -n "$GATEWAY" ]; then if [ -n "$GATEWAY" ]; then
if [ "$CONFIG_PATH" = "/etc/sysconfig/network" ]; then if [ "$CONFIG_PATH" = "/etc/sysconfig/network" ]; then
echo "default $GATEWAY - -" >> /etc/sysconfig/network/routes echo "default $GATEWAY - $DEV" >> /etc/sysconfig/network/ifroute-$DEV
else else
echo "GATEWAY=$GATEWAY" echo "GATEWAY=$GATEWAY"
fi fi
@ -130,7 +130,7 @@ EOT
if [ -n "$GATEWAY6" ]; then if [ -n "$GATEWAY6" ]; then
if [ "$CONFIG_PATH" = "/etc/sysconfig/network" ]; then if [ "$CONFIG_PATH" = "/etc/sysconfig/network" ]; then
echo "default $GATEWAY6 - -" >> /etc/sysconfig/network/routes echo "default $GATEWAY6 - $DEV" >> /etc/sysconfig/network/ifroute-$DEV
else else
echo "IPV6_DEFAULTGW=$GATEWAY6" echo "IPV6_DEFAULTGW=$GATEWAY6"
fi fi
@ -193,7 +193,7 @@ gen_network_configuration()
[ -z "${DEV}" ] && continue [ -z "${DEV}" ] && continue
( (
rm -f /etc/sysconfig/network/routes rm -f /etc/sysconfig/network/ifroute-$DEV
cat <<EOT cat <<EOT
DEVICE=$DEV DEVICE=$DEV
BOOTPROTO=static BOOTPROTO=static

Loading…
Cancel
Save