summaryrefslogtreecommitdiff
path: root/test/set-policy
diff options
context:
space:
mode:
Diffstat (limited to 'test/set-policy')
-rwxr-xr-xtest/set-policy28
1 files changed, 28 insertions, 0 deletions
diff --git a/test/set-policy b/test/set-policy
new file mode 100755
index 00000000..5f26690a
--- /dev/null
+++ b/test/set-policy
@@ -0,0 +1,28 @@
+#!/usr/bin/python
+
+import sys
+import dbus
+
+if (len(sys.argv) < 3):
+ print "Usage: %s <device> <policy>" % (sys.argv[0])
+ sys.exit(1)
+
+bus = dbus.SystemBus()
+
+manager = dbus.Interface(bus.get_object("org.moblin.connman", "/"),
+ "org.moblin.connman.Manager")
+
+properties = manager.GetProperties()
+
+for path in properties["Devices"]:
+ device = dbus.Interface(bus.get_object("org.moblin.connman", path),
+ "org.moblin.connman.Device")
+
+ properties = device.GetProperties()
+
+ if properties["Interface"] != sys.argv[1]:
+ continue;
+
+ print "Setting policy \"%s\" for %s" % (sys.argv[2], path)
+
+ device.SetProperty("Policy", sys.argv[2])