Remove dead code

This method is no longer called since
the docker installation has moved out
of the driver (54f3607).

Signed-off-by: Guillaume Giamarchi <guillaume.giamarchi@gmail.com>
This commit is contained in:
Guillaume Giamarchi 2015-02-27 23:13:01 +01:00
parent b5dd34a90e
commit f25a7ace86
1 changed files with 0 additions and 13 deletions

View File

@ -746,19 +746,6 @@ func (d *Driver) waitForInstanceToStart() error {
return d.waitForSSHServer()
}
func (d *Driver) sshExec(commands []string) error {
for _, command := range commands {
sshCmd, err := d.GetSSHCommand(command)
if err != nil {
return err
}
if err := sshCmd.Run(); err != nil {
return err
}
}
return nil
}
func (d *Driver) sshKeyPath() string {
return path.Join(d.storePath, "id_rsa")
}