From mboxrd@z Thu Jan 1 00:00:00 1970 From: Leo Famulari Subject: bug#22618: syntax error in postgresql default config Date: Wed, 10 Feb 2016 15:50:20 -0500 Message-ID: <20160210205020.GA28413@jasmine> References: <20160210195343.197649ef@scratchpost.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:34782) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aTbj9-0006si-Nu for bug-guix@gnu.org; Wed, 10 Feb 2016 15:51:08 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aTbj5-0003ne-G6 for bug-guix@gnu.org; Wed, 10 Feb 2016 15:51:07 -0500 Received: from debbugs.gnu.org ([208.118.235.43]:54434) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aTbj4-0003n1-7Y for bug-guix@gnu.org; Wed, 10 Feb 2016 15:51:03 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84) (envelope-from ) id 1aTbj4-0001kX-31 for bug-guix@gnu.org; Wed, 10 Feb 2016 15:51:02 -0500 Sender: "Debbugs-submit" Resent-To: bug-guix@gnu.org Resent-Message-ID: Content-Disposition: inline In-Reply-To: <20160210195343.197649ef@scratchpost.org> List-Id: Bug reports for GNU Guix List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: bug-guix-bounces+gcggb-bug-guix=m.gmane.org@gnu.org Sender: bug-guix-bounces+gcggb-bug-guix=m.gmane.org@gnu.org To: Danny Milosavljevic Cc: 22618-done@debbugs.gnu.org On Wed, Feb 10, 2016 at 07:53:43PM +0100, Danny Milosavljevic wrote: > Package: guix > Version: git from an hour ago > > The default postgresql config file contains: > hba_file = '/gnu/store/2pnrdnasjxjr8zmnvhk9ypw2vdl00cks-pg_hba.conf' > ident_file = '/gnu/store/b4cm2bk8kz8brjcgpwrafxfvxcy35vz9-pg_ident.conf > > Note missing end-quote. > > The reason is: gnu/services/databases.scm contains: > > (define %default-postgres-config > (mixed-text-file "postgresql.conf" > "hba_file = '" %default-postgres-hba "'\n" > "ident_file = '" %default-postgres-ident "\n")) > > Note missing end-quote. Fixed in 8823ed4e12960a6f6c0e9fa2775feecaa6f10a9b. Thanks for the report!