File: enable-device

package info (click to toggle)
connman 0.48%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 1,568 kB
  • ctags: 2,951
  • sloc: ansic: 26,761; python: 923; makefile: 261; xml: 118; sh: 113
file content (31 lines) | stat: -rwxr-xr-x 666 bytes parent folder | download
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
29
30
31
#!/usr/bin/python

import sys
import dbus

if (len(sys.argv) < 2):
	print "Usage: %s <device>" % (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 "Interface" not in properties.keys():
		continue

	if properties["Interface"] != sys.argv[1]:
		continue

	print "Enabling device %s" % (path)

	device.SetProperty("Powered", dbus.Boolean(1));