You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

64 lines
1.1 KiB
Bash

#! /bin/sh
### BEGIN INIT INFO
# Provides: ofono
# Required-Start: $syslog $remote_fs dbus
# Required-Stop: $syslog $remote_fs dbus
# Default-Start: 2 3 4 5
# Default-Stop: 0 1 6
# Short-Description: oFono Mobile Telephony Daemon
### END INIT INFO
PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin
DAEMON=/usr/sbin/ofonod
NAME=ofonod
#PIDFILE=/var/run/ofono/$NAME.pid
DESC="oFono Mobile Telephony Daemon"
test -x $DAEMON || exit 0
. /lib/lsb/init-functions
# allow the admin to set DAEMON_OPTS
if [ -f /etc/default/ofono ]; then
. /etc/default/ofono
fi
do_start()
{
start-stop-daemon --start --quiet --oknodo --exec $DAEMON -- $DAEMON_OPTS
}
do_stop()
{
start-stop-daemon --stop --quiet --oknodo --exec $DAEMON
}
case "$1" in
start)
log_daemon_msg "Starting $DESC" "$NAME"
do_start
log_end_msg $?
;;
stop)
log_daemon_msg "Stopping $DESC" "$NAME"
do_stop
log_end_msg $?
;;
restart|force-reload)
log_daemon_msg "Restarting $DESC" "$NAME"
do_stop
sleep 1
do_start
log_end_msg $?
;;
*)
log_success_msg "Usage: $0 {start|stop|restart|force-reload}"
exit 1
;;
esac
exit 0