Last change
on this file since 9 was 1, checked in by Paul Smedley, 10 years ago |
Initial commit of Heimdal 1.5.3
|
File size:
879 bytes
|
Line | |
---|
1 | #!/bin/sh
|
---|
2 | # $Id$
|
---|
3 |
|
---|
4 | srcdir=@srcdir@
|
---|
5 |
|
---|
6 | rm -rf db schema
|
---|
7 | mkdir db
|
---|
8 |
|
---|
9 | # kill of old slapd if running
|
---|
10 | sh ${srcdir}/slapd-stop > /dev/null
|
---|
11 |
|
---|
12 | SCHEMA_NEEDED="hdb core nis cosine inetorgperson openldap samba"
|
---|
13 |
|
---|
14 | SCHEMA_PATHS="${srcdir}/../../lib/hdb ${srcdir} /etc/ldap/schema /etc/openldap/schema /private/etc/openldap/schema /usr/share/openldap/schema"
|
---|
15 |
|
---|
16 | test -d schema || mkdir schema
|
---|
17 |
|
---|
18 | # setup needed schema files
|
---|
19 | for f in $SCHEMA_NEEDED; do
|
---|
20 | if [ ! -r schema/$f.schema ]; then
|
---|
21 | for d in $SCHEMA_PATHS ; do
|
---|
22 | if [ -r $d/$f.schema ] ; then
|
---|
23 | cp $d/$f.schema schema/$f.schema
|
---|
24 | continue 2
|
---|
25 | fi
|
---|
26 | done
|
---|
27 | echo "SKIPPING TESTS: you need the following schema file: $f.schema"
|
---|
28 | exit 1
|
---|
29 | fi
|
---|
30 | done
|
---|
31 |
|
---|
32 | touch modules.conf || exit 1
|
---|
33 |
|
---|
34 | slapadd -d 0 -f ${srcdir}/slapd.conf < ${srcdir}/init.ldif || exit 0
|
---|
35 |
|
---|
36 | echo "starting slapd"
|
---|
37 | slapd -d0 -f ${srcdir}/slapd.conf -h ldapi://.%2Fldap-socket &
|
---|
38 |
|
---|
39 | sleep 4
|
---|
Note:
See
TracBrowser
for help on using the repository browser.