mirror of git://git.sysmocom.de/ofono
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
446 B
21 lines
446 B
#!/usr/bin/python3
|
|
|
|
import dbus
|
|
import sys
|
|
|
|
bus = dbus.SystemBus()
|
|
|
|
if len(sys.argv) == 2:
|
|
path = sys.argv[1]
|
|
else:
|
|
manager = dbus.Interface(bus.get_object('org.ofono.dundee', '/'),
|
|
'org.ofono.dundee.Manager')
|
|
devices = manager.GetDevices()
|
|
path = devices[0][0]
|
|
|
|
print("Disconnect device %s..." % path)
|
|
device = dbus.Interface(bus.get_object('org.ofono.dundee', path),
|
|
'org.ofono.dundee.Device')
|
|
|
|
device.SetProperty("Active", False)
|