We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a4ef3a1 commit ba34392Copy full SHA for ba34392
.github/workflows/ci.yml
@@ -76,7 +76,7 @@ jobs:
76
echo "Write test to openldap database"
77
LDAPTLS_REQCERT=never ldapadd -x -D 'cn=admin,dc=example,dc=org' -w Not@SecurePassw0rd -H ldaps://localhost:30636 -f .bin/user.ldif
78
LDAPTLS_REQCERT=never ldapsearch -o nettimeout=20 -x -D 'cn=admin,dc=example,dc=org' -w Not@SecurePassw0rd -H ldaps://localhost:30636 -b 'dc=example,dc=org' > /tmp/test-write.txt
79
- if [ ! $(grep -q "Einstein" /tmp/test-write.txt ]; then exit 1 ; fi
+ if [ ! $(grep -q "Einstein" /tmp/test-write.txt) ]; then exit 1 ; fi
80
if ! grep -q "objectClass: ownCloud" /tmp/test-write.txt; then echo exit 1; fi
81
- name: test memberOf
82
shell: bash
0 commit comments