summaryrefslogtreecommitdiff
path: root/test/remove-provider
blob: a2f3e6f44b06371def892ec7a3d6e7b940dff4f8 (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])