summaryrefslogtreecommitdiff
path: root/etc
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>2000-01-02 06:50:10 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>2000-01-02 06:50:10 +0000
commit3610d9c6b01881f0c53c9118a6c47b1a951b19f1 (patch)
treeddb026e587e9ccbf2d74c20b6a8ebe91db6abd6b /etc
parentcfe5700e836574433738cd8afa2fcf9c615966bd (diff)
rtsol case can configure the interface up, since it would be nice to finish
DAD before the actual rtsol(8) run happens later. and since it will rtsol, it is going to be up in any case.
Diffstat (limited to 'etc')
-rw-r--r--etc/netstart4
1 files changed, 2 insertions, 2 deletions
diff --git a/etc/netstart b/etc/netstart
index 8c24377eaba..a98c0cfdee9 100644
--- a/etc/netstart
+++ b/etc/netstart
@@ -1,6 +1,6 @@
#!/bin/sh -
#
-# $OpenBSD: netstart,v 1.61 2000/01/02 06:43:42 itojun Exp $
+# $OpenBSD: netstart,v 1.62 2000/01/02 06:50:09 deraadt Exp $
# Returns true if $1 contains only alphanumerics
isalphanumeric() {
@@ -98,7 +98,7 @@ for hn in /etc/hostname.*; do
cmd="dhclient $if"
;;
"rtsol")
- ifconfig $if $name $mask $bcaddr $ext1 $ext2 down
+ ifconfig $if $name $mask $bcaddr $ext1 $ext2 up
rtsolif="$rtsolif $if"
cmd=
;;