summaryrefslogtreecommitdiff
path: root/test/set-priority
blob: 37a0e72deda26d9c3e7cf059a9c251cecd4bfdca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#!/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])));