blob: 3bf79809abf938ab152f1179154390bb50603b8a [file] [log] [blame]
#!/bin/sh
NAME=lcr
set -e
case "$1" in
start)
/usr/sbin/lcr fork
echo "Forked LCR"
;;
stop)
echo "Can not stop it"
;;
*)
N=/etc/init.d/$NAME
echo "Usage: $N {start|stop|restart|force-reload}" >&2
exit 1
esac
exit 0