1#!/bin/sh
2
3PREFIX=/usr/local
4
5case "$1" in
6start)
7	exec ${PREFIX}/bin/clockspeed &
8	exit 0
9	;;
10stop)
11	;;
12*)
13	echo "Usage: `basename $0` {start|stop}" >&2
14	exit 64
15	;;
16esac
17