summaryrefslogtreecommitdiff
path: root/test/show-introspection
diff options
context:
space:
mode:
authorMarcel Holtmann <marcel@holtmann.org>2010-11-26 10:57:42 +0100
committerMarcel Holtmann <marcel@holtmann.org>2010-11-26 10:57:42 +0100
commit4c10a569c112ffb3a646bc0e5353d190fef58e22 (patch)
treefd74c1177e94fd9a9692332c9ace4f4e39b6493b /test/show-introspection
parentabe0a8232bb8c92883bd4328becdbf60b7d54e55 (diff)
downloadconnman-4c10a569c112ffb3a646bc0e5353d190fef58e22.tar.gz
connman-4c10a569c112ffb3a646bc0e5353d190fef58e22.tar.bz2
connman-4c10a569c112ffb3a646bc0e5353d190fef58e22.zip
Change service name from org.moblin.connman to net.connman
Diffstat (limited to 'test/show-introspection')
-rwxr-xr-xtest/show-introspection8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/show-introspection b/test/show-introspection
index e64dd273..20e8a50c 100755
--- a/test/show-introspection
+++ b/test/show-introspection
@@ -4,18 +4,18 @@ import dbus
bus = dbus.SystemBus()
-object = dbus.Interface(bus.get_object("org.moblin.connman", '/'),
+object = dbus.Interface(bus.get_object("net.connman", '/'),
"org.freedesktop.DBus.Introspectable")
print object.Introspect()
-manager = dbus.Interface(bus.get_object("org.moblin.connman", "/"),
- "org.moblin.connman.Manager")
+manager = dbus.Interface(bus.get_object("net.connman", "/"),
+ "net.connman.Manager")
properties = manager.GetProperties()
for path in properties["Technologies"]:
- object = dbus.Interface(bus.get_object("org.moblin.connman", path),
+ object = dbus.Interface(bus.get_object("net.connman", path),
"org.freedesktop.DBus.Introspectable")
print object.Introspect()