summaryrefslogtreecommitdiff
path: root/test/find-service
diff options
context:
space:
mode:
Diffstat (limited to 'test/find-service')
-rwxr-xr-xtest/find-service17
1 files changed, 0 insertions, 17 deletions
diff --git a/test/find-service b/test/find-service
deleted file mode 100755
index c53e6eb0..00000000
--- a/test/find-service
+++ /dev/null
@@ -1,17 +0,0 @@
-#!/usr/bin/python
-
-import sys
-import dbus
-
-if (len(sys.argv) < 2):
- print "Usage: %s <pattern>" % (sys.argv[0])
- sys.exit(1)
-
-bus = dbus.SystemBus()
-
-manager = dbus.Interface(bus.get_object('net.connman', '/'),
- 'net.connman.Manager')
-
-path = manager.LookupService(sys.argv[1])
-
-print "Service is %s" % (path)