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