mirror of
https://git.kernel.org/pub/scm/network/wireless/iwd.git
synced 2024-11-02 18:19:23 +01:00
15 lines
313 B
Python
Executable File
15 lines
313 B
Python
Executable File
#!/usr/bin/python3
|
|
|
|
import sys
|
|
import dbus
|
|
|
|
|
|
if (len(sys.argv) != 2):
|
|
print("Usage: %s <network>" % (sys.argv[0]))
|
|
sys.exit(1)
|
|
|
|
bus = dbus.SystemBus()
|
|
network = dbus.Interface(bus.get_object("net.connman.iwd", sys.argv[1]),
|
|
"net.connman.iwd.Network")
|
|
network.Connect()
|