aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWojtek Kosior <koszko@koszko.org>2024-04-12 19:14:15 +0200
committerW. Kosior <koszko@koszko.org>2025-05-26 14:07:25 +0200
commit08aece7e3c678a8fcdac708e4949ad234f8e863b (patch)
treeb0036951b414f4bbefabcd9e3107264550e6a466
parent62b67783e0c2b826f7e19b313da3815fe98d0cd8 (diff)
downloadguix-08aece7e3c678a8fcdac708e4949ad234f8e863b.tar.gz
guix-08aece7e3c678a8fcdac708e4949ad234f8e863b.zip
services: ldap: Increase pid file timeout for 389-ds.
* gnu/services/ldap.scm (directory-server-shepherd-service): Add `#:pid-file-timeout 30`. Change-Id: Ie7b3a7c7347b53d4e3629ef2de53c3a76f6751c0
-rw-r--r--gnu/services/ldap.scm3
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/services/ldap.scm b/gnu/services/ldap.scm
index fcd9daf6d7..3edf4830a5 100644
--- a/gnu/services/ldap.scm
+++ b/gnu/services/ldap.scm
@@ -236,7 +236,8 @@ whether systemd is installed.")
#:pid-file
(string-append
#$(slapd-configuration-run-dir slapd)
- "/slapd-" #$instance-name ".pid")))
+ "/slapd-" #$instance-name ".pid")
+ #:pid-file-timeout 30))
(stop #~(make-kill-destructor))))))
(define (directory-server-accounts config)