summaryrefslogtreecommitdiffstats
path: root/meta/recipes-connectivity/connman/connman/test-set-ipv6-method-api-fix.patch
blob: 773127bcec07dfea986f045cd1df1659f58ec39e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
From 2885e71c9c0df7ea9866e91ab79d255eaa8de53d Mon Sep 17 00:00:00 2001
From: Daniel Wagner <daniel.wagner@bmw-carit.de>
Date: Mon, 19 Mar 2012 14:03:28 +0100
Subject: [PATCH 2/3] set-ipv6-method: The arguments have to be wrapped into a
 variant

Fixes BMC#24986

Upstream-Status: Backport

Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
---
 test/set-ipv6-method |   13 ++++++++-----
 1 file changed, 8 insertions(+), 5 deletions(-)

diff --git a/test/set-ipv6-method b/test/set-ipv6-method
index 7f60b88..4f2de09 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
-- 
1.7.9.5