Searched refs:ssh_object (Results 1 – 2 of 2) sorted by relevance
/tools/acloud/internal/lib/ |
D | ssh_test.py | 60 ssh_object = ssh.Ssh(ip=self.FAKE_IP, 66 self.assertEqual(ssh_object.GetBaseCmd(constants.SSH_BIN), expected_ssh_cmd) 70 ssh_object = ssh.Ssh(self.FAKE_IP, self.FAKE_SSH_USER, self.FAKE_SSH_PRIVATE_KEY_PATH) 73 self.assertEqual(ssh_object.GetBaseCmd(constants.SSH_BIN), expected_ssh_cmd) 77 self.assertEqual(ssh_object.GetBaseCmd(constants.SCP_BIN), expected_scp_cmd) 83 ssh_object = ssh.Ssh(self.FAKE_IP, self.FAKE_SSH_USER, self.FAKE_SSH_PRIVATE_KEY_PATH) 84 ssh_object.Run("command") 96 ssh_object = ssh.Ssh(self.FAKE_IP, 100 ssh_object.Run("command") 114 ssh_object = ssh.Ssh(self.FAKE_IP, self.FAKE_SSH_USER, self.FAKE_SSH_PRIVATE_KEY_PATH) [all …]
|
/tools/acloud/delete/ |
D | delete.py | 32 from acloud.internal.lib import ssh as ssh_object unknown 200 ssh = ssh_object.Ssh( 201 ip=ssh_object.IP(ip=remote_host),
|