6 if (len(sys.argv) < 2):
7 print "Usage: %s <device>" % (sys.argv[0])
10 bus = dbus.SystemBus()
12 manager = dbus.Interface(bus.get_object('org.moblin.connman', "/"),
13 'org.moblin.connman.Manager')
15 properties = manager.GetProperties()
17 for path in properties["Technologies"]:
18 technology = dbus.Interface(bus.get_object("org.moblin.connman", path),
19 "org.moblin.connman.Technology")
21 properties = technology.GetProperties()
23 for path in properties["Devices"]:
24 device = dbus.Interface(bus.get_object('org.moblin.connman', path),
25 'org.moblin.connman.Device')
27 properties = device.GetProperties()
29 if "Interface" not in properties.keys():
32 if properties["Interface"] != sys.argv[1]:
35 print "Enabling device %s" % (path)
37 device.SetProperty("Powered", dbus.Boolean(1));