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

import sys
import dbus

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

bus = dbus.SystemBus()
path = "/net/connman/service/" + sys.argv[1]
service = dbus.Interface(bus.get_object('net.connman', path),
					'net.connman.Service')

properties = service.GetProperties()

print "Setting nameserver to %s" % (sys.argv[2:])

service.SetProperty("Nameservers.Configuration", 
	dbus.Array(sys.argv[2:], signature=dbus.Signature('s')))