Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merge upstream #1

Open
wants to merge 37 commits into
base: master
Choose a base branch
from
Open
Changes from 2 commits
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
db2163d
fixes #9: Add SSL port to example
guusdk Nov 2, 2020
2b20ced
Merge pull request #19 from guusdk/9_fix-example
rroemhild Nov 2, 2020
b68725e
Fix password for user Amy. Fixes #20
rroemhild Jan 3, 2021
6e6a3c0
Clean slapd shutdown. Fixes #13
rroemhild Jan 3, 2021
b82f1b7
Update to buster and docker best practices. This may break your tests!
rroemhild Jan 3, 2021
d1065e5
Fix build init script
rroemhild Jan 3, 2021
fa3f528
Fix ldap listen interface
Chocobozzz Jan 4, 2021
0671358
Revert port change. Breaks CI for to much people
rroemhild Jan 4, 2021
e170796
Merge branch 'master' into master
rroemhild Jan 4, 2021
efc815d
Merge pull request #21 from Chocobozzz/master
rroemhild Jan 4, 2021
adb4650
Use unprivileged ports
rroemhild Jan 4, 2021
fc2ad68
Re-add PR #14: add_config_admin_pw
rroemhild Jan 4, 2021
88c9115
Update README
rroemhild Jan 4, 2021
b2a6d03
Add changelog and update readme
rroemhild Jan 4, 2021
3d2df86
escaping reserved sed characters
karloie Feb 2, 2021
97772d7
Merge pull request #25 from karloie/master
rroemhild Feb 4, 2021
2010751
add HEALTHCHECK
elad-eyal Feb 6, 2021
e1ae203
Merge pull request #26 from eladeyal-intel/patch-1
rroemhild Feb 8, 2021
d96189b
Update shields.io docker build status URL
rroemhild Mar 9, 2021
92e928d
Add links to docker hub in README
Mar 11, 2021
5448206
Merge pull request #27 from LorenzHenk/patch-1
rroemhild Mar 11, 2021
c61f87e
working container. Made it very easy to dynamically enable/disable st…
AnalogJ Jun 12, 2021
2f80ce6
making sure we can completely customize the users DN and email. pre-r…
AnalogJ Jun 12, 2021
f3ffad8
working custom certificates from Letsencrypt.
AnalogJ Jun 12, 2021
31dcfc6
Create docker-publish.yml
AnalogJ Jun 12, 2021
91f1f04
Update README.md
AnalogJ Jun 13, 2021
414d3df
fixes for PR.
AnalogJ Jul 20, 2021
612b622
change README.md back to rroemhild/test-openldap
AnalogJ Jul 20, 2021
f9e5ef6
Merge pull request #32 from AnalogJ/master
rroemhild Aug 11, 2021
1b79ea9
Adjusted `userProvider` in example `login.config` file
rbarbey Aug 24, 2021
080e00d
Merge pull request #35 from rbarbey/docs-login-config
rroemhild Aug 27, 2021
657d012
Fix #42
IngmarPaetzold Sep 12, 2023
90584b4
Fix #49
IngmarPaetzold Sep 12, 2023
c530409
Merge pull request #50 from IngmarPaetzold/master
rroemhild Sep 16, 2023
2645f21
Update README.md
rroemhild Sep 16, 2023
38c28fe
Remove extra cn= in cn=Bender Bending Rodriguez
manics Oct 6, 2024
002ff7b
Merge pull request #57 from manics/patch-1
rroemhild Oct 7, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions bootstrap/slapd-init.sh
Original file line number Diff line number Diff line change
@@ -69,6 +69,7 @@ configure_msad_features(){
configure_admin_config_pw(){
echo "Configure admin config password..."
adminpw=$(slappasswd -h {SSHA} -s "${LDAP_SECRET}")
adminpw=$(printf '%s\n' "$adminpw" | sed -e 's/[\/&]/\\&/g')
sed -i s/ADMINPW/${adminpw}/g ${CONFIG_DIR}/configadminpw.ldif
ldapmodify -Y EXTERNAL -H ldapi:/// -f ${CONFIG_DIR}/configadminpw.ldif -Q
}