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 4047c97679
commit 44be16c49f
5 changed files with 8 additions and 64 deletions
-3
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
}