From bd5d5e049d33c7fe3845635535aa2b27fddb9c48 Mon Sep 17 00:00:00 2001 From: Rickard von Essen Date: Sun, 4 May 2014 12:46:47 +0200 Subject: [PATCH] builder/parallels: Added pppX interface to be able to run packer when using mobile wlan --- builder/parallels/iso/step_type_boot_command.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/builder/parallels/iso/step_type_boot_command.go b/builder/parallels/iso/step_type_boot_command.go index 342fa91fb..bdd097682 100644 --- a/builder/parallels/iso/step_type_boot_command.go +++ b/builder/parallels/iso/step_type_boot_command.go @@ -42,7 +42,7 @@ func (s *stepTypeBootCommand) Run(state multistep.StateBag) multistep.StepAction driver := state.Get("driver").(parallelscommon.Driver) // Determine the host IP - ipFinder := &IfconfigIPFinder{Devices: []string{"en0", "en1", "en2", "en3", "en4", "en5", "en6", "en7", "en8", "en9"}} + ipFinder := &IfconfigIPFinder{Devices: []string{"en0", "en1", "en2", "en3", "en4", "en5", "en6", "en7", "en8", "en9", "ppp0", "ppp1", "ppp2"}} hostIp, err := ipFinder.HostIP() if err != nil {