| Index: site_config/slave_hosts_cfg.py
|
| diff --git a/site_config/slave_hosts_cfg.py b/site_config/slave_hosts_cfg.py
|
| index b168d9752143ac7a9b4f0b842d64c99f5d13fced..4bc5e5c6df6012588a7c1cc575ec5a761d405831 100644
|
| --- a/site_config/slave_hosts_cfg.py
|
| +++ b/site_config/slave_hosts_cfg.py
|
| @@ -44,10 +44,8 @@ SKIALAB_USERNAME = skia_vars.GetGlobalVariable('skialab_username')
|
|
|
| def skia_lab_login(hostname, config):
|
| """Procedure for logging into SkiaLab machines."""
|
| - # The multiple "-t"s are needed in order to force tty allocation, which gives
|
| - # us the expected interactive behavior, even with two levels of SSH.
|
| return [
|
| - 'ssh', '-t', '-t', '%s@%s' % (SKIALAB_USERNAME, SKIALAB_ROUTER_IP),
|
| + 'ssh', '%s@%s' % (SKIALAB_USERNAME, SKIALAB_ROUTER_IP),
|
| 'ssh', '%s@%s' % (SKIALAB_USERNAME, config['ip'])
|
| ]
|
|
|
|
|