From owner-freebsd-questions Sun May 27 18: 7:37 2001 Delivered-To: freebsd-questions@freebsd.org Received: from tdl.com (pm5-90.tdl.com [206.180.234.90]) by hub.freebsd.org (Postfix) with ESMTP id CE22337B424 for ; Sun, 27 May 2001 18:07:26 -0700 (PDT) (envelope-from wdr@tdl.com) Received: by tdl.com (8.11.3/8.11.1) id f4S17c905100; Sun, 27 May 2001 18:07:38 -0700 (PDT) (envelope-from wdr) Content-Type: text/plain; charset="iso-8859-1" From: William Richard Organization: William Richard & Associates Ltd To: "G. Adam Stanislav" , freebsd-questions@freebsd.org Subject: Re: Bizarre shutdown behavior Date: Sun, 27 May 2001 18:07:38 -0700 X-Mailer: KMail [version 1.2] References: <20010526192545.A275@whizkidtech.net> <20010526232053.A279@whizkidtech.net> In-Reply-To: <20010526232053.A279@whizkidtech.net> MIME-Version: 1.0 Message-Id: <01052718073801.01315@saffron> Content-Transfer-Encoding: 8bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > I found what was causing it. I had a "ppp" command in > /usr/local/etc/rc.d/start.sh . This was the right thing in 3.1, > but not quite in 4.3. > > The problem disappeared when I wrapped it inside a case statement: > > case "$1" in > start) > ppp -auto myisp > esac You can do this programmatically with options in /etc/rc.conf: ppp_enable="YES" ppp_mode="auto" ppp_profile="myisp" will start ppp automagically. See rc.conf(5) for more /etc/rc.conf wizardry. -- Cheers, William Richard wdr@tdl.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message