technology: return already enabled when tethering is enabled
[framework/connectivity/connman.git] / test / get-global-timeservers
1 #!/usr/bin/python
2
3 import dbus
4
5 bus = dbus.SystemBus()
6
7 clock = dbus.Interface(bus.get_object('net.connman', '/'),
8                                         'net.connman.Clock')
9
10 properties = clock.GetProperties()
11
12 print "Timeserver is %s" % (properties["Timeservers"])