summaryrefslogtreecommitdiff
path: root/test/enable-device
blob: 55bd1f19f43a830d446245e2cd7cfaf6c9677537 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/usr/bin/python

import dbus

bus = dbus.SystemBus()

manager = dbus.Interface(bus.get_object('org.moblin.connman', "/"),
					'org.moblin.connman.Manager')

elements = manager.ListElements()

for path in elements:
	element = dbus.Interface(bus.get_object('org.moblin.connman', path),
						'org.moblin.connman.Element')

	properties = element.GetProperties()

	if (properties["Type"] != "device"):
		continue

	print "[ %s ]" % (path)

	element.Enable()