1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-15 07:56:36 +00:00
freebsd-ports/audio/fmio/files/bktrctl.sh
Maxim Sobolev 976aa0b236 Fix startup script and bump PORTREVISION.
Submitted by:	maintainer
2002-05-16 08:29:47 +00:00

24 lines
366 B
Bash

#!/bin/sh
if ! PREFIX=$(expr $0 : "\(/.*\)/etc/rc\.d/$(basename $0)\$"); then
echo "$0: Cannot determine the PREFIX" >&2
exit 1
fi
case "$1" in
start)
$PREFIX/bin/bktrctl 2>/dev/null >/dev/null && echo -n " bktrctl"
;;
stop)
/usr/bin/killall bktrctl && echo -n " bktrctl"
;;
*)
echo "Usage: `basename $0` {start|stop}" >&2
exit 64
;;
esac
exit 0