diff options
author | Wojtek Kosior <koszko@koszko.org> | 2024-04-07 14:58:33 +0200 |
---|---|---|
committer | W. Kosior <koszko@koszko.org> | 2025-02-06 16:38:38 +0100 |
commit | 9666b6a8c03bc7ecce607b8e43df5c071e4eb1ca (patch) | |
tree | 0b3b5ff71bb7b0e4c359e88ab4f22c0afa2bc644 /gnu | |
parent | 87d725ef715dcf1c54ee1c011f69257daf4ffe88 (diff) | |
download | guix-9666b6a8c03bc7ecce607b8e43df5c071e4eb1ca.tar.gz guix-9666b6a8c03bc7ecce607b8e43df5c071e4eb1ca.zip |
services: ldap: Fix exported name.
* gnu/services/ldap.scm (use-modules): Export `backend-userroot-configuration'
instead of non-existent `backend-configuration'.
Change-Id: I07c6d1c777bc42fa4afc3f23dc9d36080beb5bbc
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/services/ldap.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/services/ldap.scm b/gnu/services/ldap.scm index 49a33fac08..fe97a6b1f2 100644 --- a/gnu/services/ldap.scm +++ b/gnu/services/ldap.scm @@ -32,7 +32,7 @@ directory-server-instance-configuration slapd-configuration - backend-configuration)) + backend-userroot-configuration)) (define (uglify-field-name name) (let ((str (string-map (match-lambda |