From: Marcel Holtmann Date: Mon, 7 Apr 2008 02:26:38 +0000 (+0200) Subject: Add simple script to show the master state X-Git-Tag: 2.0_alpha~4856 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=7a2572623c022fd36f6e34f33d47fa90b479a5c0;p=framework%2Fconnectivity%2Fconnman.git Add simple script to show the master state --- diff --git a/test/Makefile.am b/test/Makefile.am index 21ceba6..d563812 100644 --- a/test/Makefile.am +++ b/test/Makefile.am @@ -1,5 +1,5 @@ EXTRA_DIST = list-interfaces start-scanning select-network simple-agent \ - show-introspection test-supplicant + get-state show-introspection test-supplicant MAINTAINERCLEANFILES = Makefile.in diff --git a/test/get-state b/test/get-state new file mode 100755 index 0000000..e5b130c --- /dev/null +++ b/test/get-state @@ -0,0 +1,12 @@ +#!/usr/bin/python + +import dbus + +bus = dbus.SystemBus() + +manager = dbus.Interface(bus.get_object('org.freedesktop.connman', "/"), + 'org.freedesktop.connman.Manager') + +state = manager.GetState() + +print "System is %s" % (state)