summaryrefslogtreecommitdiff
path: root/test/remove-provider
blob: 39f8de77d040a80c72934cc44de7a47d316e9f6d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/usr/bin/python

import sys
import dbus

if (len(sys.argv) < 2):
	print "Usage: %s <VPN service path> " % (sys.argv[0])
	sys.exit(1)

bus = dbus.SystemBus()

manager = dbus.Interface(bus.get_object("net.connman", "/"),
					"net.connman.Manager")

path = "" + sys.argv[1]

print "remove path is %s" %(path)

manager.RemoveProvider(sys.argv[1])