Lines Matching refs:Command
126 func (inst *instance) ssh(command string) ([]byte, error) {
128 Logf(0, "executing ssh %+v", command)
136 args := append(vmimpl.SSHArgs(inst.debug, inst.sshkey, 22), "root@"+inst.cfg.Slave_Addr, command)
138 Logf(0, "running command: ssh %#v", args)
140 cmd := osutil.Command("ssh", args...)
286 cmd := osutil.Command("scp", args...)
288 Logf(0, "running command: scp %#v", args)
311 func (inst *instance) Run(timeout time.Duration, stop <-chan bool, command string) (
325 "root@"+inst.cfg.Slave_Addr, "cd /data; "+command)
327 Logf(0, "running command: ssh %#v", args)
329 cmd := osutil.Command("ssh", args...)
372 // If the command exited successfully, we got EOF error from merger.