From owner-freebsd-questions@FreeBSD.ORG Mon Nov 27 18:07:55 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B582516A412 for ; Mon, 27 Nov 2006 18:07:55 +0000 (UTC) (envelope-from lane@joeandlane.com) Received: from elasmtp-spurfowl.atl.sa.earthlink.net (elasmtp-spurfowl.atl.sa.earthlink.net [209.86.89.66]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4E95644120 for ; Mon, 27 Nov 2006 17:39:24 +0000 (GMT) (envelope-from lane@joeandlane.com) Received: from [66.47.111.183] (helo=joeandlane.com) by elasmtp-spurfowl.atl.sa.earthlink.net with asmtp (Exim 4.34) id 1GokSu-0008SC-QO for freebsd-questions@freebsd.org; Mon, 27 Nov 2006 12:40:25 -0500 Received: from joeandlane.com (localhost.localnet.local [127.0.0.1]) by joeandlane.com (8.13.8/8.13.1) with ESMTP id kARHhFgO081664 for ; Mon, 27 Nov 2006 11:43:15 -0600 (CST) (envelope-from lane@joeandlane.com) Received: from localhost (localhost [[UNIX: localhost]]) by joeandlane.com (8.13.8/8.13.1/Submit) id kARHhFtU081663 for freebsd-questions@freebsd.org; Mon, 27 Nov 2006 11:43:15 -0600 (CST) (envelope-from lane@joeandlane.com) From: Lane To: freebsd-questions@freebsd.org Date: Mon, 27 Nov 2006 11:43:15 -0600 User-Agent: KMail/1.9.3 References: <456B12B3.2090806@bestnet.kharkov.ua> <20061127170201.GB73889@gizmo.acns.msu.edu> In-Reply-To: <20061127170201.GB73889@gizmo.acns.msu.edu> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200611271143.15512.lane@joeandlane.com> X-CD-SOLUTIONS-MailScanner-Information: Please contact the ISP for more information X-CD-SOLUTIONS-MailScanner: Found to be clean X-CD-SOLUTIONS-MailScanner-From: lane@joeandlane.com X-ELNK-Trace: e56a4b6ca9bdfda11aa676d7e74259b7b3291a7d08dfec790be48515a169e745fac15c4c94214fda350badd9bab72f9c350badd9bab72f9c350badd9bab72f9c X-Originating-IP: 66.47.111.183 Subject: Re: freebsd doesm't see my script on boot X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 27 Nov 2006 18:07:55 -0000 On Monday 27 November 2006 11:02, Jerry McAllister wrote: > On Mon, Nov 27, 2006 at 06:30:43PM +0200, Gregory Edigarov wrote: > > Hello, Everybody > > > > Well, here is what I am doing: > > ls -l /usr/local/etc/rc.d > > total 30 > > -r-xr-xr-x 1 root wheel 4744 Nov 13 11:38 apache22 > > -r-xr-xr-x 1 root wheel 673 Nov 13 14:27 clamav-clamd > > -r-xr-xr-x 1 root wheel 722 Nov 13 14:27 clamav-freshclam > > -r-xr-xr-x 1 root wheel 1057 Nov 13 14:27 clamav-milter > > -r-xr-xr-x 1 root wheel 1254 Nov 13 13:01 gnugk > > -r-xr-xr-x 1 root wheel 198 Nov 15 01:17 l2tpd > > -r-xr-xr-x 1 root wheel 196 Nov 14 12:35 popa3d > > -r-xr-xr-x 1 root wheel 1642 Nov 13 11:19 quagga > > -r-xr-xr-x 1 root wheel 4371 Nov 13 14:00 samba > > -r-xr-xr-x 1 root wheel 1324 Nov 14 15:20 squid > > -r-xr-xr-x 1 root wheel 564 Nov 13 11:19 watchquagga > > Doesn't the name need to end in '.sh' to be recognized and run from rc.d? > > It used to be that way anyway and I haven't noticed that it > has changed. > > Try changing the name to l2tpd.sh -- and leave it executable, of course. > > ////jerry > > > cat /usr/local/etc/rc.d/l2tpd > > #!/bin/sh > > > > #PROVIDE l2tpd > > #REQUIRE NETWORKING > > > > . /etc/rc.subr > > > > name="l2tpd" > > rcvar=`set_rcvar` > > command="/usr/local/sbin/${name}" > > flags="" > > echo "l2tp debug" > > > > load_rc_config $name > > run_rc_command "$1" > > > > in rc.conf: > > l2tpd_enable="YES" > > > > Then after reboot: > > ps ax | grep l2tpd > > 667 v1 RL+ 0:00.00 grep l2tpd > > > > i.e no l2tpd has been started. > > no messages on console, either. My script just got silently skipped, all > > other services are starting up fine. > > > > What's wrong? > > > > -- > > With best regards, > > Gregory Edigarov > > > > > > I think it changed in 6.X. 6.1 still recognizes the .sh extension, but it will also execute scripts in /usr/local/etc/rc.d that DON'T have the extension. lane