Revert "Remove useless duplication on GetSSHHostname"

This reverts commit b6462eb6d0c11cef0380f055e7e67ad10dd45282.

Signed-off-by: David Gageot <david@gageot.net>
This commit is contained in:
David Gageot 2015-10-26 18:47:09 +01:00
parent 1214b16242
commit a50a88b19d
1 changed files with 4 additions and 0 deletions

View File

@ -218,6 +218,10 @@ func NewDerivedDriver(hostName, storePath string) *Driver {
}
}
func (d *Driver) GetSSHHostname() (string, error) {
return d.GetIP()
}
func (d *Driver) DriverName() string {
return "openstack"
}