Lines Matching refs:servers
7 """Tool to sync lab servers to the "Allowed Networks" of a CloudSQL instance.
11 read the list of lab servers from server database and update the list of
15 servers to the "Allowed Networks" list of the CloudSQL instance. This allows
16 servers that do not run Autotest code can access the CloudSQL instance.
20 should be prohibited. Instead, the servers should be added to
60 @param extra_servers: Extra servers to be included in the "Allowed Networks"
63 # Get the IP address of all servers need access to CloudSQL instance.
65 servers = [s['hostname'] for s in rpc.run('get_servers')
69 servers.extend(extra_servers.split(','))
70 # Extra servers can be listed in CLOUD/tko_access_servers shadow config.
74 servers.extend(tko_servers.split(','))
75 ips = [socket.gethostbyname(name) for name in servers]
105 help=('Extra servers to be included in the "Allowed '