summaryrefslogtreecommitdiff
path: root/test/set-priority
diff options
context:
space:
mode:
Diffstat (limited to 'test/set-priority')
-rwxr-xr-xtest/set-priority28
1 files changed, 0 insertions, 28 deletions
diff --git a/test/set-priority b/test/set-priority
deleted file mode 100755
index 37a0e72d..00000000
--- a/test/set-priority
+++ /dev/null
@@ -1,28 +0,0 @@
-#!/usr/bin/python
-
-import sys
-import dbus
-
-if (len(sys.argv) < 3):
- print "Usage: %s <device> <priority>" % (sys.argv[0])
- sys.exit(1)
-
-bus = dbus.SystemBus()
-
-manager = dbus.Interface(bus.get_object('org.moblin.connman', "/"),
- 'org.moblin.connman.Manager')
-
-properties = manager.GetProperties()
-
-for path in properties["Devices"]:
- device = dbus.Interface(bus.get_object('org.moblin.connman', path),
- 'org.moblin.connman.Device')
-
- properties = device.GetProperties()
-
- if properties["Interface"] != sys.argv[1]:
- continue;
-
- print "Setting priority %d for device %s" % (int(sys.argv[2]), path)
-
- device.SetProperty("Priority", dbus.Byte(int(sys.argv[2])));