mirror of
https://git.busybox.net/buildroot.git
synced 2024-11-23 21:43:30 +08:00
6820ce4862
Open-source software for volunteer computing and grid computing. Use the idle time on your computer to cure diseases, study global warming, discover pulsars, and do many other types of scientific research. https://boinc.berkeley.edu Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> [Bernd: - bumped to version 7.8.3 - removed patches which where applied upstream - added myself to DEVELOPERS as well] Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
38 lines
514 B
Bash
38 lines
514 B
Bash
#!/bin/sh
|
|
|
|
NAME=boinc_client
|
|
PIDFILE=/var/run/$NAME.pid
|
|
DAEMON=/usr/bin/$NAME
|
|
|
|
start() {
|
|
printf "Starting $NAME: "
|
|
start-stop-daemon -S -q -m -b -p $PIDFILE --exec $DAEMON
|
|
[ $? = 0 ] && echo "OK" || echo "FAIL"
|
|
}
|
|
stop() {
|
|
printf "Stopping $NAME: "
|
|
start-stop-daemon -K -q -p $PIDFILE
|
|
[ $? = 0 ] && echo "OK" || echo "FAIL"
|
|
}
|
|
restart() {
|
|
stop
|
|
start
|
|
}
|
|
|
|
case "$1" in
|
|
start)
|
|
start
|
|
;;
|
|
stop)
|
|
stop
|
|
;;
|
|
restart|reload)
|
|
restart
|
|
;;
|
|
*)
|
|
echo "Usage: $0 {start|stop|restart|reload}"
|
|
exit 1
|
|
esac
|
|
|
|
exit $?
|