The cirros image was rebuilt against the 3.13.0-83 kernel, drivers e1000e, igbvf...
[packages/trusty/cirros-testvm.git] / cirros-testvm / src-cirros / buildroot-2015.05 / package / ofono / S46ofono
1 #!/bin/sh
2
3 case "$1" in
4         start)
5                 echo -n "Starting ofono ... "
6                 start-stop-daemon -S -q -m -b -p /var/run/ofonod.pid --exec /usr/sbin/ofonod -- -n
7                 echo "done."
8                 ;;
9         stop)
10                 echo -n "Stopping ofono ..."
11                 start-stop-daemon -K -q -p /var/run/ofonod.pid
12                 echo "done."
13                 ;;
14         restart)
15                 $0 stop
16                 sleep 1
17                 $0 start
18                 ;;
19         *)
20                 echo "usage: $0 {start|stop|restart}"
21                 ;;
22 esac