#! /bin/sh # # fsotdld -- This shell script starts and stops the FSO2 device subsystem daemon. # # chkconfig: 345 90 20 # description: fsotdld is the freesmartphone.org FSO2 time and location daemon # processname: fsotdld PATH=/bin:/usr/bin:/sbin:/usr/sbin NAME=fsotdld [ -f /etc/default/rcS ] && . /etc/default/rcS case "$1" in start) echo -n "Starting fsotdld: " start-stop-daemon --start --pidfile /var/run/${NAME}.pid --make-pidfile --background -x /usr/sbin/fsotdld if [ $? = 0 ]; then echo "(ok)" else echo "(failed)" fi ;; stop) echo -n "Stopping fsotdld: " start-stop-daemon --stop --pidfile /var/run/${NAME}.pid --oknodo rm -f /var/run/${NAME}.pid echo "(done)" ;; restart|force-reload) $0 stop $0 start ;; *) echo "Usage: /etc/init.d/fsotdld {start|stop|restart|force-reload}" exit 1 ;; esac exit 0