Hi Alok,
On 04/05/2012 06:20 PM, Alok Barsode wrote:
From: Alok Barsode<[email protected]>
Add script to modify service Timeservers.Configuration property.
---
test/set-timeservers | 20 ++++++++++++++++++++
1 files changed, 20 insertions(+), 0 deletions(-)
create mode 100755 test/set-timeservers
diff --git a/test/set-timeservers b/test/set-timeservers
new file mode 100755
index 0000000..19cc938
--- /dev/null
+++ b/test/set-timeservers
@@ -0,0 +1,20 @@
+#!/usr/bin/python
+
+import sys
+import dbus
+
+if (len(sys.argv)< 2):
+ print "Usage: %s<service> [timeserver*]" % (sys.argv[0])
+ sys.exit(1)
+
+bus = dbus.SystemBus()
+path = "/net/connman/service/" + sys.argv[1]
+service = dbus.Interface(bus.get_object('net.connman', path),
+ 'net.connman.Service')
+
+properties = service.GetProperties()
+
+print "Setting timeserver to %s" % (sys.argv[2:])
+
+service.SetProperty("Timeservers.Configuration",
+ dbus.Array(sys.argv[2:], signature=dbus.Signature('s')))
Is it possible to put all clock related scripts into one script, which
is similar to test-connman?
Bests
Jeff
_______________________________________________
connman mailing list
[email protected]
http://lists.connman.net/listinfo/connman