diff options
-rw-r--r-- | netconfig | 14 |
1 files changed, 7 insertions, 7 deletions
@@ -632,18 +632,18 @@ If a net mask is not specified a default of 24 will be used. The first address entered will become the primary IPv4 address of this host. If you do not want to configure a static IPv4 address, just leave it blank or select 'Skip'." \ - 17 69 "${IPADDRS[*]}" 2> $TMP/SeTlip + 17 69 "${IPADDRS[*]}" 2> $TMP/SeTIPSv4 ERRNO="$?" if [ "$ERRNO" = "1" ]; then IPADDRS=() - rm -f $TMP/SeTIPSv4 $TMP/SeTlip + rm -f $TMP/SeTIPSv4 break elif [ "$ERRNO" = "255" ]; then - rm -f $TMP/SeTIPSv4 $TMP/SeTlip + rm -f $TMP/SeTIPSv4 exit fi - IPADDRS=($(cat $TMP/SeTlip)) - rm -f $TMP/SeTlip + IPADDRS=($(cat $TMP/SeTIPSv4)) + rm -f $TMP/SeTIPSv4 if [ "${IPADDRS[*]}" = "" ]; then rm -f $TMP/SeTIPSv4 break @@ -677,7 +677,7 @@ Valid net masks will be in the range 1-32." 6 65 continue 2 fi done - rm -f $TMP/SeTIPSv4 $TMP/SeTlip + rm -f $TMP/SeTIPSv4 break done @@ -701,7 +701,6 @@ Enter IPv4 gateway address:" 14 68 "$GATEWAY" 2> $TMP/SeTgateway4 GATEWAY="`cat $TMP/SeTgateway4`" rm -f $TMP/SeTgateway4 if [ "$GATEWAY" = "" ]; then - #echo > $TMP/SeTgateway4 break fi syntax_check_v4 "$GATEWAY" 4 WARN @@ -943,6 +942,7 @@ Netmask: 255.255.255.0 Is this correct? Press 'Yes' to continue, or 'No' to reconfigure." 10 70 RETVAL=$? +# FIXME: Need to actually set IPADDRS=127.0.0.1/8 here elif [ "$LOOPBACK" = "yes" -a "$NETWORKMANAGER" = "yes" ]; then dialog --title "NETWORK SETUP COMPLETE" --yesno "Your networking \ system is now configured to use NetworkManager for |