Home | History | Annotate | Download | only in site_utils

Lines Matching refs:dest_host

135 def bootstrap(user, password, source_host, dest_host):
136 """Bootstrap the given user against dest_host.
139 dest_host.
144 @param dest_host: The hostname of the remote db server.
152 infra.execute_command(dest_host, 'echo "hello"')
162 MySQLCommandExecutor.ping(dest_host, use_ssh=True)
176 dest_host, MySQLCommandExecutor.mysql_cmd(grant_privileges % creds))
180 dest_host, user=user, password=password, use_ssh=False)
213 dest_host = global_config.global_config.get_config_value(
223 local_hostname = ('localhost' if utils.is_localhost(dest_host)
226 user, local_hostname, dest_host)
227 bootstrap(user, password, local_hostname, dest_host)
232 bootstrap(user, password, gateway, dest_host)