From f893b2bc13f44a8f581afdfa06bf352aa047d649 Mon Sep 17 00:00:00 2001 From: florian <> Date: Wed, 3 Dec 2014 19:55:49 +0000 Subject: [PATCH] The kernel handles rtsol(8) functionality since some time now. Treat rtsol in hostname.if as a keyword like dhcp and call ifconfig inet6 autoconf. "reads good" todd@ OK krw@ (who is *not* an IPv6 person), but I recruited him in his capacity as an installer person. --- src/etc/netstart | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/etc/netstart b/src/etc/netstart index 6fa4d933..9ef97409 100644 --- a/src/etc/netstart +++ b/src/etc/netstart @@ -1,6 +1,6 @@ #!/bin/sh - # -# $OpenBSD: netstart,v 1.143 2014/09/28 12:58:02 claudio Exp $ +# $OpenBSD: netstart,v 1.144 2014/12/03 19:55:49 florian Exp $ # Strip comments (and leading/trailing whitespace if IFS is set) # from a file and spew to stdout @@ -245,7 +245,7 @@ if [ "$ip6kernel" = "YES" -a "x$rtsolif" != "x" ]; then fw=`sysctl -n net.inet6.ip6.forwarding` if [ "x$fw" = "x0" ]; then echo "IPv6 autoconf:$rtsolif" - rtsol $rtsolif + ifconfig $rtsolif inet6 autoconf else echo "IPv6 autoconf not supported while IPv6 forwarding is enabled" fi