summaryrefslogtreecommitdiffstats
path: root/net/openldap20/files/slapd.sh
blob: 08a215cd5ea83b3b945eb5b04212dc39cb3fd471 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
#!/bin/sh
#
# $FreeBSD$

slapd_program=@@PREFIX@@/libexec/slapd

# Uncomment one of the following:
#
# IPv4 Only
#slapd_args='-h ldap://0.0.0.0'
#
# IPv6 and IPv4
#slapd_ags='-h "ldap://[::] ldap://0.0.0.0"'
#
# IPv6 Only
#slapd_args='-h ldap://[::]'
#
# Add '-u ldap -g ldap' when you do not want to run
# slapd as root
#
slapd_args=

pidfile=@@LDAP_RUN_DIR@@/slapd.pid

case "$1" in
start)
    if [ -x ${slapd_program} ]; then
	echo -n ' slapd'
	eval ${slapd_program} ${slapd_args}

    fi
    ;;
stop)
    if [ -f $pidfile ]; then
	kill `cat $pidfile`
	telnet localhost ldap </dev/null >/dev/null 2>&1
	echo -n ' slapd'
	rm $pidfile
    else
	echo ' slapd: not running'
    fi
    ;;
*)
    echo "Usage: `basename $0` {start|stop}" >&2
    exit 64
    ;;
esac

exit 0
OpenPOWER on IntegriCloud