summaryrefslogtreecommitdiff
path: root/test/get-global-timeservers
blob: 2436b36369edf4cef786cf5ba1960cd46f83420e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/usr/bin/python

import dbus

bus = dbus.SystemBus()

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

properties = clock.GetProperties()

print("Timeserver is %s" % (properties["Timeservers"]))