guix-commits
[Top][All Lists]
Advanced

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

07/19: services: postgresql: Add default package.


From: guix-commits
Subject: 07/19: services: postgresql: Add default package.
Date: Fri, 21 Apr 2023 11:16:09 -0400 (EDT)

civodul pushed a commit to branch master
in repository guix.

commit e45306c1982aee194243cf661295c7ca776d879f
Author: Ludovic Courtès <ludo@gnu.org>
AuthorDate: Thu Apr 20 10:38:37 2023 +0200

    services: postgresql: Add default package.
    
    * gnu/services/databases.scm (<postgresql-configuration>)[postgresql]:
    Add default value, moved from...
    (postgresql-service-type)[default-value]: ... here.
---
 gnu/services/databases.scm | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/gnu/services/databases.scm b/gnu/services/databases.scm
index 0cbd83254b..e8e42d3b7b 100644
--- a/gnu/services/databases.scm
+++ b/gnu/services/databases.scm
@@ -167,7 +167,8 @@ host        all     all     ::1/128         md5"))
 (define-record-type* <postgresql-configuration>
   postgresql-configuration make-postgresql-configuration
   postgresql-configuration?
-  (postgresql         postgresql-configuration-postgresql) ;file-like
+  (postgresql         postgresql-configuration-postgresql ;file-like
+                      (default postgresql-10))
   (port               postgresql-configuration-port
                       (default 5432))
   (locale             postgresql-configuration-locale
@@ -330,8 +331,7 @@ host        all     all     ::1/128         md5"))
           (service-extension
            profile-service-type
            (compose list postgresql-configuration-postgresql))))
-   (default-value (postgresql-configuration
-                   (postgresql postgresql-10)))
+   (default-value (postgresql-configuration))
    (description "Run the PostgreSQL database server.")))
 
 (define-deprecated (postgresql-service #:key (postgresql postgresql)



reply via email to

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