blob: 7608d373c508197e627efa694399cf50d1bcbf93 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#!/bin/sh
# Script that starts the ns-slapd server.
# Exit status can be:
# 0: Server started successfully
# 1: Server could not be started
# 2: Server already running
@sbindir@/start-dirsrv {{SERV-ID}} "$@"
exit $?
|