Kaynağa Gözat

fixes Startup issue with 1.2.3 #283

Bertrand Gouny 6 yıl önce
ebeveyn
işleme
7a2797cc89
2 değiştirilmiş dosya ile 2 ekleme ve 0 silme
  1. 1 0
      CHANGELOG.md
  2. 1 0
      test/test.bats

+ 1 - 0
CHANGELOG.md

@@ -7,6 +7,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
 ## [1.2.4] - Unreleased
 ### Fixed
   - Excessive RAM usage on 1.2.2, increased 10x from 1.2.1 #242
+  - Startup issue with 1.2.3 #283
 
 ## [1.2.3] - 2019-01-21
 10M+ docker pulls 🎉🎉🎉 thanks to all contributors 💕

+ 1 - 0
test/test.bats

@@ -30,6 +30,7 @@ load test_helper
   LDAP_CID=$(docker run -h ldap.example.org -e LDAP_TLS=false --volume $PWD/VOLUMES/database:/var/lib/ldap --volume $PWD/VOLUMES/config:/etc/ldap/slapd.d -d $NAME:$VERSION)
   wait_process_by_cid $LDAP_CID slapd
   run docker exec $LDAP_CID ldapsearch -x -h ldap.example.org -b dc=example,dc=org -D "cn=admin,dc=example,dc=org" -w admin
+  run docker exec $LDAP_CID chown -R $UID:$UID /var/lib/ldap /etc/ldap/slapd.d
   docker kill $LDAP_CID
   rm -rf VOLUMES