summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorMathieu Othacehe <othacehe@gnu.org>2021-04-18 10:31:59 +0200
committerMathieu Othacehe <othacehe@gnu.org>2021-04-18 10:31:59 +0200
commit868d8068a0b0ea985c6f8d28cb7a436c96bd4de5 (patch)
treef060edfeb3a9c7895935168703a38a2d6e084b96 /gnu
parent89af95313d031e1a8a57c6a10f20a636884872b5 (diff)
tests: ldap: Fix it.
Fixes: <https://issues.guix.gnu.org/47745>. * gnu/tests/ldap.scm (run-ldap-test): Use a password with more that 8 characters so that dscreate doesn't fail.
Diffstat (limited to 'gnu')
-rw-r--r--gnu/tests/ldap.scm4
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/tests/ldap.scm b/gnu/tests/ldap.scm
index 2d4f15fb3c4..197c1bfb282 100644
--- a/gnu/tests/ldap.scm
+++ b/gnu/tests/ldap.scm
@@ -84,7 +84,7 @@
84config_version = 2 84config_version = 2
85 85
86\n[slapd] 86\n[slapd]
87root_password = SECRET 87root_password = SECRET_PASS
88user = root 88user = root
89group = root 89group = root
90 90
@@ -112,7 +112,7 @@ suffix = dc=example,dc=com")))
112 (marionette-eval 112 (marionette-eval
113 '(zero? (system* #$(file-append openldap "/bin/ldapwhoami") 113 '(zero? (system* #$(file-append openldap "/bin/ldapwhoami")
114 "-H" "ldap://localhost" "-D" 114 "-H" "ldap://localhost" "-D"
115 "cn=Directory Manager" "-w" "SECRET")) 115 "cn=Directory Manager" "-w" "SECRET_PASS"))
116 marionette)) 116 marionette))
117 117
118 ;; Wait for nslcd to be up and running. 118 ;; Wait for nslcd to be up and running.