Browse Source

ok, it took quite a bit of prodding but itojun finally explained why the

extra sleep 1 is in here, and we came to the conclusion it is safe to
delete it.  whee.
OPENBSD_3_5
deraadt 21 years ago
parent
commit
b95ae6b3be
1 changed files with 1 additions and 2 deletions
  1. +1
    -2
      src/etc/netstart

+ 1
- 2
src/etc/netstart View File

@ -1,6 +1,6 @@
#!/bin/sh - #!/bin/sh -
# #
# $OpenBSD: netstart,v 1.93 2004/01/13 08:36:57 deraadt Exp $
# $OpenBSD: netstart,v 1.94 2004/01/14 04:41:02 deraadt Exp $
# Returns true if $1 contains only alphanumerics # Returns true if $1 contains only alphanumerics
isalphanumeric() { isalphanumeric() {
@ -278,7 +278,6 @@ fi
if [ "$ip6kernel" = "YES" ]; then if [ "$ip6kernel" = "YES" ]; then
# this is to make sure DAD is completed before going further. # this is to make sure DAD is completed before going further.
sleep `sysctl -n net.inet6.ip6.dad_count` sleep `sysctl -n net.inet6.ip6.dad_count`
sleep 1
fi fi
# /etc/mygate, if it exists, contains the name of my gateway host # /etc/mygate, if it exists, contains the name of my gateway host


Loading…
Cancel
Save