summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorDaniel Wagner <daniel.wagner@bmw-carit.de>2012-03-19 14:03:27 +0100
committerPatrik Flykt <patrik.flykt@linux.intel.com>2012-03-20 12:17:15 +0200
commit1961628f56f98f7d75260e3f2443e2e5bdcb97e4 (patch)
tree694e39255b4f3e24f57dbc1529253f0abe129ee8 /test
parent03f7aa7fc8dec052d63820aa6d71562feadf4725 (diff)
downloadconnman-1961628f56f98f7d75260e3f2443e2e5bdcb97e4.tar.gz
connman-1961628f56f98f7d75260e3f2443e2e5bdcb97e4.tar.bz2
connman-1961628f56f98f7d75260e3f2443e2e5bdcb97e4.zip
set-ipv4-method: The arguments have to be wrapped into a variant
Fixes BMC#24986
Diffstat (limited to 'test')
-rwxr-xr-xtest/set-ipv4-method11
1 files changed, 7 insertions, 4 deletions
diff --git a/test/set-ipv4-method b/test/set-ipv4-method
index 820b24b4..235113fe 100755
--- a/test/set-ipv4-method
+++ b/test/set-ipv4-method
@@ -3,6 +3,9 @@
import sys
import dbus
+def make_variant(string):
+ return dbus.String(string, variant_level=1)
+
def print_usage():
print "Usage: %s <service> [off|dhcp|manual <address> [netmask] [gateway]]" % (sys.argv[0])
@@ -20,13 +23,13 @@ properties = service.GetProperties()
print "Setting method %s for %s" % (sys.argv[2], sys.argv[1])
-ipv4_configuration = { "Method": sys.argv[2] }
+ipv4_configuration = { "Method": make_variant(sys.argv[2]) }
if (len(sys.argv) > 3):
- ipv4_configuration["Address"] = sys.argv[3]
+ ipv4_configuration["Address"] = make_variant(sys.argv[3])
if (len(sys.argv) > 4):
- ipv4_configuration["Netmask"] = sys.argv[4]
+ ipv4_configuration["Netmask"] = make_variant(sys.argv[4])
if (len(sys.argv) > 5):
- ipv4_configuration["Gateway"] = sys.argv[5]
+ ipv4_configuration["Gateway"] = make_variant(sys.argv[5])
service.SetProperty("IPv4.Configuration", ipv4_configuration)
print "New IPv4.Configuration: ", ipv4_configuration