From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.comp.sysutils.supervision.general/1700 Path: news.gmane.org!not-for-mail From: Andras Korn Newsgroups: gmane.comp.sysutils.supervision.general Subject: Re: Help with chpst -e Date: Mon, 14 Apr 2008 10:34:29 +0200 Message-ID: <20080414083428.GK20279@utopia.intra.guy> References: NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-2 X-Trace: ger.gmane.org 1208162087 31588 80.91.229.12 (14 Apr 2008 08:34:47 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Mon, 14 Apr 2008 08:34:47 +0000 (UTC) To: supervision@list.skarnet.org Original-X-From: supervision-return-1935-gcsg-supervision=m.gmane.org@list.skarnet.org Mon Apr 14 10:35:22 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 1JlK9g-00087E-9c for gcsg-supervision@gmane.org; Mon, 14 Apr 2008 10:35:12 +0200 Original-Received: (qmail 18765 invoked by uid 76); 14 Apr 2008 08:34:52 -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 18760 invoked from network); 14 Apr 2008 08:34:51 -0000 Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.16 (2007-06-11) Xref: news.gmane.org gmane.comp.sysutils.supervision.general:1700 Archived-At: On Mon, Apr 14, 2008 at 12:52:25AM +0100, Robin Bowes wrote: > Robin Bowes wrote: >> Hi, >> Is it possible to set vars using "chpst -e" and then use those vars later >> in the same command line? > > Answer: yes it is. > > This works: > > #!/bin/sh > exec \ > chpst -e ./env sh -c ' > chpst -u ${LOGUSER} \ > svlogd -tt ${LOGDIR} > ' > > LOGUSER and LOGDIR are set in ./env 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 Andras -- Andras Korn QOTD: Thank you for holding your breath while I smoke.