forked from Lainports/freebsd-ports
This allows mrproject and its API to survive reboots. Reported by: olgeni Adapted from: databases/mysql323-client
16 lines
259 B
Bash
16 lines
259 B
Bash
#!/bin/sh
|
|
|
|
case "$1" in
|
|
start)
|
|
/sbin/ldconfig -m %%PREFIX%%/lib/mrproject/file-modules
|
|
/sbin/ldconfig -m %%PREFIX%%/lib/mrproject/storage-modules
|
|
;;
|
|
stop)
|
|
;;
|
|
*)
|
|
echo ""
|
|
echo "Usage: `basename $0` { start | stop }"
|
|
echo ""
|
|
exit 64
|
|
;;
|
|
esac
|