diff options
Diffstat (limited to 'test')
-rwxr-xr-x | test/deactivate-all | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/test/deactivate-all b/test/deactivate-all new file mode 100755 index 00000000..427009e8 --- /dev/null +++ b/test/deactivate-all @@ -0,0 +1,20 @@ +#!/usr/bin/python + +import sys +import dbus + +bus = dbus.SystemBus() + +manager = dbus.Interface(bus.get_object('org.ofono', '/'), + 'org.ofono.Manager') + +modems = manager.GetModems() + +for path, properties in modems: + if "org.ofono.ConnectionManager" not in properties["Interfaces"]: + continue + + connman = dbus.Interface(bus.get_object('org.ofono', path), + 'org.ofono.ConnectionManager') + + connman.DeactivateAll() |