]> Zhao Yanbai Git Server - minix.git/commitdiff
Took hostaddr out of the loop; if it fails after 10 secs, continue
authorBen Gras <ben@minix3.org>
Mon, 8 Aug 2005 16:56:40 +0000 (16:56 +0000)
committerBen Gras <ben@minix3.org>
Mon, 8 Aug 2005 16:56:40 +0000 (16:56 +0000)
startup script. (ast@)

etc/usr/rc

index 40f57f44daa757dea622f4eb7b39e10342ada9c0..29280e3137607ba9b50ee75376b17699d686a477 100644 (file)
@@ -143,27 +143,8 @@ start)
     if [ "$net" ]
     then
        # Get the nodename from the DNS and set it.
-       t='-t 10'
        trap '' 2
-       while :;
-       do
-           intr $t hostaddr -h
-
-           case $? in
-           142)
-               echo "\
-Unable to obtain an IP address after 10 seconds.  Hit DEL to get a root
-prompt to investigate, otherwise just wait until an address is received..."
-               t=
-               ;;
-           130)
-               echo "Single user."
-               intr sh
-               echo "Continue waiting for an address..."
-               ;;
-           *)  break
-           esac
-       done
+       intr -t 10 hostaddr -h || echo "Unable to obtain an IP address."
        trap 2
     fi