mirror of
https://github.com/kakwa/ldapcherry
synced 2024-11-22 09:24:21 +01:00
12 lines
512 B
Bash
Executable File
12 lines
512 B
Bash
Executable File
#!/bin/sh
|
|
|
|
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
|
|
|
|
chown -R openldap:openldap /etc/ldap/
|
|
/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
|