File: test-clock

package info (click to toggle)
connman 1.45-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 7,056 kB
  • sloc: ansic: 101,490; sh: 4,985; python: 2,256; makefile: 488
file content (19 lines) | stat: -rwxr-xr-x 398 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/usr/bin/python

import dbus

bus = dbus.SystemBus()

clock = dbus.Interface(bus.get_object("net.connman", "/"),
					"net.connman.Clock")

properties = clock.GetProperties()

for key in list(properties.keys()):
	if key in ["Timeservers"]:
		list = ""
		for val in properties[key]:
			list = list + val + " "
		print("%s = [ %s]" % (key, list))
	else:
		print("%s = %s" % (key, properties[key]))