|
Loading...
|
connman@connman.net
[Prev] Thread [Next] | [Prev] Date [Next]
[PATCH v6 10/14] test: Add set-timeservers Alok Barsode Thu Apr 05 04:00:35 2012
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')))
--
1.7.5.4
_______________________________________________
connman mailing list
[EMAIL PROTECTED]
http://lists.connman.net/listinfo/connman
- [PATCH v6 00/14] NTP Overhaul Alok Barsode 2012/04/05
- [PATCH v6 01/14] meego: Remove the meego plugin Alok Barsode 2012/04/05
- [PATCH v6 02/14] Replace older system timeserver values with new ones instead of appending Alok Barsode 2012/04/05
- [PATCH v6 03/14] service: Add __connman_service_get_default Alok Barsode 2012/04/05
- [PATCH v6 04/14] timeserver: Trigger ntp on default changed notifier Alok Barsode 2012/04/05
- [PATCH v6 05/14] timeserver: Create timeserver list Alok Barsode 2012/04/05
- [PATCH v6 06/14] timeserver: Add service gateway to timeserver list Alok Barsode 2012/04/05
- [PATCH v6 07/14] service: Add Timeservers.Configuration Property Alok Barsode 2012/04/05
- [PATCH v6 08/14] timeserver: Add Timeservers.Configuration to timeserver list Alok Barsode 2012/04/05
- [PATCH v6 09/14] doc: Add Timeserves.Configuration service property Alok Barsode 2012/04/05
- [PATCH v6 10/14] test: Add set-timeservers Alok Barsode 2012/04/05 <=
- Re: [PATCH v6 10/14] test: Add set-timeservers Jeff Zheng 2012/04/05
- [PATCH v6 11/14] ntp: Shorten NTP failure delay Alok Barsode 2012/04/05
- [PATCH v6 12/14] main: Parse FallbackTimeservers list from main.conf Alok Barsode 2012/04/05
- [PATCH v6 13/14] timeservers: Add Fallback Timerservers Alok Barsode 2012/04/05
- [PATCH v6 14/14] timeserver: Check for resolv before accessing it Alok Barsode 2012/04/05
- Re: [PATCH v6 00/14] NTP Overhaul Patrik Flykt 2012/04/05