fix datastore path that contains spaces
This commit is contained in:
parent
895e7fe111
commit
e5e75df033
|
@ -52,6 +52,7 @@ func (d *ESX5Driver) CompactDisk(diskPathLocal string) error {
|
||||||
|
|
||||||
func (d *ESX5Driver) CreateDisk(diskPathLocal string, size string, adapter_type string, typeId string) error {
|
func (d *ESX5Driver) CreateDisk(diskPathLocal string, size string, adapter_type string, typeId string) error {
|
||||||
diskPath := d.datastorePath(diskPathLocal)
|
diskPath := d.datastorePath(diskPathLocal)
|
||||||
|
diskPath = strings.Replace(diskPath, " ", `\ `, -1)
|
||||||
return d.sh("vmkfstools", "-c", size, "-d", typeId, "-a", adapter_type, diskPath)
|
return d.sh("vmkfstools", "-c", size, "-d", typeId, "-a", adapter_type, diskPath)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue