From owner-freebsd-net@FreeBSD.ORG Thu Dec 20 10:53:30 2007 Return-Path: Delivered-To: freebsd-net@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3433B16A417 for ; Thu, 20 Dec 2007 10:53:30 +0000 (UTC) (envelope-from randy@psg.com) Received: from rip.psg.com (rip.psg.com [147.28.0.39]) by mx1.freebsd.org (Postfix) with ESMTP id 1760D13C458 for ; Thu, 20 Dec 2007 10:53:29 +0000 (UTC) (envelope-from randy@psg.com) Received: from 50.216.138.210.bn.2iij.net ([210.138.216.50] helo=[192.168.0.10]) by rip.psg.com with esmtpsa (TLSv1:AES256-SHA:256) (Exim 4.68 (FreeBSD)) (envelope-from ) id 1J5J1t-000K9A-0H; Thu, 20 Dec 2007 10:53:29 +0000 Message-ID: <476A4998.1010808@psg.com> Date: Thu, 20 Dec 2007 19:53:12 +0900 From: Randy Bush User-Agent: Thunderbird 2.0.0.9 (Windows/20071031) MIME-Version: 1.0 To: FreeBSD Net X-Enigmail-Version: 0.95.5 Content-Type: text/plain; charset=ISO-8859-15 Content-Transfer-Encoding: 7bit Subject: userland ppp depends on ldconfig X-BeenThere: freebsd-net@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Networking and TCP/IP with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Dec 2007 10:53:30 -0000 i have a dedicated ppp link that has to come up at boot. in /etc/rc.conf, i have # User ppp configuration. ppp_enable=YES ppp_mode=dedicated ppp_nat=YES ppp_profile=frob during boot, i was getting /libexec/ld-elf.so.1: Shared object "libintl.so.8" not found, required by "su" and ppp was not starting. this was fixed by --- /etc/rc.d/ppp~ 2007-12-17 21:41:59.000000000 +0000 +++ /etc/rc.d/ppp 2007-12-24 05:14:14.000000000 +0000 @@ -4,7 +4,7 @@ # # PROVIDE: ppp -# REQUIRE: netif isdnd +# REQUIRE: netif isdnd ldconfig # KEYWORD: nojail . /etc/rc.subr was there a more proper fix i should have used? randy