From abfb9f24d6cccb62087b4fe5dd9d9f61284fdbd4 Mon Sep 17 00:00:00 2001 From: Conrad Jones Date: Sun, 17 Jun 2018 01:45:26 +0100 Subject: [PATCH] revert accidental debugging change --- builder/qemu/step_run.go | 4 ---- 1 file changed, 4 deletions(-) diff --git a/builder/qemu/step_run.go b/builder/qemu/step_run.go index 9769e7cd7..c524d5514 100644 --- a/builder/qemu/step_run.go +++ b/builder/qemu/step_run.go @@ -41,7 +41,6 @@ func (s *stepRun) Run(_ context.Context, state multistep.StateBag) multistep.Ste return multistep.ActionHalt } - ui.Message(fmt.Sprintf("command:=%s", command)) if err := driver.Qemu(command...); err != nil { err := fmt.Errorf("Error launching VM: %s", err) ui.Error(err.Error()) @@ -105,9 +104,6 @@ func getCommandArgs(bootDrive string, state multistep.StateBag) ([]string, error } else { driveArgs = append(driveArgs, fmt.Sprintf("file=%s,if=%s,cache=%s,format=%s", imgPath, config.DiskInterface, config.DiskCache, config.Format)) } - - ui.Message(fmt.Sprintf("config.NetDevice:=%s", config.NetDevice)) - deviceArgs = append(deviceArgs, fmt.Sprintf("%s,netdev=user.0", config.NetDevice)) if config.Headless == true {