From 7a2572623c022fd36f6e34f33d47fa90b479a5c0 Mon Sep 17 00:00:00 2001 From: Marcel Holtmann Date: Mon, 7 Apr 2008 04:26:38 +0200 Subject: [PATCH] Add simple script to show the master state --- test/Makefile.am | 2 +- test/get-state | 12 ++++++++++++ 2 files changed, 13 insertions(+), 1 deletion(-) create mode 100755 test/get-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) -- 2.7.4