Update "rtsol" keyword: leave IPv6 autoconf on

There is no need to turn off ipv6_autoconf or dhcp6 in dhcpcd to match
the previous behaviour with in-kernel RA processing.
This commit is contained in:
kim 2020-10-15 07:05:27 +00:00
parent e63a73d85d
commit f5010e6cd4
1 changed files with 2 additions and 3 deletions

View File

@ -1,6 +1,6 @@
#!/bin/sh #!/bin/sh
# #
# $NetBSD: network,v 1.83 2020/10/11 22:38:48 kim Exp $ # $NetBSD: network,v 1.84 2020/10/15 07:05:27 kim Exp $
# #
# PROVIDE: network # PROVIDE: network
@ -327,8 +327,7 @@ network_start_interfaces()
if ! checkyesno dhcpcd; then if ! checkyesno dhcpcd; then
/sbin/dhcpcd -n -f /dev/null \ /sbin/dhcpcd -n -f /dev/null \
--background --persistent \ --background --persistent \
--noipv4 --nodhcp6 \ --noipv4 \
--ipv6ra_noautoconf \
${dhcpcd_flags} $int ${dhcpcd_flags} $int
fi fi
;; ;;