1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-15 07:56:36 +00:00
freebsd-ports/databases/hk_classes/files/hk_classes.sh
Sergey Matveychuk e3ea92b343 - Update to 0.7.1
- Add SQLite2 support
- add startup file to run ldconfig
2004-11-06 17:38:23 +00:00

16 lines
186 B
Bash

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