From owner-freebsd-stable Thu Sep 19 7:10: 8 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 D688437B401 for ; Thu, 19 Sep 2002 07:10:06 -0700 (PDT) Received: from wrzx35.rz.uni-wuerzburg.de (wrzx35.rz.uni-wuerzburg.de [132.187.3.35]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4D93A43E4A for ; Thu, 19 Sep 2002 07:10:05 -0700 (PDT) (envelope-from q@uni.de) Received: from wrzx34.rz.uni-wuerzburg.de (wrzx34.rz.uni-wuerzburg.de [132.187.3.34]) by wrzx35.rz.uni-wuerzburg.de (8.8.8/8.8.8/uniwue-MM-1.05) with ESMTP id QAA16745 for ; Thu, 19 Sep 2002 16:10:03 +0200 (MET DST) Received: from localhost (localhost [127.0.0.1]) by wrzx34.rz.uni-wuerzburg.de (Postfix) with ESMTP id 8AF5B2416B for ; Thu, 19 Sep 2002 16:10:03 +0200 (CEST) Received: from wrzx07.rz.uni-wuerzburg.de (wrzx07.rz.uni-wuerzburg.de [132.187.1.7]) by wrzx34.rz.uni-wuerzburg.de (Postfix) with ESMTP id 68F51237E9 for ; Thu, 19 Sep 2002 16:10:03 +0200 (CEST) Received: from frodo.galgenberg.net (galgenberg.net [132.187.222.250]) by wrzx07.rz.uni-wuerzburg.de (Postfix) with SMTP id 464CE3C3 for ; Thu, 19 Sep 2002 16:10:03 +0200 (CEST) Received: (qmail 59605 invoked from network); 19 Sep 2002 14:10:02 -0000 Received: from gb-007.galgenberg.net (HELO roadrunner) (@132.187.222.7) by galgenberg.net with SMTP; 19 Sep 2002 14:10:02 -0000 From: "Ulrich 'Q' Spoerlein" To: Odhiambo Washington Cc: freebsd-stable@freebsd.org Subject: Re: 4.7-PRERELEASE FAILING!! Date: Thu, 19 Sep 2002 16:10:07 +0200 Organization: Hier koennte Ihre Werbung stehen! Message-ID: References: <20020919115412.GB5415@ns2.wananchi.com> <5.1.0.14.0.20020919080934.0329de80@192.168.0.12> <20020919122039.GC5415@ns2.wananchi.com> <20020919125842.GE5415@ns2.wananchi.com> In-Reply-To: <20020919125842.GE5415@ns2.wananchi.com> X-Mailer: Forte Agent 1.91/32.564 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Virus-Scanned: by AMaViS (Rechenzentrum Universitaet Wuerzburg) 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 On Thu, 19 Sep 2002 15:58:43 +0300, you wrote: >> yes, "command1 & && command2" won't work any longer. please update your >> mysql ports as there are new startup scripts (or replace mysql & && echo >> mysql with mysql &; echo mysql) > >Where is this documented? I missed it. Is this relevant to 4.6 also? I find a problem, >for example this line: > >/usr/local/bin/safe_mysqld --user=mysql --log=/var/log/mysql.log > /dev/null && echo -n ' mysqld' > >On a 4.6 when I try the change you suggest, it complains about the ";", as in > >/usr/local/bin/safe_mysqld --user=mysql --log=/var/log/mysql.log > /dev/null &; echo -n ' mysqld' > >That is wrong isn't it? Moreso, when I change the & &&, then I cannot do ./mysql-server.sh start, >because then it doesn't detach from the tty..... AFAIR mysqld was started like this: safe_mysqld >/dev/null & && echo -n ' mysqld' which won't work anymore. instead use something like this: safe_mysqld & echo -n ' mysqld' or (safe_mysqld &);echo foo >All the scripts in there failed to start - ALL of them. >I have tpop3d.sh, exim.sh, proftppd.sh, apache.sh, drwebd.sh .. >I mean I have to start all of them manually :-( since mergemaster doesn't change anything in /usr/local/etc/ i think you made some mistakes at /etc/rc* please redo the merge with -s and update all the rc scripts. >THANK YOU SO MUCH for taking your time to see me through this. I am most grateful. the attached scripts should all work fine... To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message