diff options
author | Daniel Wagner <daniel.wagner@bmw-carit.de> | 2012-03-19 14:03:28 +0100 |
---|---|---|
committer | Patrik Flykt <patrik.flykt@linux.intel.com> | 2012-03-20 12:17:35 +0200 |
commit | 72a3ef066be60185376132dc9d339139b59e5cae (patch) | |
tree | e3007981ca68018ad0e258f8fb8a0dfcb85941f8 /test | |
parent | 1961628f56f98f7d75260e3f2443e2e5bdcb97e4 (diff) | |
download | connman-72a3ef066be60185376132dc9d339139b59e5cae.tar.gz connman-72a3ef066be60185376132dc9d339139b59e5cae.tar.bz2 connman-72a3ef066be60185376132dc9d339139b59e5cae.zip |
set-ipv6-method: The arguments have to be wrapped into a variant
Fixes BMC#24986
Diffstat (limited to 'test')
-rwxr-xr-x | test/set-ipv6-method | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/test/set-ipv6-method b/test/set-ipv6-method index 7f60b88a..4f2de097 100755 --- a/test/set-ipv6-method +++ b/test/set-ipv6-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|manual|auto [<address> [prefixlen] [gateway]] [<privacy>]" % (sys.argv[0]) @@ -19,17 +22,17 @@ properties = service.GetProperties() print "Setting method %s for %s" % (sys.argv[2], sys.argv[1]) -ipv6_configuration = { "Method": sys.argv[2] } +ipv6_configuration = { "Method": make_variant(sys.argv[2])} if sys.argv[2] == "auto": if (len(sys.argv) > 3): - ipv6_configuration["Privacy"] = sys.argv[3] + ipv6_configuration["Privacy"] = make_variant(sys.argv[3]) else: if (len(sys.argv) > 3): - ipv6_configuration["Address"] = sys.argv[3] + ipv6_configuration["Address"] = make_variant(sys.argv[3]) if (len(sys.argv) > 4): - ipv6_configuration["PrefixLength"] = sys.argv[4] + ipv6_configuration["PrefixLength"] = make_variant(sys.argv[4]) if (len(sys.argv) > 5): - ipv6_configuration["Gateway"] = sys.argv[5] + ipv6_configuration["Gateway"] = make_variant(sys.argv[5]) service.SetProperty("IPv6.Configuration", ipv6_configuration) print "New IPv6.Configuration: ", ipv6_configuration |