From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.comp.sysutils.supervision.general/1704 Path: news.gmane.org!not-for-mail From: Charlie Brady Newsgroups: gmane.comp.sysutils.supervision.general Subject: Re: Help with chpst -e Date: Mon, 14 Apr 2008 10:16:05 -0400 (EDT) Message-ID: References: <20080414083428.GK20279@utopia.intra.guy> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Trace: ger.gmane.org 1208182999 11057 80.91.229.12 (14 Apr 2008 14:23:19 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Mon, 14 Apr 2008 14:23:19 +0000 (UTC) Cc: supervision@list.skarnet.org To: Robin Bowes Original-X-From: supervision-return-1939-gcsg-supervision=m.gmane.org@list.skarnet.org Mon Apr 14 16:23:34 2008 connect(): Connection refused Return-path: Envelope-to: gcsg-supervision@gmane.org Original-Received: from antah.skarnet.org ([212.85.147.14]) by lo.gmane.org with smtp (Exim 4.50) id 1JlPUG-0007Kf-Vt for gcsg-supervision@gmane.org; Mon, 14 Apr 2008 16:16:49 +0200 Original-Received: (qmail 20603 invoked by uid 76); 14 Apr 2008 14:16:30 -0000 Mailing-List: contact supervision-help@list.skarnet.org; run by ezmlm List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Archive: Original-Received: (qmail 20597 invoked from network); 14 Apr 2008 14:16:30 -0000 X-X-Sender: charlieb@e-smith.charlieb.ott.istop.com In-Reply-To: Xref: news.gmane.org gmane.comp.sysutils.supervision.general:1704 Archived-At: On Mon, 14 Apr 2008, Robin Bowes wrote: >> There is also another way, if you don't like the sh -c part: >> >> #!/bin/sh >> if [ "$1" = "have-env" ]; then >> exec chpst -u "$LOGUSER" svlogd -tt "$LOGDIR" \ >> else >> exec chpst -e ./env "$0" have-env >> fi > > Isn't that effectively doing the same thing, but without implicitly invoking > "sh -c" ? s/implicitly/explicitly/ Yes, that was my thought too. You run /bin/sh twice either way.