guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

01/01: gnu: Fix syntax error in postgresql-service.


From: Leo Famulari
Subject: 01/01: gnu: Fix syntax error in postgresql-service.
Date: Wed, 10 Feb 2016 20:35:19 +0000

lfam pushed a commit to branch master
in repository guix.

commit 8823ed4e12960a6f6c0e9fa2775feecaa6f10a9b
Author: Leo Famulari <address@hidden>
Date:   Wed Feb 10 15:12:22 2016 -0500

    gnu: Fix syntax error in postgresql-service.
    
    Fixes <http://bugs.gnu.org/22618>.
    Reported by Danny Milosavljevic <address@hidden>.
    
    * gnu/services/databases.scm (%default-postgres-config): Add missing
    quote in default configuration.
---
 gnu/services/databases.scm |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/gnu/services/databases.scm b/gnu/services/databases.scm
index 8b14201..6c3b829 100644
--- a/gnu/services/databases.scm
+++ b/gnu/services/databases.scm
@@ -1,6 +1,7 @@
 ;;; GNU Guix --- Functional package management for GNU
 ;;; Copyright © 2015 David Thompson <address@hidden>
 ;;; Copyright © 2015 Ludovic Courtès <address@hidden>
+;;; Copyright © 2016 Leo Famulari <address@hidden>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -56,7 +57,7 @@ host  all     all     ::1/128         trust"))
 (define %default-postgres-config
   (mixed-text-file "postgresql.conf"
                    "hba_file = '" %default-postgres-hba "'\n"
-                   "ident_file = '" %default-postgres-ident "\n"))
+                   "ident_file = '" %default-postgres-ident "'\n"))
 
 (define %postgresql-accounts
   (list (user-group (name "postgres") (system? #t))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]