1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-03 06:04:53 +00:00
freebsd-ports/databases/mysql323-server/files/mysql-client.sh
Dirk Froemberg 0a2fa4a15a Move mysql-client.sh from Makefile to files/mysql-client.sh
and add a start/stop parameter to satisfy rc.shutdown.
2000-11-16 10:29:06 +00:00

16 lines
181 B
Bash

#!/bin/sh
case "$1" in
start)
/sbin/ldconfig -m %%PREFIX%%/lib/mysql
;;
stop)
;;
*)
echo ""
echo "Usage: `basename $0` { start | stop }"
echo ""
exit 64
;;
esac