summaryrefslogtreecommitdiffstats
path: root/meta/recipes-connectivity/connman/connman-0.56/connman
diff options
context:
space:
mode:
authorDongxiao Xu <dongxiao.xu@intel.com>2010-08-26 13:37:52 +0800
committerRichard Purdie <rpurdie@linux.intel.com>2010-08-27 15:46:55 +0100
commitca4a58a4eb66e6e08f358de7f8869a35389ee605 (patch)
tree915bdde88c353517b1763907ca41c02745635bc2 /meta/recipes-connectivity/connman/connman-0.56/connman
parentf6917ad47b0425f9ccb3965aa9220ed3ba0e49ec (diff)
downloadpoky-ca4a58a4eb66e6e08f358de7f8869a35389ee605.tar.gz
connman: Use connman as default network management tool
Upgrade connman to version 0.56 Modify connman-gnome to match the recent version of connman Deprecate networkmanager Signed-off-by: Dongxiao Xu <dongxiao.xu@intel.com>
Diffstat (limited to 'meta/recipes-connectivity/connman/connman-0.56/connman')
-rwxr-xr-xmeta/recipes-connectivity/connman/connman-0.56/connman42
1 files changed, 42 insertions, 0 deletions
diff --git a/meta/recipes-connectivity/connman/connman-0.56/connman b/meta/recipes-connectivity/connman/connman-0.56/connman
new file mode 100755
index 0000000000..f8154f68f9
--- /dev/null
+++ b/meta/recipes-connectivity/connman/connman-0.56/connman
@@ -0,0 +1,42 @@
1#!/bin/sh
2
3DAEMON=/usr/sbin/connmand
4PIDFILE=/var/run/connmand.pid
5DESC="Connection Manager"
6
7if [ -f /etc/default/connman ] ; then
8 . /etc/default/connman
9fi
10
11set -e
12
13do_start() {
14 $DAEMON
15}
16
17do_stop() {
18 start-stop-daemon --stop --name connmand --quiet
19}
20
21case "$1" in
22 start)
23 echo "Starting $DESC"
24 do_start
25 ;;
26 stop)
27 echo "Stopping $DESC"
28 do_stop
29 ;;
30 restart|force-reload)
31 echo "Restarting $DESC"
32 do_stop
33 sleep 1
34 do_start
35 ;;
36 *)
37 echo "Usage: $0 {start|stop|restart|force-reload}" >&2
38 exit 1
39 ;;
40esac
41
42exit 0