Created
December 13, 2017 07:25
-
-
Save pvandervelde/67e69235470a2168f52b20863340f146 to your computer and use it in GitHub Desktop.
Packer 1.1.3 fails to download a local ISO file
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"variables": { | |
"admin_username": "admin", | |
"admin_password": "admin", | |
"cookbook_name": "not_realy_a_cookbook_name", | |
"dir_cookbooks_src": "src/cookbooks", | |
"dir_cookbooks_vendors": "packages/vendor/cookbooks", | |
"dir_deploy": null, | |
"dir_http_user": null, | |
"dir_scripts_user": null, | |
"dir_temp": null, | |
"iso_checksum": null, | |
"iso_url": null, | |
"vm_name": "not_really_a_vm_name", | |
"vm_ram_size_in_mb": "2048", | |
"vm_switch_name": "this_switch_does_not_exist", | |
"vm_switch_vlan": "" | |
}, | |
"builders": [ | |
{ | |
"boot_wait": "5s", | |
"boot_command": [ | |
"<esc><wait10><esc><esc><enter><wait>", | |
"set gfxpayload=1024x768<enter>", | |
"linux /install/vmlinuz ", | |
"preseed/url=http://192.168.3.25:{{.HTTPPort}}/preseed.cfg ", | |
"debian-installer=en_US auto locale=en_US kbd-chooser/method=us ", | |
"hostname={{.Name}} ", | |
"fb=false debconf/frontend=noninteractive ", | |
"keyboard-configuration/modelcode=SKIP keyboard-configuration/layout=USA ", | |
"keyboard-configuration/variant=USA console-setup/ask_detect=false <enter>", | |
"initrd /install/initrd.gz<enter>", | |
"boot<enter>" | |
], | |
"communicator": "ssh", | |
"enable_secure_boot": false, | |
"generation": 2, | |
"guest_additions_mode": "disable", | |
"http_directory": "{{ user `dir_http_user` }}", | |
"iso_url": "{{user `iso_url`}}", | |
"iso_checksum_type": "sha256", | |
"iso_checksum": "{{user `iso_checksum`}}", | |
"iso_target_path": "{{ user `dir_temp` }}/packer", | |
"output_directory": "{{ user `dir_temp` }}/{{ user `vm_name` }}", | |
"ram_size": "{{user `vm_ram_size_in_mb`}}", | |
"shutdown_command": "echo '{{user `admin_password`}}' | sudo -S -E shutdown -P now", | |
"ssh_password": "{{user `admin_password`}}", | |
"ssh_timeout": "4h", | |
"ssh_username": "{{user `admin_username`}}", | |
"switch_name": "{{user `vm_switch_name`}}", | |
"type": "hyperv-iso", | |
"vm_name": "{{ user `vm_name` }}" | |
} | |
], | |
"provisioners": [ | |
{ | |
"command": "Set-VM -Name {{ user `vm_name` }} -AutomaticCheckpointsEnabled $false", | |
"execute_command": ["Powershell.exe", "-NonInteractive", "-NoLogo", "-NoProfile", "-Command", "{{.Command}}"], | |
"type": "shell-local" | |
}, | |
{ | |
"command": "Get-VMSnapshot -VMName {{ user `vm_name` }} | Remove-VMSnapshot", | |
"execute_command": ["Powershell.exe", "-NonInteractive", "-NoLogo", "-NoProfile", "-Command", "{{.Command}}"], | |
"type": "shell-local" | |
}, | |
{ | |
"type": "shell", | |
"execute_command": "echo '{{user `admin_password`}}' | sudo -S sh {{.Path}}", | |
"scripts": [ | |
"{{ user `dir_scripts_user` }}/ubuntu/update.sh" | |
] | |
}, | |
{ | |
"expect_disconnect": false, | |
"inline": [ | |
"echo '{{user `admin_password`}}' | sudo -S -E bash -c 'echo \"{{user `admin_username`}} ALL=(ALL:ALL) NOPASSWD: ALL\" | (EDITOR=\"tee -a\" visudo)'" | |
], | |
"type": "shell" | |
}, | |
{ | |
"expect_disconnect": false, | |
"inline": [ | |
"sudo -E apt-get install --assume-yes curl" | |
], | |
"type": "shell" | |
}, | |
{ | |
"cookbook_paths": [ | |
"{{ user `dir_cookbooks_vendors` }}" | |
], | |
"execute_command": "sudo -E chef-solo --no-color -c {{.ConfigPath}} -j {{.JsonPath}}", | |
"guest_os_type": "unix", | |
"install_command": "curl -LO https://omnitruck.chef.io/install.sh && {{if .Sudo}}sudo{{end}} bash ./install.sh -v 13.1.31 && rm install.sh", | |
"run_list": [ | |
"{{ user `cookbook_name` }}::default" | |
], | |
"type": "chef-solo" | |
}, | |
{ | |
"type": "shell", | |
"execute_command": "sudo -E sh {{.Path}}", | |
"scripts": [ | |
"{{ user `dir_scripts_user` }}/ubuntu/network.sh", | |
"{{ user `dir_scripts_user` }}/ubuntu/cleanup.sh", | |
"{{ user `dir_scripts_user` }}/ubuntu/sysprep.sh" | |
] | |
} | |
] | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2017/12/13 20:17:58 [INFO] Packer version: 1.1.3 | |
2017/12/13 20:17:58 Packer Target OS/Arch: windows amd64 | |
2017/12/13 20:17:58 Built with Go Version: go1.9 | |
2017/12/13 20:17:58 Using internal plugin for amazon-instance | |
2017/12/13 20:17:58 Using internal plugin for azure-arm | |
2017/12/13 20:17:58 Using internal plugin for cloudstack | |
2017/12/13 20:17:58 Using internal plugin for hyperv-iso | |
2017/12/13 20:17:58 Using internal plugin for docker | |
2017/12/13 20:17:58 Using internal plugin for oracle-oci | |
2017/12/13 20:17:58 Using internal plugin for alicloud-ecs | |
2017/12/13 20:17:58 Using internal plugin for vmware-iso | |
2017/12/13 20:17:58 Using internal plugin for triton | |
2017/12/13 20:17:58 Using internal plugin for amazon-ebssurrogate | |
2017/12/13 20:17:58 Using internal plugin for googlecompute | |
2017/12/13 20:17:58 Using internal plugin for virtualbox-ovf | |
2017/12/13 20:17:58 Using internal plugin for amazon-ebs | |
2017/12/13 20:17:58 Using internal plugin for file | |
2017/12/13 20:17:58 Using internal plugin for hyperv-vmcx | |
2017/12/13 20:17:58 Using internal plugin for lxc | |
2017/12/13 20:17:58 Using internal plugin for oneandone | |
2017/12/13 20:17:58 Using internal plugin for openstack | |
2017/12/13 20:17:58 Using internal plugin for digitalocean | |
2017/12/13 20:17:58 Using internal plugin for parallels-iso | |
2017/12/13 20:17:58 Using internal plugin for parallels-pvm | |
2017/12/13 20:17:58 Using internal plugin for qemu | |
2017/12/13 20:17:58 Using internal plugin for virtualbox-iso | |
2017/12/13 20:17:58 Using internal plugin for vmware-vmx | |
2017/12/13 20:17:58 Using internal plugin for amazon-chroot | |
2017/12/13 20:17:58 Using internal plugin for amazon-ebsvolume | |
2017/12/13 20:17:58 Using internal plugin for lxd | |
2017/12/13 20:17:58 Using internal plugin for null | |
2017/12/13 20:17:58 Using internal plugin for profitbricks | |
2017/12/13 20:17:58 Using internal plugin for ansible | |
2017/12/13 20:17:58 Using internal plugin for ansible-local | |
2017/12/13 20:17:58 Using internal plugin for puppet-masterless | |
2017/12/13 20:17:58 Using internal plugin for shell-local | |
2017/12/13 20:17:58 Using internal plugin for chef-solo | |
2017/12/13 20:17:58 Using internal plugin for powershell | |
2017/12/13 20:17:58 Using internal plugin for chef-client | |
2017/12/13 20:17:58 Using internal plugin for converge | |
2017/12/13 20:17:58 Using internal plugin for file | |
2017/12/13 20:17:58 Using internal plugin for puppet-server | |
2017/12/13 20:17:58 Using internal plugin for shell | |
2017/12/13 20:17:58 Using internal plugin for windows-restart | |
2017/12/13 20:17:58 Using internal plugin for salt-masterless | |
2017/12/13 20:17:58 Using internal plugin for windows-shell | |
2017/12/13 20:17:58 Using internal plugin for artifice | |
2017/12/13 20:17:58 Using internal plugin for docker-push | |
2017/12/13 20:17:58 Using internal plugin for vagrant | |
2017/12/13 20:17:58 Using internal plugin for checksum | |
2017/12/13 20:17:58 Using internal plugin for docker-tag | |
2017/12/13 20:17:58 Using internal plugin for shell-local | |
2017/12/13 20:17:58 Using internal plugin for vsphere-template | |
2017/12/13 20:17:58 Using internal plugin for vsphere | |
2017/12/13 20:17:58 Using internal plugin for amazon-import | |
2017/12/13 20:17:58 Using internal plugin for compress | |
2017/12/13 20:17:58 Using internal plugin for docker-save | |
2017/12/13 20:17:58 Using internal plugin for googlecompute-export | |
2017/12/13 20:17:58 Using internal plugin for manifest | |
2017/12/13 20:17:58 Using internal plugin for alicloud-import | |
2017/12/13 20:17:58 Using internal plugin for atlas | |
2017/12/13 20:17:58 Using internal plugin for docker-import | |
2017/12/13 20:17:58 Using internal plugin for vagrant-cloud | |
2017/12/13 20:17:58 Attempting to open config file: C:\Users\petrik\AppData\Roaming\packer.config | |
2017/12/13 20:17:58 [WARN] Config file doesn't exist: C:\Users\petrik\AppData\Roaming\packer.config | |
2017/12/13 20:17:58 Packer config: &{DisableCheckpoint:false DisableCheckpointSignature:false PluginMinPort:10000 PluginMaxPort:25000 Builders:map[googlecompute:E:\documents\Petrik\documents\operations\calvinverse\base.linux\packages\Packer.Windows.x64\packer.exe-PACKERSPACE-plugin-PACKERSPACE-packer-builder-googlecompute hyperv-vmcx:E:\documents\Petrik\documents\operations\calvinverse\base.linux\packages\Packer.Windows.x64\packer.exe-PACKERSPACE-plugin-PACKERSPACE-packer-builder-hyperv-vmcx qemu:E:\documents\Petrik\documents\operations\calvinverse\base.linux\packages\Packer.Windows.x64\packer.exe-PACKERSPACE-plugin-PACKERSPACE-packer-builder-qemu amazon-ebssurrogate:E:\documents\Petrik\documents\operations\calvinverse\base.linux\packages\Packer.Windows.x64\packer.exe-PACKERSPACE-plugin-PACKERSPACE-packer-builder-amazon-ebssurrogate amazon-ebsvolume:E:\documents\Petrik\documents\operations\calvinverse\base.linux\packages\Packer.Windows.x64\packer.exe-PACKERSPACE-plugin-PACKERSPACE-packer-builder-amazon-ebsvolume cloudstack:E:\documents\Petrik\documents\operations\calvinverse\base.linux\packages\Packer.Windows.x64\packer.exe-PACKERSPACE-plugin-PACKERSPACE-packer-builder-cloudstack hyperv-iso:E:\documents\Petrik\documents\operations\calvinverse\base.linux\packages\Packer.Windows.x64\packer.exe-PACKERSPACE-plugin-PACKERSPACE-packer-builder-hyperv-iso triton:E:\documents\Petrik\documents\operations\calvinverse\base.linux\packages\Packer.Windows.x64\packer.exe-PACKERSPACE-plugin-PACKERSPACE-packer-builder-triton file:E:\documents\Petrik\documents\operations\calvinverse\base.linux\packages\Packer.Windows.x64\packer.exe-PACKERSPACE-plugin-PACKERSPACE-packer-builder-file lxc:E:\documents\Petrik\documents\operations\calvinverse\base.linux\packages\Packer.Windows.x64\packer.exe-PACKERSPACE-plugin-PACKERSPACE-packer-builder-lxc vmware-iso:E:\documents\Petrik\documents\operations\calvinverse\base.linux\packages\Packer.Windows.x64\packer.exe-PACKERSPACE-plugin-PACKERSPACE-packer-builder-vmware-iso amazon-ebs:E:\documents\Petrik\documents\operations\calvinverse\base.linux\packages\Packer.Windows.x64\packer.exe-PACKERSPACE-plugin-PACKERSPACE-packer-builder-amazon-ebs amazon-instance:E:\documents\Petrik\documents\operations\calvinverse\base.linux\packages\Packer.Windows.x64\packer.exe-PACKERSPACE-plugin-PACKERSPACE-packer-builder-amazon-instance vmware-vmx:E:\documents\Petrik\documents\operations\calvinverse\base.linux\packages\Packer.Windows.x64\packer.exe-PACKERSPACE-plugin-PACKERSPACE-packer-builder-vmware-vmx null:E:\documents\Petrik\documents\operations\calvinverse\base.linux\packages\Packer.Windows.x64\packer.exe-PACKERSPACE-plugin-PACKERSPACE-packer-builder-null oracle-oci:E:\documents\Petrik\documents\operations\calvinverse\base.linux\packages\Packer.Windows.x64\packer.exe-PACKERSPACE-plugin-PACKERSPACE-packer-builder-oracle-oci virtualbox-ovf:E:\documents\Petrik\documents\operations\calvinverse\base.linux\packages\Packer.Windows.x64\packer.exe-PACKERSPACE-plugin-PACKERSPACE-packer-builder-virtualbox-ovf oneandone:E:\documents\Petrik\documents\operations\calvinverse\base.linux\packages\Packer.Windows.x64\packer.exe-PACKERSPACE-plugin-PACKERSPACE-packer-builder-oneandone digitalocean:E:\documents\Petrik\documents\operations\calvinverse\base.linux\packages\Packer.Windows.x64\packer.exe-PACKERSPACE-plugin-PACKERSPACE-packer-builder-digitalocean lxd:E:\documents\Petrik\documents\operations\calvinverse\base.linux\packages\Packer.Windows.x64\packer.exe-PACKERSPACE-plugin-PACKERSPACE-packer-builder-lxd parallels-pvm:E:\documents\Petrik\documents\operations\calvinverse\base.linux\packages\Packer.Windows.x64\packer.exe-PACKERSPACE-plugin-PACKERSPACE-packer-builder-parallels-pvm virtualbox-iso:E:\documents\Petrik\documents\operations\calvinverse\base.linux\packages\Packer.Windows.x64\packer.exe-PACKERSPACE-plugin-PACKERSPACE-packer-builder-virtualbox-iso amazon-chroot:E:\documents\Petrik\documents\operations\calvinverse\base.linux\packages\Packer.Windows.x64\packer.exe-PACKERSPACE-plugin-PACKERSPACE-packer-builder-amazon-chroot azure-arm:E:\documents\Petrik\documents\operations\calvinverse\base.linux\packages\Packer.Windows.x64\packer.exe-PACKERSPACE-plugin-PACKERSPACE-packer-builder-azure-arm docker:E:\documents\Petrik\documents\operations\calvinverse\base.linux\packages\Packer.Windows.x64\packer.exe-PACKERSPACE-plugin-PACKERSPACE-packer-builder-docker alicloud-ecs:E:\documents\Petrik\documents\operations\calvinverse\base.linux\packages\Packer.Windows.x64\packer.exe-PACKERSPACE-plugin-PACKERSPACE-packer-builder-alicloud-ecs openstack:E:\documents\Petrik\documents\operations\calvinverse\base.linux\packages\Packer.Windows.x64\packer.exe-PACKERSPACE-plugin-PACKERSPACE-packer-builder-openstack parallels-iso:E:\documents\Petrik\documents\operations\calvinverse\base.linux\packages\Packer.Windows.x64\packer.exe-PACKERSPACE-plugin-PACKERSPACE-packer-builder-parallels-iso profitbricks:E:\documents\Petrik\documents\operations\calvinverse\base.linux\packages\Packer.Windows.x64\packer.exe-PACKERSPACE-plugin-PACKERSPACE-packer-builder-profitbricks] PostProcessors:map[shell-local:E:\documents\Petrik\documents\operations\calvinverse\base.linux\packages\Packer.Windows.x64\packer.exe-PACKERSPACE-plugin-PACKERSPACE-packer-post-processor-shell-local vsphere:E:\documents\Petrik\documents\operations\calvinverse\base.linux\packages\Packer.Windows.x64\packer.exe-PACKERSPACE-plugin-PACKERSPACE-packer-post-processor-vsphere manifest:E:\documents\Petrik\documents\operations\calvinverse\base.linux\packages\Packer.Windows.x64\packer.exe-PACKERSPACE-plugin-PACKERSPACE-packer-post-processor-manifest atlas:E:\documents\Petrik\documents\operations\calvinverse\base.linux\packages\Packer.Windows.x64\packer.exe-PACKERSPACE-plugin-PACKERSPACE-packer-post-processor-atlas docker-push:E:\documents\Petrik\documents\operations\calvinverse\base.linux\packages\Packer.Windows.x64\packer.exe-PACKERSPACE-plugin-PACKERSPACE-packer-post-processor-docker-push docker-import:E:\documents\Petrik\documents\operations\calvinverse\base.linux\packages\Packer.Windows.x64\packer.exe-PACKERSPACE-plugin-PACKERSPACE-packer-post-processor-docker-import checksum:E:\documents\Petrik\documents\operations\calvinverse\base.linux\packages\Packer.Windows.x64\packer.exe-PACKERSPACE-plugin-PACKERSPACE-packer-post-processor-checksum amazon-import:E:\documents\Petrik\documents\operations\calvinverse\base.linux\packages\Packer.Windows.x64\packer.exe-PACKERSPACE-plugin-PACKERSPACE-packer-post-processor-amazon-import docker-save:E:\documents\Petrik\documents\operations\calvinverse\base.linux\packages\Packer.Windows.x64\packer.exe-PACKERSPACE-plugin-PACKERSPACE-packer-post-processor-docker-save googlecompute-export:E:\documents\Petrik\documents\operations\calvinverse\base.linux\packages\Packer.Windows.x64\packer.exe-PACKERSPACE-plugin-PACKERSPACE-packer-post-processor-googlecompute-export alicloud-import:E:\documents\Petrik\documents\operations\calvinverse\base.linux\packages\Packer.Windows.x64\packer.exe-PACKERSPACE-plugin-PACKERSPACE-packer-post-processor-alicloud-import vagrant-cloud:E:\documents\Petrik\documents\operations\calvinverse\base.linux\packages\Packer.Windows.x64\packer.exe-PACKERSPACE-plugin-PACKERSPACE-packer-post-processor-vagrant-cloud artifice:E:\documents\Petrik\documents\operations\calvinverse\base.linux\packages\Packer.Windows.x64\packer.exe-PACKERSPACE-plugin-PACKERSPACE-packer-post-processor-artifice vagrant:E:\documents\Petrik\documents\operations\calvinverse\base.linux\packages\Packer.Windows.x64\packer.exe-PACKERSPACE-plugin-PACKERSPACE-packer-post-processor-vagrant docker-tag:E:\documents\Petrik\documents\operations\calvinverse\base.linux\packages\Packer.Windows.x64\packer.exe-PACKERSPACE-plugin-PACKERSPACE-packer-post-processor-docker-tag vsphere-template:E:\documents\Petrik\documents\operations\calvinverse\base.linux\packages\Packer.Windows.x64\packer.exe-PACKERSPACE-plugin-PACKERSPACE-packer-post-processor-vsphere-template compress:E:\documents\Petrik\documents\operations\calvinverse\base.linux\packages\Packer.Windows.x64\packer.exe-PACKERSPACE-plugin-PACKERSPACE-packer-post-processor-compress] Provisioners:map[chef-solo:E:\documents\Petrik\documents\operations\calvinverse\base.linux\packages\Packer.Windows.x64\packer.exe-PACKERSPACE-plugin-PACKERSPACE-packer-provisioner-chef-solo salt-masterless:E:\documents\Petrik\documents\operations\calvinverse\base.linux\packages\Packer.Windows.x64\packer.exe-PACKERSPACE-plugin-PACKERSPACE-packer-provisioner-salt-masterless ansible-local:E:\documents\Petrik\documents\operations\calvinverse\base.linux\packages\Packer.Windows.x64\packer.exe-PACKERSPACE-plugin-PACKERSPACE-packer-provisioner-ansible-local puppet-masterless:E:\documents\Petrik\documents\operations\calvinverse\base.linux\packages\Packer.Windows.x64\packer.exe-PACKERSPACE-plugin-PACKERSPACE-packer-provisioner-puppet-masterless windows-shell:E:\documents\Petrik\documents\operations\calvinverse\base.linux\packages\Packer.Windows.x64\packer.exe-PACKERSPACE-plugin-PACKERSPACE-packer-provisioner-windows-shell ansible:E:\documents\Petrik\documents\operations\calvinverse\base.linux\packages\Packer.Windows.x64\packer.exe-PACKERSPACE-plugin-PACKERSPACE-packer-provisioner-ansible shell-local:E:\documents\Petrik\documents\operations\calvinverse\base.linux\packages\Packer.Windows.x64\packer.exe-PACKERSPACE-plugin-PACKERSPACE-packer-provisioner-shell-local chef-client:E:\documents\Petrik\documents\operations\calvinverse\base.linux\packages\Packer.Windows.x64\packer.exe-PACKERSPACE-plugin-PACKERSPACE-packer-provisioner-chef-client converge:E:\documents\Petrik\documents\operations\calvinverse\base.linux\packages\Packer.Windows.x64\packer.exe-PACKERSPACE-plugin-PACKERSPACE-packer-provisioner-converge file:E:\documents\Petrik\documents\operations\calvinverse\base.linux\packages\Packer.Windows.x64\packer.exe-PACKERSPACE-plugin-PACKERSPACE-packer-provisioner-file windows-restart:E:\documents\Petrik\documents\operations\calvinverse\base.linux\packages\Packer.Windows.x64\packer.exe-PACKERSPACE-plugin-PACKERSPACE-packer-provisioner-windows-restart powershell:E:\documents\Petrik\documents\operations\calvinverse\base.linux\packages\Packer.Windows.x64\packer.exe-PACKERSPACE-plugin-PACKERSPACE-packer-provisioner-powershell puppet-server:E:\documents\Petrik\documents\operations\calvinverse\base.linux\packages\Packer.Windows.x64\packer.exe-PACKERSPACE-plugin-PACKERSPACE-packer-provisioner-puppet-server shell:E:\documents\Petrik\documents\operations\calvinverse\base.linux\packages\Packer.Windows.x64\packer.exe-PACKERSPACE-plugin-PACKERSPACE-packer-provisioner-shell]} | |
2017/12/13 20:17:58 Setting cache directory: E:\documents\Petrik\documents\operations\calvinverse\base.linux\packer_cache | |
2017/12/13 20:17:58 Loading builder: hyperv-iso | |
2017/12/13 20:17:58 Plugin could not be found. Checking same directory as executable. | |
2017/12/13 20:17:58 Current exe path: E:\documents\Petrik\documents\operations\calvinverse\base.linux\packages\Packer.Windows.x64\packer.exe | |
2017/12/13 20:17:58 Creating plugin client for path: E:\documents\Petrik\documents\operations\calvinverse\base.linux\packages\Packer.Windows.x64\packer.exe | |
2017/12/13 20:17:58 Starting plugin: E:\documents\Petrik\documents\operations\calvinverse\base.linux\packages\Packer.Windows.x64\packer.exe []string{"E:\\documents\\Petrik\\documents\\operations\\calvinverse\\base.linux\\packages\\Packer.Windows.x64\\packer.exe", "plugin", "packer-builder-hyperv-iso"} | |
2017/12/13 20:17:58 Waiting for RPC address for: E:\documents\Petrik\documents\operations\calvinverse\base.linux\packages\Packer.Windows.x64\packer.exe | |
2017/12/13 20:17:58 packer.exe: 2017/12/13 20:17:58 [INFO] Packer version: 1.1.3 | |
2017/12/13 20:17:58 packer.exe: 2017/12/13 20:17:58 Packer Target OS/Arch: windows amd64 | |
2017/12/13 20:17:58 packer.exe: 2017/12/13 20:17:58 Built with Go Version: go1.9 | |
2017/12/13 20:17:58 packer.exe: 2017/12/13 20:17:58 Attempting to open config file: C:\Users\petrik\AppData\Roaming\packer.config | |
2017/12/13 20:17:58 packer.exe: 2017/12/13 20:17:58 [WARN] Config file doesn't exist: C:\Users\petrik\AppData\Roaming\packer.config | |
2017/12/13 20:17:58 packer.exe: 2017/12/13 20:17:58 Packer config: &{DisableCheckpoint:false DisableCheckpointSignature:false PluginMinPort:10000 PluginMaxPort:25000 Builders:map[] PostProcessors:map[] Provisioners:map[]} | |
2017/12/13 20:17:58 packer.exe: 2017/12/13 20:17:58 Setting cache directory: E:\documents\Petrik\documents\operations\calvinverse\base.linux\packer_cache | |
2017/12/13 20:17:58 packer.exe: 2017/12/13 20:17:58 args: []string{"packer-builder-hyperv-iso"} | |
2017/12/13 20:17:58 packer.exe: 2017/12/13 20:17:58 Plugin minimum port: 10000 | |
2017/12/13 20:17:58 packer.exe: 2017/12/13 20:17:58 Plugin maximum port: 25000 | |
2017/12/13 20:17:58 packer.exe: 2017/12/13 20:17:58 Plugin address: tcp 127.0.0.1:10000 | |
2017/12/13 20:17:58 packer.exe: 2017/12/13 20:17:58 Waiting for connection... | |
2017/12/13 20:17:58 packer.exe: 2017/12/13 20:17:58 Serving a plugin connection... | |
2017/12/13 20:17:58 Loading provisioner: shell-local | |
2017/12/13 20:17:58 Plugin could not be found. Checking same directory as executable. | |
2017/12/13 20:17:58 Current exe path: E:\documents\Petrik\documents\operations\calvinverse\base.linux\packages\Packer.Windows.x64\packer.exe | |
2017/12/13 20:17:58 Creating plugin client for path: E:\documents\Petrik\documents\operations\calvinverse\base.linux\packages\Packer.Windows.x64\packer.exe | |
2017/12/13 20:17:58 Starting plugin: E:\documents\Petrik\documents\operations\calvinverse\base.linux\packages\Packer.Windows.x64\packer.exe []string{"E:\\documents\\Petrik\\documents\\operations\\calvinverse\\base.linux\\packages\\Packer.Windows.x64\\packer.exe", "plugin", "packer-provisioner-shell-local"} | |
2017/12/13 20:17:58 Waiting for RPC address for: E:\documents\Petrik\documents\operations\calvinverse\base.linux\packages\Packer.Windows.x64\packer.exe | |
2017/12/13 20:17:58 packer.exe: 2017/12/13 20:17:58 [INFO] Packer version: 1.1.3 | |
2017/12/13 20:17:58 packer.exe: 2017/12/13 20:17:58 Packer Target OS/Arch: windows amd64 | |
2017/12/13 20:17:58 packer.exe: 2017/12/13 20:17:58 Built with Go Version: go1.9 | |
2017/12/13 20:17:58 packer.exe: 2017/12/13 20:17:58 Attempting to open config file: C:\Users\petrik\AppData\Roaming\packer.config | |
2017/12/13 20:17:58 packer.exe: 2017/12/13 20:17:58 [WARN] Config file doesn't exist: C:\Users\petrik\AppData\Roaming\packer.config | |
2017/12/13 20:17:58 packer.exe: 2017/12/13 20:17:58 Packer config: &{DisableCheckpoint:false DisableCheckpointSignature:false PluginMinPort:10000 PluginMaxPort:25000 Builders:map[] PostProcessors:map[] Provisioners:map[]} | |
2017/12/13 20:17:58 packer.exe: 2017/12/13 20:17:58 Setting cache directory: E:\documents\Petrik\documents\operations\calvinverse\base.linux\packer_cache | |
2017/12/13 20:17:58 packer.exe: 2017/12/13 20:17:58 args: []string{"packer-provisioner-shell-local"} | |
2017/12/13 20:17:58 packer.exe: 2017/12/13 20:17:58 Plugin minimum port: 10000 | |
2017/12/13 20:17:58 packer.exe: 2017/12/13 20:17:58 Plugin maximum port: 25000 | |
2017/12/13 20:17:58 packer.exe: 2017/12/13 20:17:58 Plugin address: tcp 127.0.0.1:10000 | |
2017/12/13 20:17:58 packer.exe: 2017/12/13 20:17:58 Waiting for connection... | |
2017/12/13 20:17:58 packer.exe: 2017/12/13 20:17:58 Serving a plugin connection... | |
2017/12/13 20:17:58 Loading provisioner: shell-local | |
2017/12/13 20:17:58 Plugin could not be found. Checking same directory as executable. | |
2017/12/13 20:17:58 Current exe path: E:\documents\Petrik\documents\operations\calvinverse\base.linux\packages\Packer.Windows.x64\packer.exe | |
2017/12/13 20:17:58 Creating plugin client for path: E:\documents\Petrik\documents\operations\calvinverse\base.linux\packages\Packer.Windows.x64\packer.exe | |
2017/12/13 20:17:58 Starting plugin: E:\documents\Petrik\documents\operations\calvinverse\base.linux\packages\Packer.Windows.x64\packer.exe []string{"E:\\documents\\Petrik\\documents\\operations\\calvinverse\\base.linux\\packages\\Packer.Windows.x64\\packer.exe", "plugin", "packer-provisioner-shell-local"} | |
2017/12/13 20:17:58 Waiting for RPC address for: E:\documents\Petrik\documents\operations\calvinverse\base.linux\packages\Packer.Windows.x64\packer.exe | |
2017/12/13 20:17:58 packer.exe: 2017/12/13 20:17:58 [INFO] Packer version: 1.1.3 | |
2017/12/13 20:17:58 packer.exe: 2017/12/13 20:17:58 Packer Target OS/Arch: windows amd64 | |
2017/12/13 20:17:58 packer.exe: 2017/12/13 20:17:58 Built with Go Version: go1.9 | |
2017/12/13 20:17:58 packer.exe: 2017/12/13 20:17:58 Attempting to open config file: C:\Users\petrik\AppData\Roaming\packer.config | |
2017/12/13 20:17:58 packer.exe: 2017/12/13 20:17:58 [WARN] Config file doesn't exist: C:\Users\petrik\AppData\Roaming\packer.config | |
2017/12/13 20:17:58 packer.exe: 2017/12/13 20:17:58 Packer config: &{DisableCheckpoint:false DisableCheckpointSignature:false PluginMinPort:10000 PluginMaxPort:25000 Builders:map[] PostProcessors:map[] Provisioners:map[]} | |
2017/12/13 20:17:58 packer.exe: 2017/12/13 20:17:58 Setting cache directory: E:\documents\Petrik\documents\operations\calvinverse\base.linux\packer_cache | |
2017/12/13 20:17:58 packer.exe: 2017/12/13 20:17:58 args: []string{"packer-provisioner-shell-local"} | |
2017/12/13 20:17:58 packer.exe: 2017/12/13 20:17:58 Plugin minimum port: 10000 | |
2017/12/13 20:17:58 packer.exe: 2017/12/13 20:17:58 Plugin maximum port: 25000 | |
2017/12/13 20:17:58 packer.exe: 2017/12/13 20:17:58 Plugin address: tcp 127.0.0.1:10000 | |
2017/12/13 20:17:58 packer.exe: 2017/12/13 20:17:58 Waiting for connection... | |
2017/12/13 20:17:58 packer.exe: 2017/12/13 20:17:58 Serving a plugin connection... | |
2017/12/13 20:17:58 Loading provisioner: shell | |
2017/12/13 20:17:58 Plugin could not be found. Checking same directory as executable. | |
2017/12/13 20:17:58 Current exe path: E:\documents\Petrik\documents\operations\calvinverse\base.linux\packages\Packer.Windows.x64\packer.exe | |
2017/12/13 20:17:58 Creating plugin client for path: E:\documents\Petrik\documents\operations\calvinverse\base.linux\packages\Packer.Windows.x64\packer.exe | |
2017/12/13 20:17:58 Starting plugin: E:\documents\Petrik\documents\operations\calvinverse\base.linux\packages\Packer.Windows.x64\packer.exe []string{"E:\\documents\\Petrik\\documents\\operations\\calvinverse\\base.linux\\packages\\Packer.Windows.x64\\packer.exe", "plugin", "packer-provisioner-shell"} | |
2017/12/13 20:17:58 Waiting for RPC address for: E:\documents\Petrik\documents\operations\calvinverse\base.linux\packages\Packer.Windows.x64\packer.exe | |
2017/12/13 20:17:59 packer.exe: 2017/12/13 20:17:59 [INFO] Packer version: 1.1.3 | |
2017/12/13 20:17:59 packer.exe: 2017/12/13 20:17:59 Packer Target OS/Arch: windows amd64 | |
2017/12/13 20:17:59 packer.exe: 2017/12/13 20:17:59 Built with Go Version: go1.9 | |
2017/12/13 20:17:59 packer.exe: 2017/12/13 20:17:59 Attempting to open config file: C:\Users\petrik\AppData\Roaming\packer.config | |
2017/12/13 20:17:59 packer.exe: 2017/12/13 20:17:59 [WARN] Config file doesn't exist: C:\Users\petrik\AppData\Roaming\packer.config | |
2017/12/13 20:17:59 packer.exe: 2017/12/13 20:17:59 Packer config: &{DisableCheckpoint:false DisableCheckpointSignature:false PluginMinPort:10000 PluginMaxPort:25000 Builders:map[] PostProcessors:map[] Provisioners:map[]} | |
2017/12/13 20:17:59 packer.exe: 2017/12/13 20:17:59 Setting cache directory: E:\documents\Petrik\documents\operations\calvinverse\base.linux\packer_cache | |
2017/12/13 20:17:59 packer.exe: 2017/12/13 20:17:59 args: []string{"packer-provisioner-shell"} | |
2017/12/13 20:17:59 packer.exe: 2017/12/13 20:17:59 Plugin minimum port: 10000 | |
2017/12/13 20:17:59 packer.exe: 2017/12/13 20:17:59 Plugin maximum port: 25000 | |
2017/12/13 20:17:59 packer.exe: 2017/12/13 20:17:59 Plugin address: tcp 127.0.0.1:10000 | |
2017/12/13 20:17:59 packer.exe: 2017/12/13 20:17:59 Waiting for connection... | |
2017/12/13 20:17:59 packer.exe: 2017/12/13 20:17:59 Serving a plugin connection... | |
2017/12/13 20:17:59 Loading provisioner: shell | |
2017/12/13 20:17:59 Plugin could not be found. Checking same directory as executable. | |
2017/12/13 20:17:59 Current exe path: E:\documents\Petrik\documents\operations\calvinverse\base.linux\packages\Packer.Windows.x64\packer.exe | |
2017/12/13 20:17:59 Creating plugin client for path: E:\documents\Petrik\documents\operations\calvinverse\base.linux\packages\Packer.Windows.x64\packer.exe | |
2017/12/13 20:17:59 Starting plugin: E:\documents\Petrik\documents\operations\calvinverse\base.linux\packages\Packer.Windows.x64\packer.exe []string{"E:\\documents\\Petrik\\documents\\operations\\calvinverse\\base.linux\\packages\\Packer.Windows.x64\\packer.exe", "plugin", "packer-provisioner-shell"} | |
2017/12/13 20:17:59 Waiting for RPC address for: E:\documents\Petrik\documents\operations\calvinverse\base.linux\packages\Packer.Windows.x64\packer.exe | |
2017/12/13 20:17:59 packer.exe: 2017/12/13 20:17:59 [INFO] Packer version: 1.1.3 | |
2017/12/13 20:17:59 packer.exe: 2017/12/13 20:17:59 Packer Target OS/Arch: windows amd64 | |
2017/12/13 20:17:59 packer.exe: 2017/12/13 20:17:59 Built with Go Version: go1.9 | |
2017/12/13 20:17:59 packer.exe: 2017/12/13 20:17:59 Attempting to open config file: C:\Users\petrik\AppData\Roaming\packer.config | |
2017/12/13 20:17:59 packer.exe: 2017/12/13 20:17:59 [WARN] Config file doesn't exist: C:\Users\petrik\AppData\Roaming\packer.config | |
2017/12/13 20:17:59 packer.exe: 2017/12/13 20:17:59 Packer config: &{DisableCheckpoint:false DisableCheckpointSignature:false PluginMinPort:10000 PluginMaxPort:25000 Builders:map[] PostProcessors:map[] Provisioners:map[]} | |
2017/12/13 20:17:59 packer.exe: 2017/12/13 20:17:59 Setting cache directory: E:\documents\Petrik\documents\operations\calvinverse\base.linux\packer_cache | |
2017/12/13 20:17:59 packer.exe: 2017/12/13 20:17:59 args: []string{"packer-provisioner-shell"} | |
2017/12/13 20:17:59 packer.exe: 2017/12/13 20:17:59 Plugin minimum port: 10000 | |
2017/12/13 20:17:59 packer.exe: 2017/12/13 20:17:59 Plugin maximum port: 25000 | |
2017/12/13 20:17:59 packer.exe: 2017/12/13 20:17:59 Plugin address: tcp 127.0.0.1:10000 | |
2017/12/13 20:17:59 packer.exe: 2017/12/13 20:17:59 Waiting for connection... | |
2017/12/13 20:17:59 packer.exe: 2017/12/13 20:17:59 Serving a plugin connection... | |
2017/12/13 20:17:59 Loading provisioner: shell | |
2017/12/13 20:17:59 Plugin could not be found. Checking same directory as executable. | |
2017/12/13 20:17:59 Current exe path: E:\documents\Petrik\documents\operations\calvinverse\base.linux\packages\Packer.Windows.x64\packer.exe | |
2017/12/13 20:17:59 Creating plugin client for path: E:\documents\Petrik\documents\operations\calvinverse\base.linux\packages\Packer.Windows.x64\packer.exe | |
2017/12/13 20:17:59 Starting plugin: E:\documents\Petrik\documents\operations\calvinverse\base.linux\packages\Packer.Windows.x64\packer.exe []string{"E:\\documents\\Petrik\\documents\\operations\\calvinverse\\base.linux\\packages\\Packer.Windows.x64\\packer.exe", "plugin", "packer-provisioner-shell"} | |
2017/12/13 20:17:59 Waiting for RPC address for: E:\documents\Petrik\documents\operations\calvinverse\base.linux\packages\Packer.Windows.x64\packer.exe | |
2017/12/13 20:17:59 packer.exe: 2017/12/13 20:17:59 [INFO] Packer version: 1.1.3 | |
2017/12/13 20:17:59 packer.exe: 2017/12/13 20:17:59 Packer Target OS/Arch: windows amd64 | |
2017/12/13 20:17:59 packer.exe: 2017/12/13 20:17:59 Built with Go Version: go1.9 | |
2017/12/13 20:17:59 packer.exe: 2017/12/13 20:17:59 Attempting to open config file: C:\Users\petrik\AppData\Roaming\packer.config | |
2017/12/13 20:17:59 packer.exe: 2017/12/13 20:17:59 [WARN] Config file doesn't exist: C:\Users\petrik\AppData\Roaming\packer.config | |
2017/12/13 20:17:59 packer.exe: 2017/12/13 20:17:59 Packer config: &{DisableCheckpoint:false DisableCheckpointSignature:false PluginMinPort:10000 PluginMaxPort:25000 Builders:map[] PostProcessors:map[] Provisioners:map[]} | |
2017/12/13 20:17:59 packer.exe: 2017/12/13 20:17:59 Setting cache directory: E:\documents\Petrik\documents\operations\calvinverse\base.linux\packer_cache | |
2017/12/13 20:17:59 packer.exe: 2017/12/13 20:17:59 args: []string{"packer-provisioner-shell"} | |
2017/12/13 20:17:59 packer.exe: 2017/12/13 20:17:59 Plugin minimum port: 10000 | |
2017/12/13 20:17:59 packer.exe: 2017/12/13 20:17:59 Plugin maximum port: 25000 | |
2017/12/13 20:17:59 packer.exe: 2017/12/13 20:17:59 Plugin address: tcp 127.0.0.1:10000 | |
2017/12/13 20:17:59 packer.exe: 2017/12/13 20:17:59 Waiting for connection... | |
2017/12/13 20:17:59 packer.exe: 2017/12/13 20:17:59 Serving a plugin connection... | |
2017/12/13 20:17:59 Loading provisioner: chef-solo | |
2017/12/13 20:17:59 Plugin could not be found. Checking same directory as executable. | |
2017/12/13 20:17:59 Current exe path: E:\documents\Petrik\documents\operations\calvinverse\base.linux\packages\Packer.Windows.x64\packer.exe | |
2017/12/13 20:17:59 Creating plugin client for path: E:\documents\Petrik\documents\operations\calvinverse\base.linux\packages\Packer.Windows.x64\packer.exe | |
2017/12/13 20:17:59 Starting plugin: E:\documents\Petrik\documents\operations\calvinverse\base.linux\packages\Packer.Windows.x64\packer.exe []string{"E:\\documents\\Petrik\\documents\\operations\\calvinverse\\base.linux\\packages\\Packer.Windows.x64\\packer.exe", "plugin", "packer-provisioner-chef-solo"} | |
2017/12/13 20:17:59 Waiting for RPC address for: E:\documents\Petrik\documents\operations\calvinverse\base.linux\packages\Packer.Windows.x64\packer.exe | |
2017/12/13 20:17:59 packer.exe: 2017/12/13 20:17:59 [INFO] Packer version: 1.1.3 | |
2017/12/13 20:17:59 packer.exe: 2017/12/13 20:17:59 Packer Target OS/Arch: windows amd64 | |
2017/12/13 20:17:59 packer.exe: 2017/12/13 20:17:59 Built with Go Version: go1.9 | |
2017/12/13 20:17:59 packer.exe: 2017/12/13 20:17:59 Attempting to open config file: C:\Users\petrik\AppData\Roaming\packer.config | |
2017/12/13 20:17:59 packer.exe: 2017/12/13 20:17:59 [WARN] Config file doesn't exist: C:\Users\petrik\AppData\Roaming\packer.config | |
2017/12/13 20:17:59 packer.exe: 2017/12/13 20:17:59 Packer config: &{DisableCheckpoint:false DisableCheckpointSignature:false PluginMinPort:10000 PluginMaxPort:25000 Builders:map[] PostProcessors:map[] Provisioners:map[]} | |
2017/12/13 20:17:59 packer.exe: 2017/12/13 20:17:59 Setting cache directory: E:\documents\Petrik\documents\operations\calvinverse\base.linux\packer_cache | |
2017/12/13 20:17:59 packer.exe: 2017/12/13 20:17:59 args: []string{"packer-provisioner-chef-solo"} | |
2017/12/13 20:17:59 packer.exe: 2017/12/13 20:17:59 Plugin minimum port: 10000 | |
2017/12/13 20:17:59 packer.exe: 2017/12/13 20:17:59 Plugin maximum port: 25000 | |
2017/12/13 20:17:59 packer.exe: 2017/12/13 20:17:59 Plugin address: tcp 127.0.0.1:10000 | |
2017/12/13 20:17:59 packer.exe: 2017/12/13 20:17:59 Waiting for connection... | |
2017/12/13 20:17:59 packer.exe: 2017/12/13 20:17:59 Serving a plugin connection... | |
2017/12/13 20:17:59 Loading provisioner: shell | |
2017/12/13 20:17:59 Plugin could not be found. Checking same directory as executable. | |
2017/12/13 20:17:59 Current exe path: E:\documents\Petrik\documents\operations\calvinverse\base.linux\packages\Packer.Windows.x64\packer.exe | |
2017/12/13 20:17:59 Creating plugin client for path: E:\documents\Petrik\documents\operations\calvinverse\base.linux\packages\Packer.Windows.x64\packer.exe | |
2017/12/13 20:17:59 Starting plugin: E:\documents\Petrik\documents\operations\calvinverse\base.linux\packages\Packer.Windows.x64\packer.exe []string{"E:\\documents\\Petrik\\documents\\operations\\calvinverse\\base.linux\\packages\\Packer.Windows.x64\\packer.exe", "plugin", "packer-provisioner-shell"} | |
2017/12/13 20:17:59 Waiting for RPC address for: E:\documents\Petrik\documents\operations\calvinverse\base.linux\packages\Packer.Windows.x64\packer.exe | |
2017/12/13 20:17:59 packer.exe: 2017/12/13 20:17:59 [INFO] Packer version: 1.1.3 | |
2017/12/13 20:17:59 packer.exe: 2017/12/13 20:17:59 Packer Target OS/Arch: windows amd64 | |
2017/12/13 20:17:59 packer.exe: 2017/12/13 20:17:59 Built with Go Version: go1.9 | |
2017/12/13 20:17:59 packer.exe: 2017/12/13 20:17:59 Attempting to open config file: C:\Users\petrik\AppData\Roaming\packer.config | |
2017/12/13 20:17:59 packer.exe: 2017/12/13 20:17:59 [WARN] Config file doesn't exist: C:\Users\petrik\AppData\Roaming\packer.config | |
2017/12/13 20:17:59 packer.exe: 2017/12/13 20:17:59 Packer config: &{DisableCheckpoint:false DisableCheckpointSignature:false PluginMinPort:10000 PluginMaxPort:25000 Builders:map[] PostProcessors:map[] Provisioners:map[]} | |
2017/12/13 20:17:59 packer.exe: 2017/12/13 20:17:59 Setting cache directory: E:\documents\Petrik\documents\operations\calvinverse\base.linux\packer_cache | |
2017/12/13 20:17:59 packer.exe: 2017/12/13 20:17:59 args: []string{"packer-provisioner-shell"} | |
2017/12/13 20:17:59 packer.exe: 2017/12/13 20:17:59 Plugin minimum port: 10000 | |
2017/12/13 20:17:59 packer.exe: 2017/12/13 20:17:59 Plugin maximum port: 25000 | |
2017/12/13 20:17:59 packer.exe: 2017/12/13 20:17:59 Plugin address: tcp 127.0.0.1:10000 | |
2017/12/13 20:17:59 packer.exe: 2017/12/13 20:17:59 Waiting for connection... | |
2017/12/13 20:17:59 packer.exe: 2017/12/13 20:17:59 Serving a plugin connection... | |
2017/12/13 20:17:59 ui: [1;32mhyperv-iso output will be in this color.[0m | |
2017/12/13 20:17:59 ui: | |
2017/12/13 20:17:59 Build debug mode: false | |
2017/12/13 20:17:59 Force build: false | |
2017/12/13 20:17:59 On error: | |
2017/12/13 20:17:59 Preparing build: hyperv-iso | |
2017/12/13 20:17:59 packer.exe: 2017/12/13 20:17:59 DiskSize: 40960 | |
2017/12/13 20:17:59 packer.exe: 2017/12/13 20:17:59 RamSize: 2048 | |
2017/12/13 20:17:59 packer.exe: 2017/12/13 20:17:59 VMName: ubuntu-16-04-1 | |
2017/12/13 20:17:59 packer.exe: 2017/12/13 20:17:59 Using switch External switch | |
2017/12/13 20:17:59 packer.exe: 2017/12/13 20:17:59 SwitchName: External switch | |
2017/12/13 20:17:59 Waiting on builds to complete... | |
2017/12/13 20:17:59 Starting build run: hyperv-iso | |
2017/12/13 20:17:59 Running builder: hyperv-iso | |
2017/12/13 20:17:59 [INFO] (telemetry) Starting builder hyperv-iso | |
2017/12/13 20:17:59 packer.exe: 2017/12/13 20:17:59 Enter method: verifyPSVersion | |
2017/12/13 20:18:00 packer.exe: 2017/12/13 20:18:00 $host.version.Major output: 5 | |
2017/12/13 20:18:00 packer.exe: 2017/12/13 20:18:00 Enter method: verifyPSHypervModule | |
2017/12/13 20:18:00 packer.exe: 2017/12/13 20:18:00 Enter method: verifyHypervPermissions | |
2017/12/13 20:18:01 ui: [1;32m==> hyperv-iso: Creating temporary directory...[0m | |
2017/12/13 20:18:01 ui: [1;32m==> hyperv-iso: Downloading or copying ISO[0m | |
2017/12/13 20:18:01 ui: [0;32m hyperv-iso: Downloading or copying: file://F:/iso/linux/ubuntu-16.04.1-server-amd64.iso[0m | |
2017/12/13 20:18:01 packer.exe: 2017/12/13 20:18:01 Parsed URL: &url.URL{Scheme:"file", Opaque:"", User:(*url.Userinfo)(nil), Host:"F:", Path:"/iso/linux/ubuntu-16.04.1-server-amd64.iso", RawPath:"", ForceQuery:false, RawQuery:"", Fragment:""} | |
2017/12/13 20:18:01 packer.exe: 2017/12/13 20:18:01 [DEBUG] Using local file: /iso/linux/ubuntu-16.04.1-server-amd64.iso | |
2017/12/13 20:18:01 ui: [0;32m hyperv-iso: Error downloading: CreateFile /iso/linux/ubuntu-16.04.1-server-amd64.iso: The system cannot find the path specified.[0m | |
2017/12/13 20:18:01 ui error: [1;31m==> hyperv-iso: ISO download failed.[0m | |
2017/12/13 20:18:01 ui: [1;32m==> hyperv-iso: Deleting output directory...[0m | |
2017/12/13 20:18:01 ui: [1;32m==> hyperv-iso: Deleting temporary directory...[0m | |
2017/12/13 20:18:01 [INFO] (telemetry) ending hyperv-iso | |
2017/12/13 20:18:01 [INFO] (telemetry) found error: ISO download failed. | |
2017/12/13 20:18:01 ui error: [1;31mBuild 'hyperv-iso' errored: ISO download failed.[0m | |
2017/12/13 20:18:01 Builds completed. Waiting on interrupt barrier... | |
2017/12/13 20:18:01 machine readable: error-count []string{"1"} | |
2017/12/13 20:18:01 ui error: | |
==> Some builds didn't complete successfully and had errors: | |
2017/12/13 20:18:01 machine readable: hyperv-iso,error []string{"ISO download failed."} | |
2017/12/13 20:18:01 ui error: --> hyperv-iso: ISO download failed. | |
2017/12/13 20:18:01 ui: | |
==> Builds finished but no artifacts were created. | |
2017/12/13 20:18:01 [INFO] (telemetry) Finalizing. | |
2017/12/13 20:18:01 waiting for all plugin processes to complete... | |
2017/12/13 20:18:01 E:\documents\Petrik\documents\operations\calvinverse\base.linux\packages\Packer.Windows.x64\packer.exe: plugin process exited | |
2017/12/13 20:18:01 E:\documents\Petrik\documents\operations\calvinverse\base.linux\packages\Packer.Windows.x64\packer.exe: plugin process exited | |
2017/12/13 20:18:01 E:\documents\Petrik\documents\operations\calvinverse\base.linux\packages\Packer.Windows.x64\packer.exe: plugin process exited | |
2017/12/13 20:18:01 E:\documents\Petrik\documents\operations\calvinverse\base.linux\packages\Packer.Windows.x64\packer.exe: plugin process exited | |
2017/12/13 20:18:01 E:\documents\Petrik\documents\operations\calvinverse\base.linux\packages\Packer.Windows.x64\packer.exe: plugin process exited | |
2017/12/13 20:18:01 E:\documents\Petrik\documents\operations\calvinverse\base.linux\packages\Packer.Windows.x64\packer.exe: plugin process exited | |
2017/12/13 20:18:01 E:\documents\Petrik\documents\operations\calvinverse\base.linux\packages\Packer.Windows.x64\packer.exe: plugin process exited | |
2017/12/13 20:18:01 E:\documents\Petrik\documents\operations\calvinverse\base.linux\packages\Packer.Windows.x64\packer.exe: plugin process exited |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"admin_username": "thebigkahuna", | |
"admin_password": "TheB1gK@huna", | |
"cookbook_name": "base_linux", | |
"dir_cookbooks_src": "E:/documents/Petrik/documents/operations/calvinverse/base.linux/build/temp/cookbooks", | |
"dir_cookbooks_vendors": "E:/documents/Petrik/documents/operations/calvinverse/base.linux/berks/cookbooks", | |
"dir_deploy": "E:/documents/Petrik/documents/operations/calvinverse/base.linux/build/deploy", | |
"dir_http_user": "E:/documents/Petrik/documents/operations/calvinverse/base.linux/build/temp/ubuntu/http", | |
"dir_scripts_user": "E:/documents/Petrik/documents/operations/calvinverse/base.linux/build/temp/scripts", | |
"dir_temp": "E:/documents/Petrik/documents/operations/calvinverse/base.linux/build/temp", | |
"iso_checksum": "29A8B9009509B39D542ECB229787CDF48F05E739A932289DE9E9858D7C487C80", | |
"iso_url": "F:/iso/linux/ubuntu-16.04.1-server-amd64.iso", | |
"vm_name": "ubuntu-16-04-1", | |
"vm_ram_size_in_mb": "2048", | |
"vm_switch_name": "External switch", | |
"vm_switch_vlan": "" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment