From da067394411a7176d8f6844edc251ae2dcb50355 Mon Sep 17 00:00:00 2001 From: Marcel Holtmann Date: Sun, 21 Dec 2008 23:03:23 +0100 Subject: [PATCH] Add test script for setting addresses --- test/Makefile.am | 2 +- test/set-address | 26 ++++++++++++++++++++++++++ 2 files changed, 27 insertions(+), 1 deletion(-) create mode 100755 test/set-address diff --git a/test/Makefile.am b/test/Makefile.am index 2087e88..30546b9 100644 --- a/test/Makefile.am +++ b/test/Makefile.am @@ -2,7 +2,7 @@ EXTRA_DIST = get-state list-profiles list-connections select-connection \ list-devices enable-device disable-device start-scanning \ list-networks select-network disable-network create-network \ - set-passphrase simple-agent show-introspection \ + set-passphrase set-address simple-agent show-introspection \ test-manager test-compat monitor-connman MAINTAINERCLEANFILES = Makefile.in diff --git a/test/set-address b/test/set-address new file mode 100755 index 0000000..ebff30a --- /dev/null +++ b/test/set-address @@ -0,0 +1,26 @@ +#!/usr/bin/python + +import sys +import dbus + +if (len(sys.argv) < 2): + print "Usage: %s
" % (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') + + print "Setting static address %s for %s" % (sys.argv[1], path) + + device.SetProperty("IPv4.Method", "static") + device.SetProperty("IPv4.Address", sys.argv[1]) + + print -- 2.7.4