mirror of
https://git.kernel.org/pub/scm/network/wireless/iwd.git
synced 2025-04-16 15:57:53 +02:00
test: add set-wds script
This commit is contained in:
parent
233fa6259d
commit
b3071d63c7
20
test/set-wds
Executable file
20
test/set-wds
Executable file
@ -0,0 +1,20 @@
|
|||||||
|
#!/usr/bin/python3
|
||||||
|
|
||||||
|
import dbus
|
||||||
|
import sys
|
||||||
|
|
||||||
|
if len(sys.argv) != 3:
|
||||||
|
print("Usage: %s <device> <true|false>" % (sys.argv[0]))
|
||||||
|
sys.exit(1)
|
||||||
|
|
||||||
|
bus = dbus.SystemBus()
|
||||||
|
device = dbus.Interface(bus.get_object("net.connman.iwd", sys.argv[1]),
|
||||||
|
"org.freedesktop.DBus.Properties")
|
||||||
|
|
||||||
|
if (sys.argv[2] == 'true'):
|
||||||
|
device.Set("net.connman.iwd.Device", "WDS", dbus.Boolean(1))
|
||||||
|
elif (sys.argv[2] == 'false'):
|
||||||
|
device.Set("net.connman.iwd.Device", "WDS", dbus.Boolean(0))
|
||||||
|
else:
|
||||||
|
print("Invalid argument. Must be 'true' or 'false'")
|
||||||
|
sys.exit(1);
|
Loading…
x
Reference in New Issue
Block a user