diff options
author | Jun-ichiro itojun Hagino <itojun@cvs.openbsd.org> | 2000-01-02 06:32:45 +0000 |
---|---|---|
committer | Jun-ichiro itojun Hagino <itojun@cvs.openbsd.org> | 2000-01-02 06:32:45 +0000 |
commit | f1b38213f5be63bfb09f0982c97a7e6357235eda (patch) | |
tree | 0ba45da82c50048cbdebfcc511cfc1d0ee897be2 | |
parent | 7e84cb54b1bc5b159084752a62fe87731926c7f4 (diff) |
allow options after "rtsol".
XXX both "dhcp" and "rtsol" has keyword *down* at the end. is it okay?
-rw-r--r-- | etc/netstart | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/etc/netstart b/etc/netstart index db8ed5181ab..171df836296 100644 --- a/etc/netstart +++ b/etc/netstart @@ -1,6 +1,6 @@ #!/bin/sh - # -# $OpenBSD: netstart,v 1.57 2000/01/02 05:21:55 itojun Exp $ +# $OpenBSD: netstart,v 1.58 2000/01/02 06:32:44 itojun Exp $ # Returns true if $1 contains only alphanumerics isalphanumeric() { @@ -98,6 +98,7 @@ for hn in /etc/hostname.*; do cmd="dhclient $if" ;; "rtsol") + ifconfig $if $name $mask $bcaddr $ext1 $ext2 down rtsolif="$rtsolif $if" ;; "up") |