3
5
Fork 0
mirror of git://git.savannah.gnu.org/guix.git synced 2023-12-14 03:33:07 +01:00

gnu: slapd-configuration: Update default for run-dir.

* gnu/services/ldap.scm (slapd-configuration): Update default value for
run-dir to match defaults of 389-ds-base package.
* doc/guix.texi: Update documentation.
This commit is contained in:
Ricardo Wurmus 2022-12-14 22:56:00 +01:00
parent 1689215a30
commit 82c511dd54
No known key found for this signature in database
GPG key ID: 197A5888235FACAC
2 changed files with 2 additions and 2 deletions

View file

@ -29069,7 +29069,7 @@ Sets the lock directory of the instance.
@item @code{log-dir} (default: @code{"/var/log/dirsrv/slapd-@{instance_name@}"}) (type: string)
Sets the log directory of the instance.
@item @code{run-dir} (default: @code{"/var/run/dirsrv"}) (type: string)
@item @code{run-dir} (default: @code{"/run/dirsrv"}) (type: string)
Sets PID directory of the instance.
@item @code{schema-dir} (default: @code{"/etc/dirsrv/slapd-@{instance_name@}/schema"}) (type: string)

View file

@ -120,7 +120,7 @@ database.")
(string "/var/log/dirsrv/slapd-{instance_name}")
"Sets the log directory of the instance.")
(run-dir
(string "/var/run/dirsrv")
(string "/run/dirsrv")
"Sets PID directory of the instance.")
(schema-dir
(string "/etc/dirsrv/slapd-{instance_name}/schema")