ports/sysutils/lcdproc/files/LCDd.sh.sample
Edwin Groothuis 8737b590fa Undo damage done by check if the SED could have been replaced by a
REINPLACE. Thanks to Patrick Li for spotting this.
2002-10-29 05:08:48 +00:00

18 lines
251 B
Bash

#!/bin/sh
case "$1" in
start)
%%PREFIX%%/bin/LCDd -c %%PREFIX%%/etc/LCDd.conf
echo -n " drm-kmod"
;;
stop)
killall LCDd
echo -n " drm-kmod"
;;
*)
echo ""
echo "Usage: `basename $0` { start | stop }"
echo ""
exit 64
;;
esac