forked from Lainports/opnsense-ports
Taken from: https://github.com/freebsd/freebsd-ports.git Commit id: 5070672073b68be364139bc6b3a89100bd17d331
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
|