1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-27 21:29:02 +00:00
freebsd-ports/sysutils/clockspeed/files/clockspeed.sh.sample
Mario Sergio Fujikawa Ferreira 69feeee703 1) Install leapsecs.dat (leapseconds support)
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>
2001-05-25 14:58:06 +00:00

17 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