Change service name from org.moblin.connman to net.connman
[framework/connectivity/connman.git] / test / enable-tethering
1 #!/usr/bin/python
2
3 import dbus
4
5 bus = dbus.SystemBus()
6
7 manager = dbus.Interface(bus.get_object('net.connman', "/"),
8                                         'net.connman.Manager')
9
10 manager.SetProperty("Tethering", dbus.Boolean(1));