mirror of
https://github.com/kakwa/ldapcherry
synced 2024-11-11 20:18:52 +01:00
12 lines
527 B
Bash
Executable File
12 lines
527 B
Bash
Executable File
#!/bin/sh
|
|
|
|
sudo rsync -a `dirname $0`/ /
|
|
cd `dirname $0`/../../
|
|
sudo sed -i "s%template_dir.*%template_dir = '`pwd`/resources/templates/'%" /etc/ldapcherry/ldapcherry.ini
|
|
sudo sed -i "s%tools.staticdir.dir.*%tools.staticdir.dir = '`pwd`/resources/static/'%" /etc/ldapcherry/ldapcherry.ini
|
|
|
|
sudo chown -R openldap:openldap /etc/ldap/
|
|
sudo /etc/init.d/slapd restart
|
|
ldapadd -H ldap://localhost -x -D "cn=admin,dc=example,dc=org" -f /etc/ldap/content.ldif -w password
|
|
sed -i "s/\(127.0.0.1.*\)/\1 ldap.ldapcherry.org/" /etc/hosts
|