drivers: don't let the driver wait for SSH/Docker

Waiting for SSH to start or Docker to be available is a step done
directly in the framework (in libmachine). There is no need for the
driver to do that.

Signed-off-by: Vincent Bernat <Vincent.Bernat@exoscale.ch>
This commit is contained in:
Vincent Bernat 2015-04-11 08:07:44 +02:00
parent ec80e4419b
commit 8d5dd50a64
1 changed files with 0 additions and 3 deletions

View File

@ -369,9 +369,6 @@ func (d *Driver) Create() error {
if err := d.lookForIpAddress(); err != nil {
return err
}
if err := d.waitForSSHServer(); err != nil {
return err
}
return nil
}