diff options
author | Robert Peichaer <rpe@cvs.openbsd.org> | 2017-07-25 21:17:12 +0000 |
---|---|---|
committer | Robert Peichaer <rpe@cvs.openbsd.org> | 2017-07-25 21:17:12 +0000 |
commit | 28e79962714bd0353c3881cfc0a6699451da0987 (patch) | |
tree | 0000cd66799121c034c25ac10b25dcf14e9e20ed /etc/netstart | |
parent | 8c932de450adf7bf10eed19434ea35d1d734e6f9 (diff) |
Finally remove backwards compat code to support the 'rtsol' keyword
in hostname.if(5)
OK mpi@ deraadt@ florian@
OK jmc@ from doc perspective
Diffstat (limited to 'etc/netstart')
-rw-r--r-- | etc/netstart | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/etc/netstart b/etc/netstart index e26329651fe..3b8c6a275c5 100644 --- a/etc/netstart +++ b/etc/netstart @@ -1,6 +1,6 @@ #!/bin/sh - # -# $OpenBSD: netstart,v 1.185 2017/07/21 20:22:13 rpe Exp $ +# $OpenBSD: netstart,v 1.186 2017/07/25 21:17:11 rpe Exp $ # Turn off Strict Bourne shell mode. set +o sh @@ -62,13 +62,6 @@ parse_hn_line() { _cmds[${#_cmds[*]}]="ifconfig $_if ${_c[@]} down;dhclient $_if" V4_DHCPCONF=true ;; - rtsol) # XXX Support the rtsol keyword for some time to enable a smooth - # XXX transition to autoconf. - _c[0]= - _cmds[${#_cmds[*]}]="ifconfig $_if ${_c[@]} up" - _cmds[${#_cmds[*]}]="ifconfig $_if inet6 autoconf" - V6_AUTOCONF=true - ;; '!'*) _cmd=$(print -- "${_c[@]}" | sed 's/\$if/'$_if'/g') _cmds[${#_cmds[*]}]="${_cmd#!}" ;; |