Remove obsolete file.
[connman] / test / set-passphrase
1 #!/usr/bin/python
2
3 import sys
4 import dbus
5
6 if (len(sys.argv) < 3):
7         print "Usage: %s <network> <passphrase>" % (sys.argv[0])
8         sys.exit(1)
9
10 bus = dbus.SystemBus()
11
12 manager = dbus.Interface(bus.get_object("org.moblin.connman", "/"),
13                                         "org.moblin.connman.Manager")
14
15 properties = manager.GetProperties()
16
17 for path in properties["Devices"]:
18         device = dbus.Interface(bus.get_object("org.moblin.connman", path),
19                                                 "org.moblin.connman.Device")
20
21         properties = device.GetProperties()
22
23         if (properties["Type"] != "wifi" and properties["Type"] != "wimax"):
24                 continue;
25
26         for path in properties["Networks"]:
27                 network = dbus.Interface(bus.get_object("org.moblin.connman", path),
28                                                 "org.moblin.connman.Network")
29
30                 properties = network.GetProperties()
31
32                 if (properties["Name"] == sys.argv[1]):
33                         print "Setting passphrase for %s" % (path)
34                         network.SetProperty("WiFi.Passphrase", sys.argv[2])