File: remove-provider

package info (click to toggle)
connman 1.45-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 7,056 kB
  • sloc: ansic: 101,490; sh: 4,985; python: 2,256; makefile: 488
file content (19 lines) | stat: -rwxr-xr-x 348 bytes parent folder | download | duplicates (3)
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])