Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 20 Oct 2020 01:32:14 +0000 (UTC)
From:      Xin LI <delphij@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r552785 - in head/net/dhcp6: . files
Message-ID:  <202010200132.09K1WEPu064202@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: delphij
Date: Tue Oct 20 01:32:14 2020
New Revision: 552785
URL: https://svnweb.freebsd.org/changeset/ports/552785

Log:
  net/dhcp6: Fix rcorder.
  
  We want netif be started before dhcp6c which properly initializes
  the interfaces, and we want dhcp6s to start later and after dhcp6c.
  
  Differential Revision:	https://reviews.freebsd.org/D26655

Modified:
  head/net/dhcp6/Makefile   (contents, props changed)
  head/net/dhcp6/files/dhcp6c.in
  head/net/dhcp6/files/dhcp6s.in

Modified: head/net/dhcp6/Makefile
==============================================================================
--- head/net/dhcp6/Makefile	Tue Oct 20 01:03:44 2020	(r552784)
+++ head/net/dhcp6/Makefile	Tue Oct 20 01:32:14 2020	(r552785)
@@ -4,7 +4,7 @@
 PORTNAME=	dhcp6
 PORTVERSION=	20080615.2
 DISTVERSIONPREFIX=	v
-PORTREVISION=	2	
+PORTREVISION=	3
 CATEGORIES=	net
 
 MAINTAINER=	hrs@FreeBSD.org

Modified: head/net/dhcp6/files/dhcp6c.in
==============================================================================
--- head/net/dhcp6/files/dhcp6c.in	Tue Oct 20 01:03:44 2020	(r552784)
+++ head/net/dhcp6/files/dhcp6c.in	Tue Oct 20 01:32:14 2020	(r552785)
@@ -4,6 +4,7 @@
 #
 
 # PROVIDE: dhcp6c
+# REQUIRE: netif
 # BEFORE: NETWORKING
 # KEYWORD: shutdown
 

Modified: head/net/dhcp6/files/dhcp6s.in
==============================================================================
--- head/net/dhcp6/files/dhcp6s.in	Tue Oct 20 01:03:44 2020	(r552784)
+++ head/net/dhcp6/files/dhcp6s.in	Tue Oct 20 01:32:14 2020	(r552785)
@@ -4,7 +4,8 @@
 #
 
 # PROVIDE: dhcp6s
-# BEFORE: NETWORKING
+# REQUIRE: dhcp6c DAEMON
+# BEFORE: LOGIN
 # KEYWORD: shutdown
 
 # Add the following lines to



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202010200132.09K1WEPu064202>