69feeee703
2) Add PKGMESSAGE with additional FreeBSD specific installation information 3) Install sample startup script 4) Bump PORTREVISION due to (1) PR: 27617 Submitted by: Vivek Khera <khera@kciLink.com>
16 lines
173 B
Bash
16 lines
173 B
Bash
#!/bin/sh
|
|
|
|
PREFIX=/usr/local/
|
|
|
|
case "$1" in
|
|
start)
|
|
exec ${PREFIX}/bin/clockspeed &
|
|
exit 0
|
|
;;
|
|
stop)
|
|
;;
|
|
*)
|
|
echo "Usage: `basename $0` {start|stop}" >&2
|
|
exit 64
|
|
;;
|
|
esac
|