mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 05:18:07 -05:00
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.
This commit is contained in:
parent
89af95313d
commit
868d8068a0
1 changed files with 2 additions and 2 deletions
|
@ -84,7 +84,7 @@ (define marionette
|
||||||
config_version = 2
|
config_version = 2
|
||||||
|
|
||||||
\n[slapd]
|
\n[slapd]
|
||||||
root_password = SECRET
|
root_password = SECRET_PASS
|
||||||
user = root
|
user = root
|
||||||
group = root
|
group = root
|
||||||
|
|
||||||
|
@ -112,7 +112,7 @@ (define marionette
|
||||||
(marionette-eval
|
(marionette-eval
|
||||||
'(zero? (system* #$(file-append openldap "/bin/ldapwhoami")
|
'(zero? (system* #$(file-append openldap "/bin/ldapwhoami")
|
||||||
"-H" "ldap://localhost" "-D"
|
"-H" "ldap://localhost" "-D"
|
||||||
"cn=Directory Manager" "-w" "SECRET"))
|
"cn=Directory Manager" "-w" "SECRET_PASS"))
|
||||||
marionette))
|
marionette))
|
||||||
|
|
||||||
;; Wait for nslcd to be up and running.
|
;; Wait for nslcd to be up and running.
|
||||||
|
|
Loading…
Reference in a new issue