dhcp6c and dhcp6s are invoked too late in the boot process. They should run during the networking phase. They are being run before login. Fix: Just replace: # BEFORE: LOGIN with: # BEFORE: NETWORKING
Responsible Changed From-To: freebsd-ports-bugs->rpaulo Submitter has GNATS access (via the GNATS Auto Assign Tool)
Responsible Changed From-To: rpaulo->freebsd-ports-bugs Submitter is not ports committer.
State Changed From-To: open->closed Committed, thanks!
Author: stefan Date: Mon Apr 29 11:38:49 2013 New Revision: 316808 URL: http://svnweb.freebsd.org/changeset/ports/316808 Log: Run rc.d scripts before NETWORKING, not LOGIN, since that is too late. PR: 169138 Submitted by: rpaulo Modified: head/net/dhcp6/files/dhcp6c.in head/net/dhcp6/files/dhcp6s.in Modified: head/net/dhcp6/files/dhcp6c.in ============================================================================== --- head/net/dhcp6/files/dhcp6c.in Mon Apr 29 11:31:38 2013 (r316807) +++ head/net/dhcp6/files/dhcp6c.in Mon Apr 29 11:38:49 2013 (r316808) @@ -5,7 +5,7 @@ # PROVIDE: dhcp6c # REQUIRE: DAEMON -# BEFORE: LOGIN +# BEFORE: NETWORKING # KEYWORD: shutdown # Add the following lines to Modified: head/net/dhcp6/files/dhcp6s.in ============================================================================== --- head/net/dhcp6/files/dhcp6s.in Mon Apr 29 11:31:38 2013 (r316807) +++ head/net/dhcp6/files/dhcp6s.in Mon Apr 29 11:38:49 2013 (r316808) @@ -5,7 +5,7 @@ # PROVIDE: dhcp6s # REQUIRE: DAEMON -# BEFORE: LOGIN +# BEFORE: NETWORKING # KEYWORD: shutdown # Add the following lines to _______________________________________________ svn-ports-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-ports-all To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"