Contact:[email protected]
#!/sbin/sh
#
case "$1" in
'start')
/opt/netscape/mail/slapd-phillip/start-slapd
;;
'stop')
/opt/netscape/mail/slapd-phillip/stop-slapd
;;
*)
echo "Usage: $0 { start | stop }"
exit 1
;;
esac
exit 0
Back to the Index