From mboxrd@z Thu Jan 1 00:00:00 1970 From: Danny Milosavljevic Subject: Re: weird errors Date: Sun, 14 Jan 2018 11:57:34 +0100 Message-ID: <20180114115734.44229e82@scratchpost.org> References: <87a7xhmpht.fsf@gnu.org> <20180114114346.78977872@scratchpost.org> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:43505) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1eafyy-0006hm-GR for guix-devel@gnu.org; Sun, 14 Jan 2018 05:57:45 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1eafyt-0007TS-LO for guix-devel@gnu.org; Sun, 14 Jan 2018 05:57:44 -0500 Received: from dd26836.kasserver.com ([85.13.145.193]:43912) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1eafyt-0007Rj-Cw for guix-devel@gnu.org; Sun, 14 Jan 2018 05:57:39 -0500 In-Reply-To: <20180114114346.78977872@scratchpost.org> List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: "Guix-devel" To: Catonano Cc: guix-devel On Sun, 14 Jan 2018 11:43:46 +0100 Danny Milosavljevic wrote: > Hi Catonano, > > On Sun, 14 Jan 2018 08:21:10 +0100 > Catonano wrote: > > > the line is supposed to be like > > > > TRYTOPASSILE = /path/to/some/passfile trytond-admin -c > > trytond-conf-file.conf > > > > that is > > > > TRYTOPASSILE = /gnu/store/some-hash-passfile > > /gnu/store/some-hash-trytond-admin -c > > /gnu/stor/some-hash-trytond-conf-file.conf > > That only works with a shell - and the spaces marked below break it: > > TRYTOPASSILE = /gnu/store/some-hash-passfile > ^ ^ > > You'd need to remove those. But even better instead do the following: > Fixed typo: I'd just call (setenv "TRYTOPASSILE" "/gnu/store/some-hash-passfile") instead of starting a whole shell (it's a waste and increases the attack surface for no reason to use a shell here). > > The problem seesm to be that a call to some .trytond-admin-real can't be > > satisfied > > I don't think so. Did you check via "ls -a" ? (files whose names start with a dot are otherwise hidden from output)