We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2497c91 commit a4ef3a1Copy full SHA for a4ef3a1
.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 "numResponses" /tmp/test-write.txt | cut -d ":" -f 2 | tr -d ' ') -ne 9 ]; then cat /tmp/test-write.txt ; 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