head	1.1;
access;
symbols;
locks; strict;
comment	@# @;


1.1
date	2004.03.24.18.47.08;	author garbled;	state Exp;
branches;
next	;


desc
@@


1.1
log
@Fixes to sushi for handling ipv6 autoconfiguration mode in the rc.conf
file. Provided by Peter Postma in followup to PR 24645
@
text
@#!/bin/sh
# $NetBSD$
. /etc/rc.conf

if [ -z "$ip6mode" ]; then
	ip6mode=host
fi


echo "$ip6mode"
MODES="host autohost router"
for n in $MODES;
do
	if [ "$n" != "$ip6mode" ]; then
		echo $n
	fi
done
@
