Merge pull request #4343 from vtolstov/qemu_convert
builder/qemu: allow to convert from any supported format
This commit is contained in:
commit
2a7c84e9ff
|
@ -38,7 +38,6 @@ func (s *stepConvertDisk) Run(state multistep.StateBag) multistep.StepAction {
|
|||
}
|
||||
|
||||
command = append(command, []string{
|
||||
"-f", config.Format,
|
||||
"-O", config.Format,
|
||||
sourcePath,
|
||||
targetPath,
|
||||
|
|
|
@ -22,7 +22,6 @@ func (s *stepCopyDisk) Run(state multistep.StateBag) multistep.StepAction {
|
|||
|
||||
command := []string{
|
||||
"convert",
|
||||
"-f", config.Format,
|
||||
"-O", config.Format,
|
||||
isoPath,
|
||||
path,
|
||||
|
|
Loading…
Reference in New Issue