Stange. Not in mine:In other words the base dhclient should be started for v4 and isc client for v6, but in the actual script there is:
Code:
dice@williscorto:~ % cat /usr/local/sbin/dual-dhclient
#!/bin/sh
# $FreeBSD: head/net/dual-dhclient/files/dual-dhclient 431537 2017-01-15 09:00:18Z cperciva $
# Public domain
/sbin/dhclient "$@"
/usr/local/sbin/dhclient -6 -nw -cf /dev/null "$@"
Code:
dice@williscorto:~ % ps -ax | grep dhclient
609 - Is 0:05.24 dhclient: system.syslog (dhclient)
612 - Is 0:17.34 dhclient: re0 [priv] (dhclient)
687 - ICs 0:10.89 dhclient: re0 (dhclient)
689 - Is 0:18.91 /usr/local/sbin/dhclient -6 -nw -cf /dev/null re0
46882 0 S+ 0:00.00 grep dhclient
Code:
dice@williscorto:~ % pkg info dual-dhclient
dual-dhclient-1.0_1
Name : dual-dhclient
Version : 1.0_1
Installed on : Sun Feb 14 11:53:45 2021 CET
Origin : net/dual-dhclient
Architecture : FreeBSD:13:amd64
Prefix : /usr/local
Categories : net
Licenses : PD
Maintainer : cperciva@FreeBSD.org
WWW : UNKNOWN
Comment : Spawns dhclients for a dual-stack network
Annotations :
FreeBSD_version: 1300139
repo_type : binary
repository : dicelan
Flat size : 478B
Description :
This port provides a script which spawns both /sbin/dhclient and
/usr/local/sbin/dhclient -6; this simplifies the configuration needed to
run DHCP on both protocols of a dual-stack network.
As this is a relatively small script it's actually included with the port itself:
So, your bug is not caused by the port or package.