From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mp1 ([2001:41d0:2:4a6f::]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) by ms11 with LMTPS id OOakCglhBWCKOwAA0tVLHw (envelope-from ) for ; Mon, 18 Jan 2021 10:20:57 +0000 Received: from aspmx1.migadu.com ([2001:41d0:2:4a6f::]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) by mp1 with LMTPS id 2HFVBglhBWDdVwAAbx9fmQ (envelope-from ) for ; Mon, 18 Jan 2021 10:20:57 +0000 Received: from lists.gnu.org (lists.gnu.org [209.51.188.17]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by aspmx1.migadu.com (Postfix) with ESMTPS id CDD7094042F for ; Mon, 18 Jan 2021 10:20:56 +0000 (UTC) Received: from localhost ([::1]:44338 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1l1ReZ-00081p-PD for larch@yhetil.org; Mon, 18 Jan 2021 05:20:55 -0500 Received: from eggs.gnu.org ([2001:470:142:3::10]:33206) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1l1Rbr-0005xA-3r for guix-patches@gnu.org; Mon, 18 Jan 2021 05:18:08 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:34876) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.90_1) (envelope-from ) id 1l1Rbn-0006kZ-3w for guix-patches@gnu.org; Mon, 18 Jan 2021 05:18:06 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1l1Rbm-0005KO-VR for guix-patches@gnu.org; Mon, 18 Jan 2021 05:18:02 -0500 X-Loop: help-debbugs@gnu.org Subject: [bug#45860] [PATCH v2 4/5] services: postgresql: Wrap long lines. Resent-From: Mathieu Othacehe Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Mon, 18 Jan 2021 10:18:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 45860 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: To: 45860@debbugs.gnu.org Received: via spool by 45860-submit@debbugs.gnu.org id=B45860.161096502820378 (code B ref 45860); Mon, 18 Jan 2021 10:18:02 +0000 Received: (at 45860) by debbugs.gnu.org; 18 Jan 2021 10:17:08 +0000 Received: from localhost ([127.0.0.1]:46414 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1l1Rau-0005IV-7s for submit@debbugs.gnu.org; Mon, 18 Jan 2021 05:17:08 -0500 Received: from eggs.gnu.org ([209.51.188.92]:39586) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1l1Ran-0005HB-R8 for 45860@debbugs.gnu.org; Mon, 18 Jan 2021 05:17:03 -0500 Received: from fencepost.gnu.org ([2001:470:142:3::e]:52247) by eggs.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1l1Rai-0006EH-N1; Mon, 18 Jan 2021 05:16:56 -0500 Received: from [2a01:e0a:19b:d9a0:1538:87ab:3a95:7600] (port=55432 helo=localhost.localdomain) by fencepost.gnu.org with esmtpsa (TLS1.2:DHE_RSA_AES_256_CBC_SHA1:256) (Exim 4.82) (envelope-from ) id 1l1Rah-0001QJ-Qz; Mon, 18 Jan 2021 05:16:56 -0500 From: Mathieu Othacehe Date: Mon, 18 Jan 2021 11:16:27 +0100 Message-Id: <20210118101628.202607-5-othacehe@gnu.org> X-Mailer: git-send-email 2.29.2 In-Reply-To: <20210118101628.202607-1-othacehe@gnu.org> References: <20210118101628.202607-1-othacehe@gnu.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list X-BeenThere: guix-patches@gnu.org List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Mathieu Othacehe Errors-To: guix-patches-bounces+larch=yhetil.org@gnu.org Sender: "Guix-patches" X-Migadu-Flow: FLOW_IN X-Migadu-Spam-Score: 3.64 Authentication-Results: aspmx1.migadu.com; dkim=none; dmarc=pass (policy=none) header.from=gnu.org; spf=pass (aspmx1.migadu.com: domain of guix-patches-bounces@gnu.org designates 209.51.188.17 as permitted sender) smtp.mailfrom=guix-patches-bounces@gnu.org X-Migadu-Queue-Id: CDD7094042F X-Spam-Score: 3.64 X-Migadu-Scanner: scn1.migadu.com X-TUID: zncIz9sC7pDm * gnu/services/databases.scm: Wrap long lines, no functional change. --- gnu/services/databases.scm | 32 +++++++++++++++++++------------- 1 file changed, 19 insertions(+), 13 deletions(-) diff --git a/gnu/services/databases.scm b/gnu/services/databases.scm index c387a7da6c..0d60616156 100644 --- a/gnu/services/databases.scm +++ b/gnu/services/databases.scm @@ -194,7 +194,9 @@ host all all ::1/128 md5")) #:builder (begin (use-modules (guix build utils) (guix build union) (srfi srfi-26)) - (union-build (assoc-ref %outputs "out") (map (lambda (input) (cdr input)) %build-inputs)) + (union-build (assoc-ref %outputs "out") + (map (lambda (input) (cdr input)) + %build-inputs)) #t))) (inputs `(("postgresql" ,postgresql) @@ -306,25 +308,29 @@ host all all ::1/128 md5")) (stop (action "stop")))))))) (define postgresql-service-type - (service-type (name 'postgresql) - (extensions - (list (service-extension shepherd-root-service-type - postgresql-shepherd-service) - (service-extension activation-service-type - postgresql-activation) - (service-extension account-service-type - (const %postgresql-accounts)) - (service-extension profile-service-type - (compose list postgresql-configuration-postgresql)))))) + (service-type + (name 'postgresql) + (extensions + (list (service-extension shepherd-root-service-type + postgresql-shepherd-service) + (service-extension activation-service-type + postgresql-activation) + (service-extension account-service-type + (const %postgresql-accounts)) + (service-extension + profile-service-type + (compose list postgresql-configuration-postgresql)))))) (define-deprecated (postgresql-service #:key (postgresql postgresql) (port 5432) (locale "en_US.utf8") (config-file (postgresql-config-file)) - (data-directory "/var/lib/postgresql/data") + (data-directory + "/var/lib/postgresql/data") (extension-packages '())) postgresql-service-type - "Return a service that runs @var{postgresql}, the PostgreSQL database server. + "Return a service that runs @var{postgresql}, the PostgreSQL database +server. The PostgreSQL daemon loads its runtime configuration from @var{config-file} and stores the database cluster in @var{data-directory}." -- 2.29.2