mirror of
https://git.kernel.org/pub/scm/network/wireless/iwd.git
synced 2024-11-21 22:09:23 +01:00
test: Add set-powered script
This commit is contained in:
parent
cceca91db6
commit
db7874813b
19
test/set-powered
Executable file
19
test/set-powered
Executable file
@ -0,0 +1,19 @@
|
||||
#!/usr/bin/python3
|
||||
|
||||
import dbus
|
||||
import sys
|
||||
|
||||
if len(sys.argv) != 3:
|
||||
print("Usage: %s device up|down" % (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] == 'up'):
|
||||
device.Set("net.connman.iwd.Device", "Powered", dbus.Boolean(1))
|
||||
elif (sys.argv[2] == 'down'):
|
||||
device.Set("net.connman.iwd.Device", "Powered", dbus.Boolean(0))
|
||||
else:
|
||||
print("Invalid argument. Must be 'up' or 'down'")
|
||||
sys.exit(1);
|
Loading…
Reference in New Issue
Block a user