f5b14df110
Sometimes it is useful to pass some parameters to ModemManager when it starts (e.g. --log-level). Allow the user add a file with such flags in a MODEMMANAGER_ARGS variable. This is simpler than overriding the whole startup script (e.g. by means of a rootfs overlay). Signed-off-by: Carlos Santos <casantos@datacom.ind.br> Acked-by: Petr Vorel <petr.vorel@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
44 lines
707 B
Bash
Executable File
44 lines
707 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# Starts ModemManager
|
|
#
|
|
|
|
# Allow a few customizations from a config file
|
|
test -r /etc/default/ModemManager && . /etc/default/ModemManager
|
|
|
|
PIDFILE=/var/run/ModemManager.pid
|
|
|
|
start() {
|
|
printf "Starting ModemManager: "
|
|
umask 077
|
|
start-stop-daemon -S -q -b -m -p $PIDFILE \
|
|
--exec /usr/sbin/ModemManager -- $MODEMMANAGER_ARGS
|
|
[ $? = 0 ] && echo "OK" || echo "FAIL"
|
|
}
|
|
stop() {
|
|
printf "Stopping ModemManager: "
|
|
start-stop-daemon -K -q -p $PIDFILE
|
|
[ $? = 0 ] && { echo "OK"; rm -f $PIDFILE; } || echo "FAIL"
|
|
}
|
|
restart() {
|
|
stop
|
|
start
|
|
}
|
|
|
|
case "$1" in
|
|
start)
|
|
start
|
|
;;
|
|
stop)
|
|
stop
|
|
;;
|
|
restart|reload)
|
|
restart
|
|
;;
|
|
*)
|
|
echo "Usage: $0 {start|stop|restart}"
|
|
exit 1
|
|
esac
|
|
|
|
exit $ret
|