Home
last modified time | relevance | path

Searched refs:ssh_object (Results 1 – 3 of 3) sorted by relevance

/tools/acloud/internal/lib/
Dssh_test.py63 ssh_object = ssh.Ssh(ip=self.FAKE_IP,
69 self.assertEqual(ssh_object.GetBaseCmd(constants.SSH_BIN), expected_ssh_cmd)
73 ssh_object = ssh.Ssh(self.FAKE_IP, self.FAKE_SSH_USER, self.FAKE_SSH_PRIVATE_KEY_PATH)
76 self.assertEqual(ssh_object.GetBaseCmd(constants.SSH_BIN), expected_ssh_cmd)
80 self.assertEqual(ssh_object.GetBaseCmd(constants.SCP_BIN), expected_scp_cmd)
86 ssh_object = ssh.Ssh(self.FAKE_IP, self.FAKE_SSH_USER, self.FAKE_SSH_PRIVATE_KEY_PATH)
87 ssh_object.Run("command")
99 ssh_object = ssh.Ssh(self.FAKE_IP,
103 ssh_object.Run("command")
117 ssh_object = ssh.Ssh(self.FAKE_IP, self.FAKE_SSH_USER, self.FAKE_SSH_PRIVATE_KEY_PATH)
[all …]
/tools/acloud/reconnect/
Dreconnect.py32 from acloud.internal.lib import ssh as ssh_object unknown
65 ssh = ssh_object.Ssh(ip=ssh_object.IP(ip=instance.ip), user=host_user,
/tools/acloud/delete/
Ddelete.py32 from acloud.internal.lib import ssh as ssh_object unknown
200 ssh = ssh_object.Ssh(
201 ip=ssh_object.IP(ip=remote_host),