View | Details | Raw Unified | Return to bug 235909 | Differences between
and this patch

Collapse All | Expand All

(-)net/Makefile (+1 lines)
Lines 136-141 Link Here
136
    SUBDIR += dtcp
136
    SUBDIR += dtcp
137
    SUBDIR += dtcpclient
137
    SUBDIR += dtcpclient
138
    SUBDIR += dual-dhclient
138
    SUBDIR += dual-dhclient
139
    SUBDIR += dual-dhclient-daemon
139
    SUBDIR += easysoap
140
    SUBDIR += easysoap
140
    SUBDIR += echoping
141
    SUBDIR += echoping
141
    SUBDIR += elixir-kafka_ex
142
    SUBDIR += elixir-kafka_ex
(-)net/dual-dhclient-daemon/Makefile (+23 lines)
Line 0 Link Here
1
# $FreeBSD$
2
3
PORTNAME=	dual-dhclient-daemon
4
PORTVERSION=	0.1
5
CATEGORIES=	net
6
7
MAINTAINER=	cperciva@FreeBSD.org
8
COMMENT=	Spawns dhclients for a dual-stack network
9
10
LICENSE=	PD
11
12
USE_GITHUB=	yes
13
GH_ACCOUNT=	cperciva
14
GH_PROJECT=	dual-dhclient
15
16
PLIST_FILES=	sbin/dual-dhclient
17
18
CONFLICTS_INSTALL=	dual-dhclient
19
20
do-install:
21
	${INSTALL_PROGRAM} ${WRKSRC}/dual-dhclient ${STAGEDIR}${PREFIX}/sbin
22
23
.include <bsd.port.mk>
(-)net/dual-dhclient-daemon/distinfo (+3 lines)
Line 0 Link Here
1
TIMESTAMP = 1569319837
2
SHA256 (cperciva-dual-dhclient-0.1_GH0.tar.gz) = 48a6a70086f2a3610ec1d2d7dee2b725fbc4e96ae0961fac1499b3c7953be581
3
SIZE (cperciva-dual-dhclient-0.1_GH0.tar.gz) = 1648
(-)net/dual-dhclient-daemon/pkg-descr (+3 lines)
Line 0 Link Here
1
This port provides a daemon which spawns both /sbin/dhclient and
2
/usr/local/sbin/dhclient -6; this simplifies the configuration needed to
3
run DHCP on both protocols of a dual-stack network.
(-)net/dual-dhclient-daemon/pkg-message (+10 lines)
Line 0 Link Here
1
[
2
{ type: install
3
  message: <<EOM
4
To enable dual-stack DHCP, set
5
  dhclient_program="/usr/local/sbin/dual-dhclient"
6
in /etc/rc.conf (and make sure the appropriate ifconfig_* lines include
7
DHCP or SYNCDHCP).
8
EOM
9
}
10
]

Return to bug 235909