From owner-freebsd-stable Sat Sep 14 2:17:43 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CE42F37B7C3 for ; Sat, 14 Sep 2002 02:16:43 -0700 (PDT) Received: from mail.dfwgroove.com (216-73-99-183.ocdc-01.net [216.73.99.183]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2BDB8440E6 for ; Sat, 14 Sep 2002 00:53:27 -0700 (PDT) (envelope-from jon.longoria@dfwgroove.com) Received: from aristotle [65.189.227.37] by mail.dfwgroove.com with ESMTP (SMTPD32-7.07) id ABAD29700BE; Sat, 14 Sep 2002 00:56:29 -0700 Message-ID: <00a701c25bc3$edce0f10$0c01a8c0@aristotle> From: "Jon Longoria" To: "Manuel Enrique Garcia Cuesta" Cc: , References: <20020914064905.ZHOO16391.out018.verizon.net@[127.0.0.1]> <009001c25bbb$bac57570$0c01a8c0@aristotle> <20020914094222.A16534@mail.kicelo.org> Subject: Re: Re: ';;' instead of 'fi' Date: Sat, 14 Sep 2002 02:54:14 -0500 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 8bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2600.0000 Disposition-Notification-To: "Jon Longoria" X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG You figured it out too :) Thanks as well for the effort. ----- Original Message ----- From: "Manuel Enrique Garcia Cuesta" To: "Jon Longoria" Cc: ; Sent: Saturday, September 14, 2002 2:42 AM Subject: Re: Re: ';;' instead of 'fi' > > > === Jon Longoria escribía > (Sat, Sep 14, 2002 at 01:55:35AM -0500): > > > > > # Enable dumpdev so that savecore can see it. > > > > # /var/crash should be a directory or symbolic link > > > > # to the crash directory if core dumps are to be saved. > > > > if [ "${dumpdev}" != 'NO' ]; then > > > > case ${dumpdir} in > > > > '') > > > > dumpdir='/var/crash' > > > > ;; > > > > [Nn][Oo]) > > > > dumpdir='NO' > > > > ;; > > > > esac > > > > if [ "$[dumpdir]" != 'NO' ]; then > > > > echo -n 'Checking for core dump: ' > > > > /sbin/savecore ${savecore_flags} "${dumpdir}" > > > > fi > > > > ;; <===( +++ NOTE: LINE 427 +++ ) > > > > esac > > > > if [ -n "${network_pass1_done}" ]; then > > > > network_pass2 > > > > fi > > Both that ';;' and the 'esac' in the next line are misplaced > and should be out of there, and there should be some 'fi' instead. I > would wipe out those two offending bits and put fi in there, but I > wonder whether /etc/rc may be further messed up. > > Hope that helps > > Manuel García > > > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message