Created
October 18, 2016 10:20
-
-
Save berney/0dd666256ea2f8cf030a65109d3360f0 to your computer and use it in GitHub Desktop.
Packer using vmware-iso builder remote ESXi with modified boxcutter/macos templates failure due to VMware Tools Install step failure
This file contains 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
{ | |
"_command": "Build with `packer build macos.json`", | |
"builders": [ | |
{ | |
"boot_wait": "2s", | |
"disk_size": "{{ user `disk_size` }}", | |
"guest_os_type": "{{ user `vmware_guest_os_type` }}", | |
"iso_checksum_type": "none", | |
"iso_url": "{{ user `iso_url` }}", | |
"output_directory": "output-{{ user `vm_name` }}-vmware-iso", | |
"shutdown_command": "echo '{{ user `ssh_username` }}'|sudo -S shutdown -h now", | |
"skip_compaction": true, | |
"ssh_password": "{{ user `ssh_password` }}", | |
"ssh_port": 22, | |
"ssh_username": "{{ user `ssh_username` }}", | |
"ssh_wait_timeout": "10000s", | |
"tools_upload_flavor": "darwin", | |
"type": "vmware-iso", | |
"vm_name": "{{ user `vm_name` }}", | |
"vmx_data": { | |
"cpuid.coresPerSocket": "1", | |
"ehci.present": "TRUE", | |
"firmware": "efi", | |
"hpet0.present": "TRUE", | |
"ich7m.present": "TRUE", | |
"keyboardAndMouseProfile": "macProfile", | |
"memsize": "{{ user `memory` }}", | |
"numvcpus": "{{ user `cpus` }}", | |
"smc.present": "TRUE", | |
"usb.present": "TRUE", | |
"ethernet0.networkName": "{{ user `vm_networkName` }}" | |
}, | |
"remote_type": "esx5", | |
"remote_host": "esxi", | |
"remote_username": "root", | |
"remote_private_key_file": "packer_ssh_key" | |
}, | |
{ | |
"boot_wait": "2s", | |
"disk_size": "{{ user `disk_size` }}", | |
"guest_additions_mode": "disable", | |
"guest_os_type": "{{ user `virtualbox_guest_os_type` }}", | |
"hard_drive_interface": "sata", | |
"iso_checksum_type": "none", | |
"iso_interface": "sata", | |
"iso_url": "{{ user `iso_url` }}", | |
"output_directory": "output-{{ user `vm_name` }}-virtualbox-iso", | |
"shutdown_command": "echo '{{ user `ssh_username` }}'|sudo -S shutdown -h now", | |
"ssh_password": "{{ user `ssh_password` }}", | |
"ssh_port": 22, | |
"ssh_username": "{{ user `ssh_username` }}", | |
"ssh_wait_timeout": "10000s", | |
"type": "virtualbox-iso", | |
"vboxmanage": [ | |
[ "modifyvm", "{{.Name}}", "--audiocontroller", "hda" ], | |
[ "modifyvm", "{{.Name}}", "--boot1", "dvd" ], | |
[ "modifyvm", "{{.Name}}", "--boot2", "disk" ], | |
[ "modifyvm", "{{.Name}}", "--chipset", "ich9" ], | |
[ "modifyvm", "{{.Name}}", "--firmware", "efi" ], | |
[ "modifyvm", "{{.Name}}", "--hpet", "on" ], | |
[ "modifyvm", "{{.Name}}", "--keyboard", "usb" ], | |
[ "modifyvm", "{{.Name}}", "--memory", "{{ user `memory` }}" ], | |
[ "modifyvm", "{{.Name}}", "--mouse", "usbtablet" ], | |
[ "modifyvm", "{{.Name}}", "--vram", "128" ] | |
], | |
"vm_name": "{{ user `vm_name` }}" | |
}, | |
{ | |
"boot_wait": "5s", | |
"disk_size": "{{ user `disk_size` }}", | |
"guest_os_type": "{{ user `parallels_guest_os_type` }}", | |
"iso_checksum_type": "none", | |
"iso_url": "{{ user `iso_url` }}", | |
"output_directory": "output-{{ user `vm_name` }}-parallels-iso", | |
"parallels_tools_flavor": "mac", | |
"prlctl": [ | |
[ "set", "{{.Name}}", "--memsize", "{{ user `memory` }}" ], | |
[ "set", "{{.Name}}", "--memquota", "512:{{ user `memory` }}" ], | |
[ "set", "{{.Name}}", "--cpus", "{{ user `cpus` }}" ], | |
[ "set", "{{.Name}}", "--distribution", "macosx" ], | |
[ "set", "{{.Name}}", "--3d-accelerate", "highest" ], | |
[ "set", "{{.Name}}", "--high-resolution", "off" ], | |
[ "set", "{{.Name}}", "--auto-share-camera", "off" ], | |
[ "set", "{{.Name}}", "--auto-share-bluetooth", "off" ], | |
[ "set", "{{.Name}}", "--on-window-close", "keep-running" ], | |
[ "set", "{{.Name}}", "--isolate-vm", "off" ], | |
[ "set", "{{.Name}}", "--shf-host", "off" ] | |
], | |
"shutdown_command": "echo '{{ user `ssh_username` }}'|sudo -S shutdown -h now", | |
"ssh_password": "{{ user `ssh_password` }}", | |
"ssh_port": 22, | |
"ssh_username": "{{ user `ssh_username` }}", | |
"ssh_wait_timeout": "10000s", | |
"type": "parallels-iso", | |
"vm_name": "{{ user `vm_name` }}" | |
} | |
], | |
"provisioners": [ | |
{ | |
"destination": "/private/tmp/set_kcpassword.py", | |
"source": "script/support/set_kcpassword.py", | |
"type": "file" | |
}, | |
{ | |
"destination": "/Users/{{user `ssh_username`}}/darwin.iso", | |
"source": "darwin.iso", | |
"type": "file" | |
}, | |
{ | |
"environment_vars": [ | |
"AUTOLOGIN={{user `autologin`}}", | |
"CM={{user `cm`}}", | |
"CM_VERSION={{user `cm_version`}}", | |
"UPDATE={{user `update`}}", | |
"INSTALL_XCODE_CLI_TOOLS={{user `install_xcode_cli_tools`}}", | |
"INSTALL_VAGRANT_KEYS={{user `install_vagrant_keys`}}", | |
"SSH_USERNAME={{ user `ssh_username` }}", | |
"SSH_PASSWORD={{ user `ssh_password` }}" | |
], | |
"execute_command": "chmod +x {{ .Path }}; {{ .Vars }} sudo -E -S bash '{{ .Path }}'", | |
"scripts": [ | |
"script/vagrant.sh", | |
"script/vmware.sh", | |
"script/parallels.sh", | |
"script/xcode-cli-tools.sh", | |
"script/add-network-interface-detection.sh", | |
"script/energy.sh", | |
"script/autologin.sh", | |
"script/minimize.sh" | |
], | |
"type": "shell" | |
} | |
], | |
"variables": { | |
"autologin": "true", | |
"cm": "nocm", | |
"cm_version": "", | |
"cpus": "1", | |
"disk_size": "65536", | |
"install_vagrant_keys": "true", | |
"install_xcode_cli_tools": "true", | |
"iso_url": "dmg/OSX_InstallESD_10.11_15A284.dmg", | |
"iso_checksum": "", | |
"iso_checksum_type": "md5", | |
"memory": "2048", | |
"parallels_guest_os_type": "win-8", | |
"ssh_password": "vagrant", | |
"ssh_username": "vagrant", | |
"update": "true", | |
"vagrantfile_template": "", | |
"version": "0.1.0", | |
"vm_name": "macos1011", | |
"virtualbox_guest_os_type": "MacOS1011_64", | |
"vmware_guest_os_type": "darwin15-64", | |
"vm_networkName": "Network1" | |
} | |
} | |
This file contains 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
{ | |
"_comment": "Build with `packer build -var-file=macos1012.json macos.json`", | |
"vm_name": "macos1012", | |
"desktop": "true", | |
"cpus": "1", | |
"disk_size": "62536", | |
"iso_url": "dmg/OSX_InstallESD_10.12_16A323.dmg", | |
"ios_checksum": "f5898c4ad7fa9ff5ad6b2667e76e767d", | |
"ios_checksum_type": "md5", | |
"memory": "4096", | |
"parallels_guest_os_type": "win-8", | |
"vagrantfile_template": "tpl/vagrantfile-macos1012.tpl", | |
"virtualbox_guest_os_type": "MacOS1012_64", | |
"vmware_guest_os_type": "darwin12-64" | |
} |
This file contains 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
#!/bin/bash -eux | |
OSX_VERS=$(sw_vers -productVersion | awk -F "." '{print $2}') | |
echo "==> Turn off hibernation" | |
pmset hibernatemode 0 | |
echo "==> Get rid of the sleepimage" | |
rm -f /var/vm/sleepimage | |
echo "==> Stop the page process and dropping swap files" | |
# These will be re-created on boot | |
# Starting with El Cap we can only stop the dynamic pager if SIP is disabled. | |
if [ "$OSX_VERS" -lt 11 ] || $(csrutil status | grep -q disabled); then | |
launchctl unload /System/Library/LaunchDaemons/com.apple.dynamic_pager.plist | |
sleep 5 | |
fi | |
rm -rf /private/var/vm/swap* | |
slash="$(df -h / | tail -n 1 | awk '{print $1}')" | |
echo Zeroing out free space | |
diskutil secureErase freespace 0 ${slash} | |
# VMware Fusion specific items | |
if [ -e .vmfusion_version ] || [[ "$PACKER_BUILDER_TYPE" == vmware* ]]; then | |
# Shrink the disk | |
/Library/Application\ Support/VMware\ Tools/vmware-tools-cli disk shrink / | |
ERR_LVL=$? | |
echo "Berne: ERR_LVL=$ERR_LVL" | |
fi |
This file contains 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
user@server ~/co/git/macos $ PACKER_LOG=1 packer build -var-file=macos1012.json -only=vmware-iso macos.json | |
2016/10/17 06:25:18 [INFO] Packer version: 0.10.2 | |
2016/10/17 06:25:18 Packer Target OS/Arch: linux amd64 | |
2016/10/17 06:25:18 Built with Go Version: go1.7.1 | |
2016/10/17 06:25:18 Detected home directory from env var: /home/user | |
2016/10/17 06:25:18 Using internal plugin for amazon-ebs | |
2016/10/17 06:25:18 Using internal plugin for null | |
2016/10/17 06:25:18 Using internal plugin for parallels-iso | |
2016/10/17 06:25:18 Using internal plugin for virtualbox-iso | |
2016/10/17 06:25:18 Using internal plugin for vmware-vmx | |
2016/10/17 06:25:18 Using internal plugin for amazon-chroot | |
2016/10/17 06:25:18 Using internal plugin for googlecompute | |
2016/10/17 06:25:18 Using internal plugin for openstack | |
2016/10/17 06:25:18 Using internal plugin for qemu | |
2016/10/17 06:25:18 Using internal plugin for virtualbox-ovf | |
2016/10/17 06:25:18 Using internal plugin for digitalocean | |
2016/10/17 06:25:18 Using internal plugin for docker | |
2016/10/17 06:25:18 Using internal plugin for file | |
2016/10/17 06:25:18 Using internal plugin for parallels-pvm | |
2016/10/17 06:25:18 Using internal plugin for amazon-instance | |
2016/10/17 06:25:18 Using internal plugin for azure-arm | |
2016/10/17 06:25:18 Using internal plugin for vmware-iso | |
2016/10/17 06:25:18 Using internal plugin for powershell | |
2016/10/17 06:25:18 Using internal plugin for shell-local | |
2016/10/17 06:25:18 Using internal plugin for windows-shell | |
2016/10/17 06:25:18 Using internal plugin for chef-client | |
2016/10/17 06:25:18 Using internal plugin for ansible-local | |
2016/10/17 06:25:18 Using internal plugin for chef-solo | |
2016/10/17 06:25:18 Using internal plugin for file | |
2016/10/17 06:25:18 Using internal plugin for puppet-masterless | |
2016/10/17 06:25:18 Using internal plugin for puppet-server | |
2016/10/17 06:25:18 Using internal plugin for salt-masterless | |
2016/10/17 06:25:18 Using internal plugin for shell | |
2016/10/17 06:25:18 Using internal plugin for ansible | |
2016/10/17 06:25:18 Using internal plugin for windows-restart | |
2016/10/17 06:25:18 Using internal plugin for atlas | |
2016/10/17 06:25:18 Using internal plugin for docker-import | |
2016/10/17 06:25:18 Using internal plugin for docker-save | |
2016/10/17 06:25:18 Using internal plugin for docker-tag | |
2016/10/17 06:25:18 Using internal plugin for shell-local | |
2016/10/17 06:25:18 Using internal plugin for vagrant | |
2016/10/17 06:25:18 Using internal plugin for amazon-import | |
2016/10/17 06:25:18 Using internal plugin for artifice | |
2016/10/17 06:25:18 Using internal plugin for vagrant-cloud | |
2016/10/17 06:25:18 Using internal plugin for vsphere | |
2016/10/17 06:25:18 Using internal plugin for compress | |
2016/10/17 06:25:18 Using internal plugin for docker-push | |
2016/10/17 06:25:18 Detected home directory from env var: /home/user | |
2016/10/17 06:25:18 Attempting to open config file: /home/user/.packerconfig | |
2016/10/17 06:25:18 [WARN] Config file doesn't exist: /home/user/.packerconfig | |
2016/10/17 06:25:18 Packer config: &{DisableCheckpoint:false DisableCheckpointSignature:false PluginMinPort:10000 PluginMaxPort:25000 Builders:map[googlecompute:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-builder-googlecompute parallels-pvm:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-builder-parallels-pvm vmware-iso:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-builder-vmware-iso null:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-builder-null amazon-chroot:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-builder-amazon-chroot openstack:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-builder-openstack qemu:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-builder-qemu digitalocean:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-builder-digitalocean amazon-ebs:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-builder-amazon-ebs vmware-vmx:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-builder-vmware-vmx amazon-instance:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-builder-amazon-instance azure-arm:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-builder-azure-arm virtualbox-iso:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-builder-virtualbox-iso docker:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-builder-docker file:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-builder-file parallels-iso:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-builder-parallels-iso virtualbox-ovf:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-builder-virtualbox-ovf] PostProcessors:map[atlas:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-post-processor-atlas docker-import:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-post-processor-docker-import docker-save:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-post-processor-docker-save artifice:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-post-processor-artifice vagrant-cloud:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-post-processor-vagrant-cloud docker-push:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-post-processor-docker-push docker-tag:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-post-processor-docker-tag shell-local:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-post-processor-shell-local vagrant:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-post-processor-vagrant amazon-import:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-post-processor-amazon-import vsphere:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-post-processor-vsphere compress:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-post-processor-compress] Provisioners:map[powershell:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-provisioner-powershell windows-shell:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-provisioner-windows-shell file:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-provisioner-file salt-masterless:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-provisioner-salt-masterless shell:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-provisioner-shell ansible:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-provisioner-ansible windows-restart:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-provisioner-windows-restart shell-local:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-provisioner-shell-local chef-client:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-provisioner-chef-client ansible-local:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-provisioner-ansible-local chef-solo:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-provisioner-chef-solo puppet-masterless:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-provisioner-puppet-masterless puppet-server:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-provisioner-puppet-server]} | |
2016/10/17 06:25:18 Setting cache directory: /home/user/co/git/macos/packer_cache | |
2016/10/17 06:25:18 Detected home directory from env var: /home/user | |
2016/10/17 06:25:18 Loading builder: vmware-iso | |
2016/10/17 06:25:18 Plugin could not be found. Checking same directory as executable. | |
2016/10/17 06:25:18 Current exe path: /home/user/bin/packer.orig | |
2016/10/17 06:25:18 Creating plugin client for path: /home/user/bin/packer.orig | |
2016/10/17 06:25:18 Starting plugin: /home/user/bin/packer.orig []string{"/home/user/bin/packer.orig", "plugin", "packer-builder-vmware-iso"} | |
2016/10/17 06:25:18 Waiting for RPC address for: /home/user/bin/packer.orig | |
2016/10/17 06:25:18 [ERR] Checkpoint error: Get https://checkpoint-api.hashicorp.com/v1/check/packer?arch=amd64&os=linux&signature=06e80b0c-669f-558d-99ef-fb8306651f4e&version=0.10.2: dial tcp: lookup checkpoint-api.hashicorp.com on x.x.x.x:53: no such host | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 [INFO] Packer version: 0.10.2 | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Packer Target OS/Arch: linux amd64 | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Built with Go Version: go1.7.1 | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Detected home directory from env var: /home/user | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Using internal plugin for file | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Using internal plugin for amazon-instance | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Using internal plugin for null | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Using internal plugin for parallels-pvm | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Using internal plugin for qemu | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Using internal plugin for vmware-iso | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Using internal plugin for vmware-vmx | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Using internal plugin for googlecompute | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Using internal plugin for azure-arm | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Using internal plugin for docker | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Using internal plugin for openstack | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Using internal plugin for parallels-iso | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Using internal plugin for virtualbox-ovf | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Using internal plugin for amazon-chroot | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Using internal plugin for digitalocean | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Using internal plugin for virtualbox-iso | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Using internal plugin for amazon-ebs | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Using internal plugin for puppet-masterless | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Using internal plugin for puppet-server | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Using internal plugin for shell | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Using internal plugin for ansible-local | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Using internal plugin for chef-solo | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Using internal plugin for file | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Using internal plugin for powershell | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Using internal plugin for salt-masterless | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Using internal plugin for shell-local | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Using internal plugin for windows-restart | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Using internal plugin for windows-shell | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Using internal plugin for ansible | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Using internal plugin for chef-client | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Using internal plugin for compress | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Using internal plugin for docker-import | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Using internal plugin for vagrant-cloud | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Using internal plugin for artifice | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Using internal plugin for atlas | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Using internal plugin for docker-save | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Using internal plugin for docker-tag | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Using internal plugin for shell-local | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Using internal plugin for vagrant | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Using internal plugin for vsphere | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Using internal plugin for amazon-import | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Using internal plugin for docker-push | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Detected home directory from env var: /home/user | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Attempting to open config file: /home/user/.packerconfig | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 [WARN] Config file doesn't exist: /home/user/.packerconfig | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Packer config: &{DisableCheckpoint:false DisableCheckpointSignature:false PluginMinPort:10000 PluginMaxPort:25000 Builders:map[amazon-chroot:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-builder-amazon-chroot docker:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-builder-docker virtualbox-ovf:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-builder-virtualbox-ovf googlecompute:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-builder-googlecompute openstack:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-builder-openstack virtualbox-iso:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-builder-virtualbox-iso amazon-ebs:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-builder-amazon-ebs null:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-builder-null qemu:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-builder-qemu vmware-vmx:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-builder-vmware-vmx digitalocean:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-builder-digitalocean file:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-builder-file amazon-instance:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-builder-amazon-instance azure-arm:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-builder-azure-arm parallels-iso:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-builder-parallels-iso parallels-pvm:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-builder-parallels-pvm vmware-iso:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-builder-vmware-iso] PostProcessors:map[atlas:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-post-processor-atlas docker-tag:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-post-processor-docker-tag shell-local:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-post-processor-shell-local vsphere:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-post-processor-vsphere amazon-import:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-post-processor-amazon-import docker-push:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-post-processor-docker-push docker-import:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-post-processor-docker-import artifice:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-post-processor-artifice docker-save:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-post-processor-docker-save vagrant:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-post-processor-vagrant compress:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-post-processor-compress vagrant-cloud:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-post-processor-vagrant-cloud] Provisioners:map[windows-restart:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-provisioner-windows-restart windows-shell:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-provisioner-windows-shell ansible:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-provisioner-ansible chef-client:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-provisioner-chef-client puppet-server:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-provisioner-puppet-server salt-masterless:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-provisioner-salt-masterless shell-local:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-provisioner-shell-local chef-solo:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-provisioner-chef-solo file:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-provisioner-file powershell:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-provisioner-powershell puppet-masterless:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-provisioner-puppet-masterless shell:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-provisioner-shell ansible-local:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-provisioner-ansible-local]} | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Setting cache directory: /home/user/co/git/macos/packer_cache | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 args: []string{"packer-builder-vmware-iso"} | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Plugin minimum port: 10000 | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Plugin maximum port: 25000 | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Detected home directory from env var: /home/user | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Plugin address: unix /tmp/packer-plugin271890058 | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Waiting for connection... | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Serving a plugin connection... | |
2016/10/17 06:25:18 Loading provisioner: file | |
2016/10/17 06:25:18 Plugin could not be found. Checking same directory as executable. | |
2016/10/17 06:25:18 Current exe path: /home/user/bin/packer.orig | |
2016/10/17 06:25:18 Creating plugin client for path: /home/user/bin/packer.orig | |
2016/10/17 06:25:18 Starting plugin: /home/user/bin/packer.orig []string{"/home/user/bin/packer.orig", "plugin", "packer-provisioner-file"} | |
2016/10/17 06:25:18 Waiting for RPC address for: /home/user/bin/packer.orig | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 [ERR] Checkpoint error: Get https://checkpoint-api.hashicorp.com/v1/check/packer?arch=amd64&os=linux&signature=06e80b0c-669f-558d-99ef-fb8306651f4e&version=0.10.2: dial tcp: lookup checkpoint-api.hashicorp.com on x.x.x.x:53: no such host | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 [INFO] Packer version: 0.10.2 | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Packer Target OS/Arch: linux amd64 | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Built with Go Version: go1.7.1 | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Detected home directory from env var: /home/user | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Using internal plugin for openstack | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Using internal plugin for parallels-iso | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Using internal plugin for parallels-pvm | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Using internal plugin for virtualbox-iso | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Using internal plugin for vmware-iso | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Using internal plugin for docker | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Using internal plugin for file | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Using internal plugin for amazon-chroot | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Using internal plugin for digitalocean | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Using internal plugin for virtualbox-ovf | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Using internal plugin for vmware-vmx | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Using internal plugin for amazon-instance | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Using internal plugin for azure-arm | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Using internal plugin for googlecompute | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Using internal plugin for null | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Using internal plugin for qemu | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Using internal plugin for amazon-ebs | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Using internal plugin for file | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Using internal plugin for powershell | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Using internal plugin for puppet-server | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Using internal plugin for salt-masterless | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Using internal plugin for ansible | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Using internal plugin for ansible-local | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Using internal plugin for puppet-masterless | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Using internal plugin for shell | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Using internal plugin for shell-local | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Using internal plugin for windows-restart | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Using internal plugin for windows-shell | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Using internal plugin for chef-client | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Using internal plugin for chef-solo | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Using internal plugin for amazon-import | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Using internal plugin for atlas | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Using internal plugin for docker-push | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Using internal plugin for vagrant-cloud | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Using internal plugin for vsphere | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Using internal plugin for shell-local | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Using internal plugin for vagrant | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Using internal plugin for artifice | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Using internal plugin for compress | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Using internal plugin for docker-import | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Using internal plugin for docker-save | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Using internal plugin for docker-tag | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Detected home directory from env var: /home/user | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Attempting to open config file: /home/user/.packerconfig | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 [WARN] Config file doesn't exist: /home/user/.packerconfig | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Packer config: &{DisableCheckpoint:false DisableCheckpointSignature:false PluginMinPort:10000 PluginMaxPort:25000 Builders:map[openstack:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-builder-openstack parallels-iso:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-builder-parallels-iso virtualbox-iso:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-builder-virtualbox-iso amazon-ebs:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-builder-amazon-ebs parallels-pvm:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-builder-parallels-pvm virtualbox-ovf:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-builder-virtualbox-ovf qemu:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-builder-qemu googlecompute:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-builder-googlecompute null:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-builder-null vmware-iso:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-builder-vmware-iso docker:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-builder-docker digitalocean:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-builder-digitalocean vmware-vmx:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-builder-vmware-vmx amazon-instance:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-builder-amazon-instance azure-arm:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-builder-azure-arm file:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-builder-file amazon-chroot:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-builder-amazon-chroot] PostProcessors:map[vsphere:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-post-processor-vsphere artifice:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-post-processor-artifice compress:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-post-processor-compress amazon-import:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-post-processor-amazon-import atlas:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-post-processor-atlas docker-push:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-post-processor-docker-push vagrant-cloud:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-post-processor-vagrant-cloud docker-tag:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-post-processor-docker-tag shell-local:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-post-processor-shell-local vagrant:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-post-processor-vagrant docker-import:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-post-processor-docker-import docker-save:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-post-processor-docker-save] Provisioners:map[file:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-provisioner-file salt-masterless:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-provisioner-salt-masterless ansible:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-provisioner-ansible shell:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-provisioner-shell shell-local:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-provisioner-shell-local windows-restart:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-provisioner-windows-restart chef-solo:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-provisioner-chef-solo powershell:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-provisioner-powershell puppet-server:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-provisioner-puppet-server ansible-local:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-provisioner-ansible-local puppet-masterless:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-provisioner-puppet-masterless windows-shell:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-provisioner-windows-shell chef-client:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-provisioner-chef-client]} | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Setting cache directory: /home/user/co/git/macos/packer_cache | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 args: []string{"packer-provisioner-file"} | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Plugin minimum port: 10000 | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Plugin maximum port: 25000 | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Detected home directory from env var: /home/user | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Plugin address: unix /tmp/packer-plugin271248874 | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Waiting for connection... | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Serving a plugin connection... | |
2016/10/17 06:25:18 Loading provisioner: file | |
2016/10/17 06:25:18 Plugin could not be found. Checking same directory as executable. | |
2016/10/17 06:25:18 Current exe path: /home/user/bin/packer.orig | |
2016/10/17 06:25:18 Creating plugin client for path: /home/user/bin/packer.orig | |
2016/10/17 06:25:18 Starting plugin: /home/user/bin/packer.orig []string{"/home/user/bin/packer.orig", "plugin", "packer-provisioner-file"} | |
2016/10/17 06:25:18 Waiting for RPC address for: /home/user/bin/packer.orig | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 [ERR] Checkpoint error: Get https://checkpoint-api.hashicorp.com/v1/check/packer?arch=amd64&os=linux&signature=06e80b0c-669f-558d-99ef-fb8306651f4e&version=0.10.2: dial tcp: lookup checkpoint-api.hashicorp.com on x.x.x.x:53: no such host | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 [INFO] Packer version: 0.10.2 | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Packer Target OS/Arch: linux amd64 | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Built with Go Version: go1.7.1 | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Detected home directory from env var: /home/user | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Using internal plugin for amazon-ebs | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Using internal plugin for azure-arm | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Using internal plugin for docker | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Using internal plugin for digitalocean | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Using internal plugin for googlecompute | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Using internal plugin for qemu | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Using internal plugin for vmware-vmx | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Using internal plugin for virtualbox-ovf | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Using internal plugin for vmware-iso | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Using internal plugin for amazon-chroot | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Using internal plugin for file | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Using internal plugin for openstack | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Using internal plugin for parallels-iso | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Using internal plugin for amazon-instance | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Using internal plugin for null | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Using internal plugin for parallels-pvm | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Using internal plugin for virtualbox-iso | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Using internal plugin for puppet-server | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Using internal plugin for shell | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Using internal plugin for shell-local | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Using internal plugin for windows-restart | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Using internal plugin for ansible-local | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Using internal plugin for chef-client | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Using internal plugin for file | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Using internal plugin for powershell | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Using internal plugin for puppet-masterless | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Using internal plugin for salt-masterless | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Using internal plugin for windows-shell | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Using internal plugin for ansible | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Using internal plugin for chef-solo | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Using internal plugin for docker-import | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Using internal plugin for docker-push | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Using internal plugin for docker-save | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Using internal plugin for shell-local | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Using internal plugin for amazon-import | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Using internal plugin for artifice | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Using internal plugin for atlas | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Using internal plugin for compress | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Using internal plugin for vagrant-cloud | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Using internal plugin for docker-tag | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Using internal plugin for vagrant | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Using internal plugin for vsphere | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Detected home directory from env var: /home/user | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Attempting to open config file: /home/user/.packerconfig | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 [WARN] Config file doesn't exist: /home/user/.packerconfig | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Packer config: &{DisableCheckpoint:false DisableCheckpointSignature:false PluginMinPort:10000 PluginMaxPort:25000 Builders:map[vmware-vmx:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-builder-vmware-vmx openstack:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-builder-openstack amazon-instance:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-builder-amazon-instance parallels-iso:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-builder-parallels-iso null:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-builder-null amazon-ebs:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-builder-amazon-ebs digitalocean:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-builder-digitalocean virtualbox-ovf:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-builder-virtualbox-ovf amazon-chroot:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-builder-amazon-chroot azure-arm:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-builder-azure-arm qemu:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-builder-qemu file:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-builder-file virtualbox-iso:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-builder-virtualbox-iso docker:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-builder-docker googlecompute:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-builder-googlecompute vmware-iso:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-builder-vmware-iso parallels-pvm:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-builder-parallels-pvm] PostProcessors:map[docker-import:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-post-processor-docker-import artifice:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-post-processor-artifice atlas:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-post-processor-atlas compress:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-post-processor-compress vagrant:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-post-processor-vagrant docker-push:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-post-processor-docker-push docker-save:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-post-processor-docker-save shell-local:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-post-processor-shell-local amazon-import:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-post-processor-amazon-import vagrant-cloud:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-post-processor-vagrant-cloud docker-tag:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-post-processor-docker-tag vsphere:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-post-processor-vsphere] Provisioners:map[shell:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-provisioner-shell shell-local:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-provisioner-shell-local windows-restart:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-provisioner-windows-restart ansible-local:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-provisioner-ansible-local file:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-provisioner-file powershell:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-provisioner-powershell chef-solo:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-provisioner-chef-solo puppet-server:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-provisioner-puppet-server chef-client:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-provisioner-chef-client puppet-masterless:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-provisioner-puppet-masterless salt-masterless:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-provisioner-salt-masterless windows-shell:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-provisioner-windows-shell ansible:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-provisioner-ansible]} | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Setting cache directory: /home/user/co/git/macos/packer_cache | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 args: []string{"packer-provisioner-file"} | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Plugin minimum port: 10000 | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Plugin maximum port: 25000 | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Plugin address: unix /tmp/packer-plugin829746103 | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Waiting for connection... | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Detected home directory from env var: /home/user | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Serving a plugin connection... | |
2016/10/17 06:25:18 Loading provisioner: shell | |
2016/10/17 06:25:18 Plugin could not be found. Checking same directory as executable. | |
2016/10/17 06:25:18 Current exe path: /home/user/bin/packer.orig | |
2016/10/17 06:25:18 Creating plugin client for path: /home/user/bin/packer.orig | |
2016/10/17 06:25:18 Starting plugin: /home/user/bin/packer.orig []string{"/home/user/bin/packer.orig", "plugin", "packer-provisioner-shell"} | |
2016/10/17 06:25:18 Waiting for RPC address for: /home/user/bin/packer.orig | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 [ERR] Checkpoint error: Get https://checkpoint-api.hashicorp.com/v1/check/packer?arch=amd64&os=linux&signature=06e80b0c-669f-558d-99ef-fb8306651f4e&version=0.10.2: dial tcp: lookup checkpoint-api.hashicorp.com on x.x.x.x:53: no such host | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 [INFO] Packer version: 0.10.2 | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Packer Target OS/Arch: linux amd64 | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Built with Go Version: go1.7.1 | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Detected home directory from env var: /home/user | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Using internal plugin for virtualbox-ovf | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Using internal plugin for amazon-ebs | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Using internal plugin for amazon-instance | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Using internal plugin for digitalocean | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Using internal plugin for docker | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Using internal plugin for null | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Using internal plugin for openstack | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Using internal plugin for parallels-pvm | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Using internal plugin for qemu | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Using internal plugin for vmware-vmx | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Using internal plugin for amazon-chroot | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Using internal plugin for azure-arm | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Using internal plugin for file | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Using internal plugin for googlecompute | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Using internal plugin for parallels-iso | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Using internal plugin for virtualbox-iso | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Using internal plugin for vmware-iso | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Using internal plugin for ansible | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Using internal plugin for chef-client | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Using internal plugin for file | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Using internal plugin for powershell | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Using internal plugin for puppet-server | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Using internal plugin for salt-masterless | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Using internal plugin for shell | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Using internal plugin for ansible-local | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Using internal plugin for chef-solo | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Using internal plugin for puppet-masterless | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Using internal plugin for shell-local | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Using internal plugin for windows-restart | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Using internal plugin for windows-shell | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Using internal plugin for amazon-import | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Using internal plugin for atlas | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Using internal plugin for compress | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Using internal plugin for docker-push | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Using internal plugin for docker-save | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Using internal plugin for docker-tag | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Using internal plugin for shell-local | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Using internal plugin for vagrant-cloud | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Using internal plugin for vsphere | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Using internal plugin for artifice | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Using internal plugin for docker-import | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Using internal plugin for vagrant | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Detected home directory from env var: /home/user | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Attempting to open config file: /home/user/.packerconfig | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 [WARN] Config file doesn't exist: /home/user/.packerconfig | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Packer config: &{DisableCheckpoint:false DisableCheckpointSignature:false PluginMinPort:10000 PluginMaxPort:25000 Builders:map[parallels-pvm:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-builder-parallels-pvm amazon-chroot:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-builder-amazon-chroot amazon-ebs:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-builder-amazon-ebs qemu:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-builder-qemu vmware-vmx:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-builder-vmware-vmx virtualbox-ovf:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-builder-virtualbox-ovf amazon-instance:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-builder-amazon-instance null:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-builder-null openstack:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-builder-openstack azure-arm:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-builder-azure-arm file:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-builder-file parallels-iso:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-builder-parallels-iso digitalocean:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-builder-digitalocean docker:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-builder-docker googlecompute:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-builder-googlecompute virtualbox-iso:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-builder-virtualbox-iso vmware-iso:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-builder-vmware-iso] PostProcessors:map[amazon-import:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-post-processor-amazon-import compress:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-post-processor-compress docker-tag:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-post-processor-docker-tag shell-local:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-post-processor-shell-local artifice:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-post-processor-artifice docker-import:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-post-processor-docker-import vagrant:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-post-processor-vagrant atlas:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-post-processor-atlas docker-push:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-post-processor-docker-push docker-save:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-post-processor-docker-save vagrant-cloud:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-post-processor-vagrant-cloud vsphere:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-post-processor-vsphere] Provisioners:map[chef-solo:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-provisioner-chef-solo shell-local:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-provisioner-shell-local windows-shell:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-provisioner-windows-shell ansible:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-provisioner-ansible powershell:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-provisioner-powershell puppet-server:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-provisioner-puppet-server ansible-local:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-provisioner-ansible-local puppet-masterless:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-provisioner-puppet-masterless windows-restart:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-provisioner-windows-restart chef-client:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-provisioner-chef-client file:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-provisioner-file salt-masterless:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-provisioner-salt-masterless shell:/home/user/bin/packer.orig-PACKERSPACE-plugin-PACKERSPACE-packer-provisioner-shell]} | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Setting cache directory: /home/user/co/git/macos/packer_cache | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 args: []string{"packer-provisioner-shell"} | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Plugin minimum port: 10000 | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Plugin maximum port: 25000 | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Detected home directory from env var: /home/user | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Plugin address: unix /tmp/packer-plugin940191186 | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Waiting for connection... | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Serving a plugin connection... | |
2016/10/17 06:25:18 ui: vmware-iso output will be in this color. | |
2016/10/17 06:25:18 ui: | |
2016/10/17 06:25:18 Build debug mode: false | |
2016/10/17 06:25:18 Force build: false | |
2016/10/17 06:25:18 Preparing build: vmware-iso | |
vmware-iso output will be in this color. | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 [ERR] Checkpoint error: Get https://checkpoint-api.hashicorp.com/v1/check/packer?arch=amd64&os=linux&signature=06e80b0c-669f-558d-99ef-fb8306651f4e&version=0.10.2: dial tcp: lookup checkpoint-api.hashicorp.com on x.x.x.x:53: no such host | |
2016/10/17 06:25:18 ui: Warnings for build 'vmware-iso': | |
2016/10/17 06:25:18 ui: * A checksum type of 'none' was specified. Since ISO files are so big, | |
a checksum is highly recommended. | |
2016/10/17 06:25:18 ui: | |
Warnings for build 'vmware-iso': | |
2016/10/17 06:25:18 Waiting on builds to complete... | |
2016/10/17 06:25:18 Starting build run: vmware-iso | |
2016/10/17 06:25:18 Running builder: vmware-iso | |
* A checksum type of 'none' was specified. Since ISO files are so big, | |
a checksum is highly recommended. | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 reconnecting to TCP connection for SSH | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 handshaking with SSH | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 Keyboard interactive challenge: | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 -- User: | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 -- Instructions: | |
2016/10/17 06:25:18 packer.orig: 2016/10/17 06:25:18 -- Question 1: Password: | |
2016/10/17 06:25:21 packer.orig: 2016/10/17 06:25:21 handshake complete! | |
2016/10/17 06:25:21 packer.orig: 2016/10/17 06:25:21 opening new ssh session | |
2016/10/17 06:25:21 packer.orig: 2016/10/17 06:25:21 [INFO] agent forwarding enabled | |
2016/10/17 06:25:21 packer.orig: 2016/10/17 06:25:21 opening new ssh session | |
2016/10/17 06:25:21 packer.orig: 2016/10/17 06:25:21 starting remote command: esxcli --formatter csv system version get | |
2016/10/17 06:25:21 packer.orig: 2016/10/17 06:25:21 remote command exited with '0': esxcli --formatter csv system version get | |
2016/10/17 06:25:21 packer.orig: 2016/10/17 06:25:21 Connected to VMware ESXi 5.5.0 Releasebuild-2068190 | |
2016/10/17 06:25:21 packer.orig: 2016/10/17 06:25:21 opening new ssh session | |
2016/10/17 06:25:21 packer.orig: 2016/10/17 06:25:21 starting remote command: esxcli --formatter csv system settings advanced list -o /Net/GuestIPHack | |
2016/10/17 06:25:21 packer.orig: 2016/10/17 06:25:21 remote command exited with '0': esxcli --formatter csv system settings advanced list -o /Net/GuestIPHack | |
2016/10/17 06:25:21 ui: ==> vmware-iso: Downloading or copying ISO | |
==> vmware-iso: Downloading or copying ISO | |
2016/10/17 06:25:21 ui: vmware-iso: Downloading or copying: file:///home/user/co/git/macos/dmg/OSX_InstallESD_10.12_16A323.dmg | |
vmware-iso: Downloading or copying: file:///home/user/co/git/macos/dmg/OSX_InstallESD_10.12_16A323.dmg | |
2016/10/17 06:25:21 packer.orig: 2016/10/17 06:25:21 Acquiring lock to download: file:///home/user/co/git/macos/dmg/OSX_InstallESD_10.12_16A323.dmg | |
2016/10/17 06:25:21 packer.orig: 2016/10/17 06:25:21 Parsed URL: &url.URL{Scheme:"file", Opaque:"", User:(*url.Userinfo)(nil), Host:"", Path:"/home/user/co/git/macos/dmg/OSX_InstallESD_10.12_16A323.dmg", RawPath:"", ForceQuery:false, RawQuery:"", Fragment:""} | |
2016/10/17 06:25:21 packer.orig: 2016/10/17 06:25:21 [DEBUG] Using local file: /home/user/co/git/macos/dmg/OSX_InstallESD_10.12_16A323.dmg | |
2016/10/17 06:25:21 packer.orig: 2016/10/17 06:25:21 opening new ssh session | |
2016/10/17 06:25:21 packer.orig: 2016/10/17 06:25:21 starting remote command: test -e /vmfs/volumes/datastore1/output-macos1012-vmware-iso | |
2016/10/17 06:25:21 packer.orig: 2016/10/17 06:25:21 remote command exited with '1': test -e /vmfs/volumes/datastore1/output-macos1012-vmware-iso | |
2016/10/17 06:25:21 packer.orig: 2016/10/17 06:25:21 opening new ssh session | |
2016/10/17 06:25:21 packer.orig: 2016/10/17 06:25:21 starting remote command: mkdir -p /vmfs/volumes/datastore1/output-macos1012-vmware-iso | |
2016/10/17 06:25:21 packer.orig: 2016/10/17 06:25:21 remote command exited with '0': mkdir -p /vmfs/volumes/datastore1/output-macos1012-vmware-iso | |
2016/10/17 06:25:21 packer.orig: 2016/10/17 06:25:21 No floppy files specified. Floppy disk will not be made. | |
2016/10/17 06:25:21 ui: ==> vmware-iso: Uploading ISO to remote machine... | |
==> vmware-iso: Uploading ISO to remote machine... | |
2016/10/17 06:25:21 packer.orig: 2016/10/17 06:25:21 Remote uploading: /home/user/co/git/macos/dmg/OSX_InstallESD_10.12_16A323.dmg | |
2016/10/17 06:25:21 packer.orig: 2016/10/17 06:25:21 opening new ssh session | |
2016/10/17 06:25:21 packer.orig: 2016/10/17 06:25:21 starting remote command: mkdir -p /vmfs/volumes/datastore1/packer_cache | |
2016/10/17 06:25:21 packer.orig: 2016/10/17 06:25:21 remote command exited with '0': mkdir -p /vmfs/volumes/datastore1/packer_cache | |
2016/10/17 06:25:21 packer.orig: 2016/10/17 06:25:21 Verifying checksum of /vmfs/volumes/datastore1/packer_cache/OSX_InstallESD_10.12_16A323.dmg | |
2016/10/17 06:25:21 packer.orig: 2016/10/17 06:25:21 opening new ssh session | |
2016/10/17 06:25:21 packer.orig: 2016/10/17 06:25:21 starting remote command: stat /vmfs/volumes/datastore1/packer_cache/OSX_InstallESD_10.12_16A323.dmg | |
2016/10/17 06:25:21 packer.orig: 2016/10/17 06:25:21 remote command exited with '0': stat /vmfs/volumes/datastore1/packer_cache/OSX_InstallESD_10.12_16A323.dmg | |
2016/10/17 06:25:21 packer.orig: 2016/10/17 06:25:21 Initial checksum matched, no upload needed. | |
2016/10/17 06:25:21 ui: ==> vmware-iso: Creating virtual machine disk | |
==> vmware-iso: Creating virtual machine disk | |
2016/10/17 06:25:21 packer.orig: 2016/10/17 06:25:21 opening new ssh session | |
2016/10/17 06:25:21 packer.orig: 2016/10/17 06:25:21 starting remote command: vmkfstools -c 62536M -d zeroedthick -a lsilogic /vmfs/volumes/datastore1/output-macos1012-vmware-iso/disk.vmdk | |
2016/10/17 06:25:22 packer.orig: 2016/10/17 06:25:22 remote command exited with '0': vmkfstools -c 62536M -d zeroedthick -a lsilogic /vmfs/volumes/datastore1/output-macos1012-vmware-iso/disk.vmdk | |
2016/10/17 06:25:22 ui: ==> vmware-iso: Building and writing VMX file | |
==> vmware-iso: Building and writing VMX file | |
2016/10/17 06:25:22 packer.orig: 2016/10/17 06:25:22 Writing VMX to: /tmp/packer-vmx561817697/macos1012.vmx | |
2016/10/17 06:25:22 packer.orig: 2016/10/17 06:25:22 Setting VMX: 'hpet0.present' = 'TRUE' | |
2016/10/17 06:25:22 packer.orig: 2016/10/17 06:25:22 Setting VMX: 'ich7m.present' = 'TRUE' | |
2016/10/17 06:25:22 packer.orig: 2016/10/17 06:25:22 Setting VMX: 'ehci.present' = 'TRUE' | |
2016/10/17 06:25:22 packer.orig: 2016/10/17 06:25:22 Setting VMX: 'smc.present' = 'TRUE' | |
2016/10/17 06:25:22 packer.orig: 2016/10/17 06:25:22 Setting VMX: 'usb.present' = 'TRUE' | |
2016/10/17 06:25:22 packer.orig: 2016/10/17 06:25:22 Setting VMX: 'ethernet0.networkName' = 'Network1' | |
2016/10/17 06:25:22 packer.orig: 2016/10/17 06:25:22 Setting VMX: 'numvcpus' = '1' | |
2016/10/17 06:25:22 packer.orig: 2016/10/17 06:25:22 Setting VMX: 'cpuid.coresPerSocket' = '1' | |
2016/10/17 06:25:22 packer.orig: 2016/10/17 06:25:22 Setting VMX: 'firmware' = 'efi' | |
2016/10/17 06:25:22 packer.orig: 2016/10/17 06:25:22 Setting VMX: 'memsize' = '4096' | |
2016/10/17 06:25:22 packer.orig: 2016/10/17 06:25:22 Setting VMX: 'keyboardAndMouseProfile' = 'macProfile' | |
2016/10/17 06:25:22 packer.orig: 2016/10/17 06:25:22 Writing VMX to: /tmp/packer-vmx561817697/macos1012.vmx | |
2016/10/17 06:25:22 packer.orig: 2016/10/17 06:25:22 Suppressing messages in VMX | |
2016/10/17 06:25:22 packer.orig: 2016/10/17 06:25:22 Looking for available port between 5900 and 6000 | |
2016/10/17 06:25:22 packer.orig: 2016/10/17 06:25:22 opening new ssh session | |
2016/10/17 06:25:22 packer.orig: 2016/10/17 06:25:22 starting remote command: esxcli --formatter csv network ip connection list | |
2016/10/17 06:25:23 packer.orig: 2016/10/17 06:25:23 remote command exited with '0': esxcli --formatter csv network ip connection list | |
2016/10/17 06:25:23 packer.orig: 2016/10/17 06:25:23 ESXi listening on address x.x.x.x:5989, port 5989 unavailable for VNC | |
2016/10/17 06:25:23 packer.orig: 2016/10/17 06:25:23 ESXi listening on address x.x.x.x:427, port 427 unavailable for VNC | |
2016/10/17 06:25:23 packer.orig: 2016/10/17 06:25:23 ESXi listening on address x.x.x.x:427, port 427 unavailable for VNC | |
2016/10/17 06:25:23 packer.orig: 2016/10/17 06:25:23 ESXi listening on address x.x.x.x:443, port 443 unavailable for VNC | |
2016/10/17 06:25:23 packer.orig: 2016/10/17 06:25:23 ESXi listening on address x.x.x.x:80, port 80 unavailable for VNC | |
2016/10/17 06:25:23 packer.orig: 2016/10/17 06:25:23 ESXi listening on address x.x.x.x:22, port 22 unavailable for VNC | |
2016/10/17 06:25:23 packer.orig: 2016/10/17 06:25:23 ESXi listening on address x.x.x.x:902, port 902 unavailable for VNC | |
2016/10/17 06:25:23 packer.orig: 2016/10/17 06:25:23 ESXi listening on address x.x.x.x:8100, port 8100 unavailable for VNC | |
2016/10/17 06:25:23 packer.orig: 2016/10/17 06:25:23 ESXi listening on address x.x.x.x:8000, port 8000 unavailable for VNC | |
2016/10/17 06:25:23 packer.orig: 2016/10/17 06:25:23 Trying address: esxi:5900... | |
2016/10/17 06:25:23 packer.orig: 2016/10/17 06:25:23 Found available VNC port: 5900 | |
2016/10/17 06:25:23 packer.orig: 2016/10/17 06:25:23 Writing VMX to: /tmp/packer-vmx561817697/macos1012.vmx | |
2016/10/17 06:25:23 ui: ==> vmware-iso: Registering remote VM... | |
==> vmware-iso: Registering remote VM... | |
2016/10/17 06:25:23 packer.orig: 2016/10/17 06:25:23 opening new ssh session | |
2016/10/17 06:25:23 packer.orig: 2016/10/17 06:25:23 Starting remote scp process: scp -vt /vmfs/volumes/datastore1/output-macos1012-vmware-iso | |
2016/10/17 06:25:23 packer.orig: 2016/10/17 06:25:23 Started SCP session, beginning transfers... | |
2016/10/17 06:25:23 packer.orig: 2016/10/17 06:25:23 Copying input data into temporary file so we can read the length | |
2016/10/17 06:25:23 packer.orig: 2016/10/17 06:25:23 [DEBUG] scp: Uploading macos1012.vmx: perms=C0644 size=2484 | |
2016/10/17 06:25:23 packer.orig: 2016/10/17 06:25:23 SCP session complete, closing stdin pipe. | |
2016/10/17 06:25:23 packer.orig: 2016/10/17 06:25:23 Waiting for SSH session to complete. | |
2016/10/17 06:25:23 packer.orig: 2016/10/17 06:25:23 scp stderr (length 31): Sink: C0644 2484 macos1012.vmx | |
2016/10/17 06:25:23 packer.orig: 2016/10/17 06:25:23 opening new ssh session | |
2016/10/17 06:25:23 packer.orig: 2016/10/17 06:25:23 starting remote command: vim-cmd solo/registervm /vmfs/volumes/datastore1/output-macos1012-vmware-iso/macos1012.vmx | |
2016/10/17 06:25:24 packer.orig: 2016/10/17 06:25:24 remote command exited with '0': vim-cmd solo/registervm /vmfs/volumes/datastore1/output-macos1012-vmware-iso/macos1012.vmx | |
2016/10/17 06:25:24 ui: ==> vmware-iso: Starting virtual machine... | |
==> vmware-iso: Starting virtual machine... | |
2016/10/17 06:25:24 packer.orig: 2016/10/17 06:25:24 opening new ssh session | |
2016/10/17 06:25:24 packer.orig: 2016/10/17 06:25:24 starting remote command: vim-cmd vmsvc/power.on 128 | |
2016/10/17 06:25:25 packer.orig: 2016/10/17 06:25:25 remote command exited with '0': vim-cmd vmsvc/power.on 128 | |
2016/10/17 06:25:25 packer.orig: 2016/10/17 06:25:25 opening new ssh session | |
2016/10/17 06:25:25 packer.orig: 2016/10/17 06:25:25 starting remote command: vim-cmd vmsvc/power.getstate 128 | |
2016/10/17 06:25:26 packer.orig: 2016/10/17 06:25:26 remote command exited with '0': vim-cmd vmsvc/power.getstate 128 | |
2016/10/17 06:25:26 ui: ==> vmware-iso: Waiting 2s for boot... | |
==> vmware-iso: Waiting 2s for boot... | |
2016/10/17 06:25:28 ui: ==> vmware-iso: Connecting to VM via VNC | |
==> vmware-iso: Connecting to VM via VNC | |
2016/10/17 06:25:28 packer.orig: 2016/10/17 06:25:28 Connected to VNC desktop: macos1012 | |
2016/10/17 06:25:28 packer.orig: 2016/10/17 06:25:28 Host IP for the VMware machine: x.x.x.x | |
2016/10/17 06:25:28 ui: ==> vmware-iso: Typing the boot command over VNC... | |
2016/10/17 06:25:28 packer.orig: 2016/10/17 06:25:28 [INFO] Waiting for SSH, up to timeout: 2h46m40s | |
==> vmware-iso: Typing the boot command over VNC... | |
2016/10/17 06:25:28 ui: ==> vmware-iso: Waiting for SSH to become available... | |
==> vmware-iso: Waiting for SSH to become available... | |
2016/10/17 06:25:28 packer.orig: 2016/10/17 06:25:28 opening new ssh session | |
2016/10/17 06:25:28 packer.orig: 2016/10/17 06:25:28 starting remote command: esxcli --formatter csv network vm list | |
2016/10/17 06:25:28 packer.orig: 2016/10/17 06:25:28 remote command exited with '0': esxcli --formatter csv network vm list | |
2016/10/17 06:25:28 packer.orig: 2016/10/17 06:25:28 opening new ssh session | |
2016/10/17 06:25:28 packer.orig: 2016/10/17 06:25:28 starting remote command: esxcli --formatter csv network vm port list -w 402030 | |
2016/10/17 06:25:29 packer.orig: 2016/10/17 06:25:29 remote command exited with '0': esxcli --formatter csv network vm port list -w 402030 | |
2016/10/17 06:25:29 packer.orig: 2016/10/17 06:25:29 [DEBUG] Error getting SSH address: VM network port found, but no IP address | |
2016/10/17 06:25:34 packer.orig: 2016/10/17 06:25:34 opening new ssh session | |
2016/10/17 06:25:34 packer.orig: 2016/10/17 06:25:34 starting remote command: esxcli --formatter csv network vm list | |
2016/10/17 06:25:34 packer.orig: 2016/10/17 06:25:34 remote command exited with '0': esxcli --formatter csv network vm list | |
2016/10/17 06:25:34 packer.orig: 2016/10/17 06:25:34 opening new ssh session | |
2016/10/17 06:25:34 packer.orig: 2016/10/17 06:25:34 starting remote command: esxcli --formatter csv network vm port list -w 402030 | |
2016/10/17 06:25:35 packer.orig: 2016/10/17 06:25:35 remote command exited with '0': esxcli --formatter csv network vm port list -w 402030 | |
2016/10/17 06:25:35 packer.orig: 2016/10/17 06:25:35 [DEBUG] Error getting SSH address: VM network port found, but no IP address | |
2016/10/17 06:25:40 packer.orig: 2016/10/17 06:25:40 opening new ssh session | |
2016/10/17 06:25:40 packer.orig: 2016/10/17 06:25:40 starting remote command: esxcli --formatter csv network vm list | |
2016/10/17 06:25:40 packer.orig: 2016/10/17 06:25:40 remote command exited with '0': esxcli --formatter csv network vm list | |
2016/10/17 06:25:40 packer.orig: 2016/10/17 06:25:40 opening new ssh session | |
2016/10/17 06:25:40 packer.orig: 2016/10/17 06:25:40 starting remote command: esxcli --formatter csv network vm port list -w 402030 | |
2016/10/17 06:25:40 packer.orig: 2016/10/17 06:25:40 remote command exited with '0': esxcli --formatter csv network vm port list -w 402030 | |
2016/10/17 06:25:40 packer.orig: 2016/10/17 06:25:40 [DEBUG] Error getting SSH address: VM network port found, but no IP address | |
2016/10/17 06:25:45 packer.orig: 2016/10/17 06:25:45 opening new ssh session | |
2016/10/17 06:25:45 packer.orig: 2016/10/17 06:25:45 starting remote command: esxcli --formatter csv network vm list | |
2016/10/17 06:25:46 packer.orig: 2016/10/17 06:25:46 remote command exited with '0': esxcli --formatter csv network vm list | |
2016/10/17 06:25:46 packer.orig: 2016/10/17 06:25:46 opening new ssh session | |
2016/10/17 06:25:46 packer.orig: 2016/10/17 06:25:46 starting remote command: esxcli --formatter csv network vm port list -w 402030 | |
2016/10/17 06:25:46 packer.orig: 2016/10/17 06:25:46 remote command exited with '0': esxcli --formatter csv network vm port list -w 402030 | |
2016/10/17 06:25:46 packer.orig: 2016/10/17 06:25:46 [DEBUG] Error getting SSH address: VM network port found, but no IP address | |
2016/10/17 06:25:51 packer.orig: 2016/10/17 06:25:51 opening new ssh session | |
2016/10/17 06:25:51 packer.orig: 2016/10/17 06:25:51 starting remote command: esxcli --formatter csv network vm list | |
2016/10/17 06:25:51 packer.orig: 2016/10/17 06:25:51 remote command exited with '0': esxcli --formatter csv network vm list | |
2016/10/17 06:25:51 packer.orig: 2016/10/17 06:25:51 opening new ssh session | |
2016/10/17 06:25:51 packer.orig: 2016/10/17 06:25:51 starting remote command: esxcli --formatter csv network vm port list -w 402030 | |
2016/10/17 06:25:51 packer.orig: 2016/10/17 06:25:51 remote command exited with '0': esxcli --formatter csv network vm port list -w 402030 | |
2016/10/17 06:25:51 packer.orig: 2016/10/17 06:25:51 [DEBUG] Error getting SSH address: VM network port found, but no IP address | |
2016/10/17 06:25:56 packer.orig: 2016/10/17 06:25:56 opening new ssh session | |
2016/10/17 06:25:56 packer.orig: 2016/10/17 06:25:56 starting remote command: esxcli --formatter csv network vm list | |
2016/10/17 06:25:57 packer.orig: 2016/10/17 06:25:57 remote command exited with '0': esxcli --formatter csv network vm list | |
2016/10/17 06:25:57 packer.orig: 2016/10/17 06:25:57 opening new ssh session | |
2016/10/17 06:25:57 packer.orig: 2016/10/17 06:25:57 starting remote command: esxcli --formatter csv network vm port list -w 402030 | |
2016/10/17 06:25:57 packer.orig: 2016/10/17 06:25:57 remote command exited with '0': esxcli --formatter csv network vm port list -w 402030 | |
2016/10/17 06:25:57 packer.orig: 2016/10/17 06:25:57 [DEBUG] Error getting SSH address: VM network port found, but no IP address | |
2016/10/17 06:26:02 packer.orig: 2016/10/17 06:26:02 opening new ssh session | |
2016/10/17 06:26:02 packer.orig: 2016/10/17 06:26:02 starting remote command: esxcli --formatter csv network vm list | |
2016/10/17 06:26:03 packer.orig: 2016/10/17 06:26:03 remote command exited with '0': esxcli --formatter csv network vm list | |
2016/10/17 06:26:03 packer.orig: 2016/10/17 06:26:03 opening new ssh session | |
2016/10/17 06:26:03 packer.orig: 2016/10/17 06:26:03 starting remote command: esxcli --formatter csv network vm port list -w 402030 | |
2016/10/17 06:26:03 packer.orig: 2016/10/17 06:26:03 remote command exited with '0': esxcli --formatter csv network vm port list -w 402030 | |
2016/10/17 06:26:03 packer.orig: 2016/10/17 06:26:03 [DEBUG] Error getting SSH address: VM network port found, but no IP address | |
2016/10/17 06:26:08 packer.orig: 2016/10/17 06:26:08 opening new ssh session | |
2016/10/17 06:26:08 packer.orig: 2016/10/17 06:26:08 starting remote command: esxcli --formatter csv network vm list | |
2016/10/17 06:26:08 packer.orig: 2016/10/17 06:26:08 remote command exited with '0': esxcli --formatter csv network vm list | |
2016/10/17 06:26:08 packer.orig: 2016/10/17 06:26:08 opening new ssh session | |
2016/10/17 06:26:08 packer.orig: 2016/10/17 06:26:08 starting remote command: esxcli --formatter csv network vm port list -w 402030 | |
2016/10/17 06:26:09 packer.orig: 2016/10/17 06:26:09 remote command exited with '0': esxcli --formatter csv network vm port list -w 402030 | |
2016/10/17 06:26:09 packer.orig: 2016/10/17 06:26:09 [DEBUG] Error getting SSH address: VM network port found, but no IP address | |
2016/10/17 06:26:14 packer.orig: 2016/10/17 06:26:14 opening new ssh session | |
2016/10/17 06:26:14 packer.orig: 2016/10/17 06:26:14 starting remote command: esxcli --formatter csv network vm list | |
2016/10/17 06:26:14 packer.orig: 2016/10/17 06:26:14 remote command exited with '0': esxcli --formatter csv network vm list | |
2016/10/17 06:26:14 packer.orig: 2016/10/17 06:26:14 opening new ssh session | |
2016/10/17 06:26:14 packer.orig: 2016/10/17 06:26:14 starting remote command: esxcli --formatter csv network vm port list -w 402030 | |
2016/10/17 06:26:14 packer.orig: 2016/10/17 06:26:14 remote command exited with '0': esxcli --formatter csv network vm port list -w 402030 | |
2016/10/17 06:26:14 packer.orig: 2016/10/17 06:26:14 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:26:19 packer.orig: 2016/10/17 06:26:19 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:26:24 packer.orig: 2016/10/17 06:26:24 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:26:29 packer.orig: 2016/10/17 06:26:29 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:26:34 packer.orig: 2016/10/17 06:26:34 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:26:39 packer.orig: 2016/10/17 06:26:39 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:26:44 packer.orig: 2016/10/17 06:26:44 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:26:49 packer.orig: 2016/10/17 06:26:49 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:26:54 packer.orig: 2016/10/17 06:26:54 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:26:59 packer.orig: 2016/10/17 06:26:59 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:27:04 packer.orig: 2016/10/17 06:27:04 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:27:09 packer.orig: 2016/10/17 06:27:09 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:27:14 packer.orig: 2016/10/17 06:27:14 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:27:19 packer.orig: 2016/10/17 06:27:19 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:27:24 packer.orig: 2016/10/17 06:27:24 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:27:29 packer.orig: 2016/10/17 06:27:29 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:27:34 packer.orig: 2016/10/17 06:27:34 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:27:39 packer.orig: 2016/10/17 06:27:39 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:27:44 packer.orig: 2016/10/17 06:27:44 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:27:49 packer.orig: 2016/10/17 06:27:49 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:27:54 packer.orig: 2016/10/17 06:27:54 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:27:59 packer.orig: 2016/10/17 06:27:59 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:28:04 packer.orig: 2016/10/17 06:28:04 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:28:09 packer.orig: 2016/10/17 06:28:09 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:28:14 packer.orig: 2016/10/17 06:28:14 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:28:19 packer.orig: 2016/10/17 06:28:19 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:28:24 packer.orig: 2016/10/17 06:28:24 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:28:29 packer.orig: 2016/10/17 06:28:29 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:28:34 packer.orig: 2016/10/17 06:28:34 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:28:39 packer.orig: 2016/10/17 06:28:39 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:28:44 packer.orig: 2016/10/17 06:28:44 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:28:49 packer.orig: 2016/10/17 06:28:49 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:28:54 packer.orig: 2016/10/17 06:28:54 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:28:59 packer.orig: 2016/10/17 06:28:59 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:29:04 packer.orig: 2016/10/17 06:29:04 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:29:09 packer.orig: 2016/10/17 06:29:09 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:29:14 packer.orig: 2016/10/17 06:29:14 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:29:19 packer.orig: 2016/10/17 06:29:19 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:29:24 packer.orig: 2016/10/17 06:29:24 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:29:29 packer.orig: 2016/10/17 06:29:29 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:29:34 packer.orig: 2016/10/17 06:29:34 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:29:39 packer.orig: 2016/10/17 06:29:39 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:29:44 packer.orig: 2016/10/17 06:29:44 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:29:49 packer.orig: 2016/10/17 06:29:49 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:29:54 packer.orig: 2016/10/17 06:29:54 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:29:59 packer.orig: 2016/10/17 06:29:59 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:30:04 packer.orig: 2016/10/17 06:30:04 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:30:09 packer.orig: 2016/10/17 06:30:09 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:30:14 packer.orig: 2016/10/17 06:30:14 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:30:19 packer.orig: 2016/10/17 06:30:19 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:30:24 packer.orig: 2016/10/17 06:30:24 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:30:29 packer.orig: 2016/10/17 06:30:29 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:30:34 packer.orig: 2016/10/17 06:30:34 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:30:39 packer.orig: 2016/10/17 06:30:39 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:30:44 packer.orig: 2016/10/17 06:30:44 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:30:49 packer.orig: 2016/10/17 06:30:49 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:30:54 packer.orig: 2016/10/17 06:30:54 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:30:59 packer.orig: 2016/10/17 06:30:59 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:31:04 packer.orig: 2016/10/17 06:31:04 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:31:09 packer.orig: 2016/10/17 06:31:09 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:31:14 packer.orig: 2016/10/17 06:31:14 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:31:19 packer.orig: 2016/10/17 06:31:19 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:31:24 packer.orig: 2016/10/17 06:31:24 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:31:29 packer.orig: 2016/10/17 06:31:29 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:31:34 packer.orig: 2016/10/17 06:31:34 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:31:39 packer.orig: 2016/10/17 06:31:39 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:31:44 packer.orig: 2016/10/17 06:31:44 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:31:49 packer.orig: 2016/10/17 06:31:49 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:31:54 packer.orig: 2016/10/17 06:31:54 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:31:59 packer.orig: 2016/10/17 06:31:59 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:32:04 packer.orig: 2016/10/17 06:32:04 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:32:09 packer.orig: 2016/10/17 06:32:09 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:32:14 packer.orig: 2016/10/17 06:32:14 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:32:19 packer.orig: 2016/10/17 06:32:19 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:32:24 packer.orig: 2016/10/17 06:32:24 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:32:29 packer.orig: 2016/10/17 06:32:29 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:32:34 packer.orig: 2016/10/17 06:32:34 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:32:39 packer.orig: 2016/10/17 06:32:39 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:32:44 packer.orig: 2016/10/17 06:32:44 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:32:49 packer.orig: 2016/10/17 06:32:49 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:32:54 packer.orig: 2016/10/17 06:32:54 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:32:59 packer.orig: 2016/10/17 06:32:59 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:33:04 packer.orig: 2016/10/17 06:33:04 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:33:09 packer.orig: 2016/10/17 06:33:09 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:33:14 packer.orig: 2016/10/17 06:33:14 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:33:19 packer.orig: 2016/10/17 06:33:19 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:33:24 packer.orig: 2016/10/17 06:33:24 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:33:29 packer.orig: 2016/10/17 06:33:29 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:33:34 packer.orig: 2016/10/17 06:33:34 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:33:39 packer.orig: 2016/10/17 06:33:39 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:33:44 packer.orig: 2016/10/17 06:33:44 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:33:49 packer.orig: 2016/10/17 06:33:49 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:33:54 packer.orig: 2016/10/17 06:33:54 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:33:59 packer.orig: 2016/10/17 06:33:59 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:34:04 packer.orig: 2016/10/17 06:34:04 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:34:09 packer.orig: 2016/10/17 06:34:09 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:34:14 packer.orig: 2016/10/17 06:34:14 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:34:19 packer.orig: 2016/10/17 06:34:19 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:34:24 packer.orig: 2016/10/17 06:34:24 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:34:29 packer.orig: 2016/10/17 06:34:29 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:34:34 packer.orig: 2016/10/17 06:34:34 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:34:39 packer.orig: 2016/10/17 06:34:39 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:34:44 packer.orig: 2016/10/17 06:34:44 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:34:49 packer.orig: 2016/10/17 06:34:49 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:34:54 packer.orig: 2016/10/17 06:34:54 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:34:59 packer.orig: 2016/10/17 06:34:59 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:35:04 packer.orig: 2016/10/17 06:35:04 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:35:09 packer.orig: 2016/10/17 06:35:09 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:35:14 packer.orig: 2016/10/17 06:35:14 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:35:19 packer.orig: 2016/10/17 06:35:19 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:35:24 packer.orig: 2016/10/17 06:35:24 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:35:29 packer.orig: 2016/10/17 06:35:29 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:35:34 packer.orig: 2016/10/17 06:35:34 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:35:39 packer.orig: 2016/10/17 06:35:39 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:35:44 packer.orig: 2016/10/17 06:35:44 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:35:49 packer.orig: 2016/10/17 06:35:49 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:35:54 packer.orig: 2016/10/17 06:35:54 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:35:59 packer.orig: 2016/10/17 06:35:59 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:36:04 packer.orig: 2016/10/17 06:36:04 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:36:09 packer.orig: 2016/10/17 06:36:09 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:36:14 packer.orig: 2016/10/17 06:36:14 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:36:19 packer.orig: 2016/10/17 06:36:19 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:36:24 packer.orig: 2016/10/17 06:36:24 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:36:29 packer.orig: 2016/10/17 06:36:29 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:36:34 packer.orig: 2016/10/17 06:36:34 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:36:39 packer.orig: 2016/10/17 06:36:39 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:36:44 packer.orig: 2016/10/17 06:36:44 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:36:49 packer.orig: 2016/10/17 06:36:49 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:36:54 packer.orig: 2016/10/17 06:36:54 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:36:59 packer.orig: 2016/10/17 06:36:59 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:37:04 packer.orig: 2016/10/17 06:37:04 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:37:09 packer.orig: 2016/10/17 06:37:09 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:37:14 packer.orig: 2016/10/17 06:37:14 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:37:19 packer.orig: 2016/10/17 06:37:19 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:37:24 packer.orig: 2016/10/17 06:37:24 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:37:29 packer.orig: 2016/10/17 06:37:29 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:37:34 packer.orig: 2016/10/17 06:37:34 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:37:39 packer.orig: 2016/10/17 06:37:39 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:37:44 packer.orig: 2016/10/17 06:37:44 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:37:49 packer.orig: 2016/10/17 06:37:49 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:37:54 packer.orig: 2016/10/17 06:37:54 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:37:59 packer.orig: 2016/10/17 06:37:59 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:38:04 packer.orig: 2016/10/17 06:38:04 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:38:09 packer.orig: 2016/10/17 06:38:09 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:38:14 packer.orig: 2016/10/17 06:38:14 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:38:19 packer.orig: 2016/10/17 06:38:19 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:38:24 packer.orig: 2016/10/17 06:38:24 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:38:29 packer.orig: 2016/10/17 06:38:29 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:38:34 packer.orig: 2016/10/17 06:38:34 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:38:39 packer.orig: 2016/10/17 06:38:39 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:38:44 packer.orig: 2016/10/17 06:38:44 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:38:49 packer.orig: 2016/10/17 06:38:49 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:38:54 packer.orig: 2016/10/17 06:38:54 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:38:59 packer.orig: 2016/10/17 06:38:59 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:39:04 packer.orig: 2016/10/17 06:39:04 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:39:09 packer.orig: 2016/10/17 06:39:09 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:39:14 packer.orig: 2016/10/17 06:39:14 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:39:20 packer.orig: 2016/10/17 06:39:20 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:39:25 packer.orig: 2016/10/17 06:39:25 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:39:30 packer.orig: 2016/10/17 06:39:30 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:39:35 packer.orig: 2016/10/17 06:39:35 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:39:40 packer.orig: 2016/10/17 06:39:40 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:39:45 packer.orig: 2016/10/17 06:39:45 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:39:50 packer.orig: 2016/10/17 06:39:50 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:39:55 packer.orig: 2016/10/17 06:39:55 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:40:00 packer.orig: 2016/10/17 06:40:00 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:40:05 packer.orig: 2016/10/17 06:40:05 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:40:10 packer.orig: 2016/10/17 06:40:10 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:40:15 packer.orig: 2016/10/17 06:40:15 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:40:20 packer.orig: 2016/10/17 06:40:20 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:40:25 packer.orig: 2016/10/17 06:40:25 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:40:30 packer.orig: 2016/10/17 06:40:30 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:40:35 packer.orig: 2016/10/17 06:40:35 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:40:40 packer.orig: 2016/10/17 06:40:40 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:40:45 packer.orig: 2016/10/17 06:40:45 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:40:50 packer.orig: 2016/10/17 06:40:50 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:40:55 packer.orig: 2016/10/17 06:40:55 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:41:00 packer.orig: 2016/10/17 06:41:00 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:41:05 packer.orig: 2016/10/17 06:41:05 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:41:10 packer.orig: 2016/10/17 06:41:10 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:41:15 packer.orig: 2016/10/17 06:41:15 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:41:20 packer.orig: 2016/10/17 06:41:20 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:41:25 packer.orig: 2016/10/17 06:41:25 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:41:30 packer.orig: 2016/10/17 06:41:30 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:41:35 packer.orig: 2016/10/17 06:41:35 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:41:40 packer.orig: 2016/10/17 06:41:40 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:41:45 packer.orig: 2016/10/17 06:41:45 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:41:50 packer.orig: 2016/10/17 06:41:50 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:41:55 packer.orig: 2016/10/17 06:41:55 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:42:00 packer.orig: 2016/10/17 06:42:00 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:42:05 packer.orig: 2016/10/17 06:42:05 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:42:10 packer.orig: 2016/10/17 06:42:10 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:42:15 packer.orig: 2016/10/17 06:42:15 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:42:20 packer.orig: 2016/10/17 06:42:20 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:42:25 packer.orig: 2016/10/17 06:42:25 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:42:30 packer.orig: 2016/10/17 06:42:30 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:42:35 packer.orig: 2016/10/17 06:42:35 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:42:40 packer.orig: 2016/10/17 06:42:40 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:42:45 packer.orig: 2016/10/17 06:42:45 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:42:50 packer.orig: 2016/10/17 06:42:50 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:42:55 packer.orig: 2016/10/17 06:42:55 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:43:00 packer.orig: 2016/10/17 06:43:00 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:43:05 packer.orig: 2016/10/17 06:43:05 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:43:10 packer.orig: 2016/10/17 06:43:10 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:43:15 packer.orig: 2016/10/17 06:43:15 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:43:20 packer.orig: 2016/10/17 06:43:20 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:43:25 packer.orig: 2016/10/17 06:43:25 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:43:30 packer.orig: 2016/10/17 06:43:30 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:43:35 packer.orig: 2016/10/17 06:43:35 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:43:40 packer.orig: 2016/10/17 06:43:40 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:43:45 packer.orig: 2016/10/17 06:43:45 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:43:50 packer.orig: 2016/10/17 06:43:50 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:43:55 packer.orig: 2016/10/17 06:43:55 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:44:00 packer.orig: 2016/10/17 06:44:00 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:44:05 packer.orig: 2016/10/17 06:44:05 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:44:10 packer.orig: 2016/10/17 06:44:10 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:44:15 packer.orig: 2016/10/17 06:44:15 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:44:20 packer.orig: 2016/10/17 06:44:20 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:44:25 packer.orig: 2016/10/17 06:44:25 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:44:30 packer.orig: 2016/10/17 06:44:30 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:44:35 packer.orig: 2016/10/17 06:44:35 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:44:40 packer.orig: 2016/10/17 06:44:40 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:44:45 packer.orig: 2016/10/17 06:44:45 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:44:50 packer.orig: 2016/10/17 06:44:50 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:44:55 packer.orig: 2016/10/17 06:44:55 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:45:00 packer.orig: 2016/10/17 06:45:00 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:45:05 packer.orig: 2016/10/17 06:45:05 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:45:10 packer.orig: 2016/10/17 06:45:10 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:45:15 packer.orig: 2016/10/17 06:45:15 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:45:20 packer.orig: 2016/10/17 06:45:20 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:45:25 packer.orig: 2016/10/17 06:45:25 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:45:30 packer.orig: 2016/10/17 06:45:30 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:45:35 packer.orig: 2016/10/17 06:45:35 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:45:40 packer.orig: 2016/10/17 06:45:40 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:45:45 packer.orig: 2016/10/17 06:45:45 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:45:50 packer.orig: 2016/10/17 06:45:50 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:45:55 packer.orig: 2016/10/17 06:45:55 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:46:00 packer.orig: 2016/10/17 06:46:00 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:46:05 packer.orig: 2016/10/17 06:46:05 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:46:10 packer.orig: 2016/10/17 06:46:10 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:46:15 packer.orig: 2016/10/17 06:46:15 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: getsockopt: connection refused | |
2016/10/17 06:46:35 packer.orig: 2016/10/17 06:46:35 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: i/o timeout | |
2016/10/17 06:46:55 packer.orig: 2016/10/17 06:46:55 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: i/o timeout | |
2016/10/17 06:47:15 packer.orig: 2016/10/17 06:47:15 [DEBUG] TCP connection to SSH ip/port failed: dial tcp x.x.x.x:22: i/o timeout | |
2016/10/17 06:47:20 packer.orig: 2016/10/17 06:47:20 [INFO] Attempting SSH connection... | |
2016/10/17 06:47:20 packer.orig: 2016/10/17 06:47:20 reconnecting to TCP connection for SSH | |
2016/10/17 06:47:20 packer.orig: 2016/10/17 06:47:20 handshaking with SSH | |
2016/10/17 06:47:26 packer.orig: 2016/10/17 06:47:26 handshake complete! | |
2016/10/17 06:47:26 packer.orig: 2016/10/17 06:47:26 opening new ssh session | |
2016/10/17 06:47:26 packer.orig: 2016/10/17 06:47:26 [INFO] agent forwarding enabled | |
2016/10/17 06:47:26 ui: ==> vmware-iso: Connected to SSH! | |
==> vmware-iso: Connected to SSH! | |
2016/10/17 06:47:26 packer.orig: 2016/10/17 06:47:26 opening new ssh session | |
2016/10/17 06:47:26 packer.orig: 2016/10/17 06:47:26 starting remote command: vim-cmd vmsvc/tools.install 128 | |
2016/10/17 06:47:27 packer.orig: 2016/10/17 06:47:27 remote command exited with '1': vim-cmd vmsvc/tools.install 128 | |
2016/10/17 06:47:27 packer.orig: 2016/10/17 06:47:27 Running the provision hook | |
==> vmware-iso: Uploading script/support/set_kcpassword.py => /private/tmp/set_kcpassword.py | |
2016/10/17 06:47:27 ui: ==> vmware-iso: Uploading script/support/set_kcpassword.py => /private/tmp/set_kcpassword.py | |
2016/10/17 06:47:27 packer.orig: 2016/10/17 06:47:27 [INFO] 1081 bytes written for 'uploadData' | |
2016/10/17 06:47:27 packer.orig: 2016/10/17 06:47:27 opening new ssh session | |
2016/10/17 06:47:27 [INFO] 1081 bytes written for 'uploadData' | |
2016/10/17 06:47:27 packer.orig: 2016/10/17 06:47:27 Starting remote scp process: scp -vt /private/tmp | |
2016/10/17 06:47:27 packer.orig: 2016/10/17 06:47:27 Started SCP session, beginning transfers... | |
2016/10/17 06:47:27 packer.orig: 2016/10/17 06:47:27 Copying input data into temporary file so we can read the length | |
2016/10/17 06:47:27 packer.orig: 2016/10/17 06:47:27 [DEBUG] scp: Uploading set_kcpassword.py: perms=C0644 size=1081 | |
2016/10/17 06:47:27 packer.orig: 2016/10/17 06:47:27 SCP session complete, closing stdin pipe. | |
2016/10/17 06:47:27 packer.orig: 2016/10/17 06:47:27 Waiting for SSH session to complete. | |
2016/10/17 06:47:27 packer.orig: 2016/10/17 06:47:27 scp stderr (length 35): Sink: C0644 1081 set_kcpassword.py | |
2016/10/17 06:47:27 ui: ==> vmware-iso: Uploading darwin.iso => /Users/vagrant/darwin.iso | |
==> vmware-iso: Uploading darwin.iso => /Users/vagrant/darwin.iso | |
2016/10/17 06:47:27 packer.orig: 2016/10/17 06:47:27 opening new ssh session | |
2016/10/17 06:47:27 packer.orig: 2016/10/17 06:47:27 Starting remote scp process: scp -vt /Users/vagrant | |
2016/10/17 06:47:27 packer.orig: 2016/10/17 06:47:27 Started SCP session, beginning transfers... | |
2016/10/17 06:47:27 packer.orig: 2016/10/17 06:47:27 Copying input data into temporary file so we can read the length | |
2016/10/17 06:47:27 packer.orig: 2016/10/17 06:47:27 [INFO] 3092480 bytes written for 'uploadData' | |
2016/10/17 06:47:27 [INFO] 3092480 bytes written for 'uploadData' | |
2016/10/17 06:47:27 packer.orig: 2016/10/17 06:47:27 [DEBUG] scp: Uploading darwin.iso: perms=C0644 size=3092480 | |
2016/10/17 06:47:27 packer.orig: 2016/10/17 06:47:27 SCP session complete, closing stdin pipe. | |
2016/10/17 06:47:27 packer.orig: 2016/10/17 06:47:27 Waiting for SSH session to complete. | |
2016/10/17 06:47:27 packer.orig: 2016/10/17 06:47:27 scp stderr (length 31): Sink: C0644 3092480 darwin.iso | |
2016/10/17 06:47:27 ui: ==> vmware-iso: Provisioning with shell script: script/vagrant.sh | |
==> vmware-iso: Provisioning with shell script: script/vagrant.sh | |
2016/10/17 06:47:27 packer.orig: 2016/10/17 06:47:27 Opening script/vagrant.sh for reading | |
2016/10/17 06:47:27 packer.orig: 2016/10/17 06:47:27 opening new ssh session | |
2016/10/17 06:47:27 [INFO] 1417 bytes written for 'uploadData' | |
2016/10/17 06:47:27 packer.orig: 2016/10/17 06:47:27 [INFO] 1417 bytes written for 'uploadData' | |
2016/10/17 06:47:27 packer.orig: 2016/10/17 06:47:27 Starting remote scp process: scp -vt /tmp | |
2016/10/17 06:47:27 packer.orig: 2016/10/17 06:47:27 Started SCP session, beginning transfers... | |
2016/10/17 06:47:27 packer.orig: 2016/10/17 06:47:27 Copying input data into temporary file so we can read the length | |
2016/10/17 06:47:27 packer.orig: 2016/10/17 06:47:27 [DEBUG] scp: Uploading script_5299.sh: perms=C0644 size=1417 | |
2016/10/17 06:47:27 packer.orig: 2016/10/17 06:47:27 SCP session complete, closing stdin pipe. | |
2016/10/17 06:47:27 packer.orig: 2016/10/17 06:47:27 Waiting for SSH session to complete. | |
2016/10/17 06:47:27 packer.orig: 2016/10/17 06:47:27 scp stderr (length 32): Sink: C0644 1417 script_5299.sh | |
2016/10/17 06:47:27 packer.orig: 2016/10/17 06:47:27 opening new ssh session | |
2016/10/17 06:47:27 packer.orig: 2016/10/17 06:47:27 starting remote command: chmod 0755 /tmp/script_5299.sh | |
2016/10/17 06:47:27 packer.orig: 2016/10/17 06:47:27 remote command exited with '0': chmod 0755 /tmp/script_5299.sh | |
2016/10/17 06:47:27 packer.orig: 2016/10/17 06:47:27 [INFO] RPC endpoint: Communicator ended with: 0 | |
2016/10/17 06:47:27 [INFO] RPC client: Communicator ended with: 0 | |
2016/10/17 06:47:27 [INFO] RPC endpoint: Communicator ended with: 0 | |
2016/10/17 06:47:27 packer.orig: 2016/10/17 06:47:27 [INFO] RPC client: Communicator ended with: 0 | |
2016/10/17 06:47:27 packer.orig: 2016/10/17 06:47:27 opening new ssh session | |
2016/10/17 06:47:27 packer.orig: 2016/10/17 06:47:27 starting remote command: chmod +x /tmp/script_5299.sh; PACKER_BUILD_NAME='vmware-iso' PACKER_BUILDER_TYPE='vmware-iso' AUTOLOGIN='true' CM='nocm' CM_VERSION='' UPDATE='true' INSTALL_XCODE_CLI_TOOLS='true' INSTALL_VAGRANT_KEYS='true' SSH_USERNAME='vagrant' SSH_PASSWORD='vagrant' sudo -E -S bash '/tmp/script_5299.sh' | |
2016/10/17 06:47:27 ui: vmware-iso: Installing vagrant keys for vagrant user | |
vmware-iso: Installing vagrant keys for vagrant user | |
2016/10/17 06:47:35 packer.orig: 2016/10/17 06:47:35 remote command exited with '0': chmod +x /tmp/script_5299.sh; PACKER_BUILD_NAME='vmware-iso' PACKER_BUILDER_TYPE='vmware-iso' AUTOLOGIN='true' CM='nocm' CM_VERSION='' UPDATE='true' INSTALL_XCODE_CLI_TOOLS='true' INSTALL_VAGRANT_KEYS='true' SSH_USERNAME='vagrant' SSH_PASSWORD='vagrant' sudo -E -S bash '/tmp/script_5299.sh' | |
2016/10/17 06:47:35 packer.orig: 2016/10/17 06:47:35 [INFO] RPC endpoint: Communicator ended with: 0 | |
2016/10/17 06:47:35 [INFO] 41 bytes written for 'stdout' | |
2016/10/17 06:47:35 [INFO] 0 bytes written for 'stderr' | |
2016/10/17 06:47:35 [INFO] RPC client: Communicator ended with: 0 | |
2016/10/17 06:47:35 [INFO] RPC endpoint: Communicator ended with: 0 | |
2016/10/17 06:47:35 packer.orig: 2016/10/17 06:47:35 [INFO] 41 bytes written for 'stdout' | |
2016/10/17 06:47:35 packer.orig: 2016/10/17 06:47:35 [INFO] 0 bytes written for 'stderr' | |
2016/10/17 06:47:35 packer.orig: 2016/10/17 06:47:35 [INFO] RPC client: Communicator ended with: 0 | |
2016/10/17 06:47:35 packer.orig: 2016/10/17 06:47:35 opening new ssh session | |
2016/10/17 06:47:35 packer.orig: 2016/10/17 06:47:35 starting remote command: rm -f /tmp/script_5299.sh | |
2016/10/17 06:47:35 packer.orig: 2016/10/17 06:47:35 remote command exited with '0': rm -f /tmp/script_5299.sh | |
2016/10/17 06:47:35 packer.orig: 2016/10/17 06:47:35 [INFO] RPC endpoint: Communicator ended with: 0 | |
2016/10/17 06:47:35 [INFO] RPC client: Communicator ended with: 0 | |
2016/10/17 06:47:35 [INFO] RPC endpoint: Communicator ended with: 0 | |
2016/10/17 06:47:35 packer.orig: 2016/10/17 06:47:35 [INFO] RPC client: Communicator ended with: 0 | |
2016/10/17 06:47:35 ui: ==> vmware-iso: Provisioning with shell script: script/vmware.sh | |
==> vmware-iso: Provisioning with shell script: script/vmware.sh | |
2016/10/17 06:47:35 packer.orig: 2016/10/17 06:47:35 Opening script/vmware.sh for reading | |
2016/10/17 06:47:35 packer.orig: 2016/10/17 06:47:35 opening new ssh session | |
2016/10/17 06:47:35 packer.orig: 2016/10/17 06:47:35 [INFO] 1509 bytes written for 'uploadData' | |
2016/10/17 06:47:35 [INFO] 1509 bytes written for 'uploadData' | |
2016/10/17 06:47:35 packer.orig: 2016/10/17 06:47:35 Starting remote scp process: scp -vt /tmp | |
2016/10/17 06:47:35 packer.orig: 2016/10/17 06:47:35 Started SCP session, beginning transfers... | |
2016/10/17 06:47:35 packer.orig: 2016/10/17 06:47:35 Copying input data into temporary file so we can read the length | |
2016/10/17 06:47:35 packer.orig: 2016/10/17 06:47:35 [DEBUG] scp: Uploading script_5299.sh: perms=C0644 size=1509 | |
2016/10/17 06:47:35 packer.orig: 2016/10/17 06:47:35 SCP session complete, closing stdin pipe. | |
2016/10/17 06:47:35 packer.orig: 2016/10/17 06:47:35 Waiting for SSH session to complete. | |
2016/10/17 06:47:35 packer.orig: 2016/10/17 06:47:35 scp stderr (length 32): Sink: C0644 1509 script_5299.sh | |
2016/10/17 06:47:35 packer.orig: 2016/10/17 06:47:35 opening new ssh session | |
2016/10/17 06:47:35 packer.orig: 2016/10/17 06:47:35 starting remote command: chmod 0755 /tmp/script_5299.sh | |
2016/10/17 06:47:35 packer.orig: 2016/10/17 06:47:35 remote command exited with '0': chmod 0755 /tmp/script_5299.sh | |
2016/10/17 06:47:35 packer.orig: 2016/10/17 06:47:35 [INFO] RPC endpoint: Communicator ended with: 0 | |
2016/10/17 06:47:35 [INFO] RPC client: Communicator ended with: 0 | |
2016/10/17 06:47:35 [INFO] RPC endpoint: Communicator ended with: 0 | |
2016/10/17 06:47:35 packer.orig: 2016/10/17 06:47:35 [INFO] RPC client: Communicator ended with: 0 | |
2016/10/17 06:47:35 packer.orig: 2016/10/17 06:47:35 opening new ssh session | |
2016/10/17 06:47:35 packer.orig: 2016/10/17 06:47:35 starting remote command: chmod +x /tmp/script_5299.sh; PACKER_BUILD_NAME='vmware-iso' PACKER_BUILDER_TYPE='vmware-iso' AUTOLOGIN='true' CM='nocm' CM_VERSION='' UPDATE='true' INSTALL_XCODE_CLI_TOOLS='true' INSTALL_VAGRANT_KEYS='true' SSH_USERNAME='vagrant' SSH_PASSWORD='vagrant' sudo -E -S bash '/tmp/script_5299.sh' | |
2016/10/17 06:47:35 ui: vmware-iso: Berne: Couldn't find VMware Tools mounted | |
vmware-iso: Berne: Couldn't find VMware Tools mounted | |
2016/10/17 06:47:37 ui: vmware-iso: /dev/disk2 Apple_partition_scheme | |
vmware-iso: /dev/disk2 Apple_partition_scheme | |
2016/10/17 06:47:37 ui: vmware-iso: /dev/disk2s1 Apple_partition_map | |
vmware-iso: /dev/disk2s1 Apple_partition_map | |
2016/10/17 06:47:37 ui: vmware-iso: /dev/disk2s2 Apple_HFS /private/tmp/vmware-tools.GvRC | |
vmware-iso: /dev/disk2s2 Apple_HFS /private/tmp/vmware-tools.GvRC | |
2016/10/17 06:47:37 ui: vmware-iso: $TMPMOUNT='/tmp/vmware-tools.GvRC' | |
vmware-iso: $TMPMOUNT='/tmp/vmware-tools.GvRC' | |
2016/10/17 06:47:37 ui: vmware-iso: Installing VMware tools.. | |
vmware-iso: Installing VMware tools.. | |
vmware-iso: installer: Package name is VMware Tools | |
2016/10/17 06:52:35 ui: vmware-iso: installer: Package name is VMware Tools | |
2016/10/17 06:52:35 ui: vmware-iso: installer: Installing at base path / | |
vmware-iso: installer: Installing at base path / | |
2016/10/17 06:52:35 ui: vmware-iso: installer: The install was successful. | |
vmware-iso: installer: The install was successful. | |
2016/10/17 06:52:35 ui: vmware-iso: installer: The install requires restarting now. | |
vmware-iso: installer: The install requires restarting now. | |
2016/10/17 06:52:35 ui: vmware-iso: "disk2" unmounted. | |
vmware-iso: "disk2" unmounted. | |
vmware-iso: "disk2" ejected. | |
2016/10/17 06:52:35 ui: vmware-iso: "disk2" ejected. | |
2016/10/17 06:52:35 packer.orig: 2016/10/17 06:52:35 remote command exited with '0': chmod +x /tmp/script_5299.sh; PACKER_BUILD_NAME='vmware-iso' PACKER_BUILDER_TYPE='vmware-iso' AUTOLOGIN='true' CM='nocm' CM_VERSION='' UPDATE='true' INSTALL_XCODE_CLI_TOOLS='true' INSTALL_VAGRANT_KEYS='true' SSH_USERNAME='vagrant' SSH_PASSWORD='vagrant' sudo -E -S bash '/tmp/script_5299.sh' | |
2016/10/17 06:52:35 packer.orig: 2016/10/17 06:52:35 [INFO] RPC endpoint: Communicator ended with: 0 | |
2016/10/17 06:52:35 [INFO] RPC client: Communicator ended with: 0 | |
2016/10/17 06:52:35 [INFO] RPC endpoint: Communicator ended with: 0 | |
2016/10/17 06:52:35 [INFO] 495 bytes written for 'stdout' | |
2016/10/17 06:52:35 [INFO] 0 bytes written for 'stderr' | |
2016/10/17 06:52:35 packer.orig: 2016/10/17 06:52:35 [INFO] 495 bytes written for 'stdout' | |
2016/10/17 06:52:35 packer.orig: 2016/10/17 06:52:35 [INFO] 0 bytes written for 'stderr' | |
2016/10/17 06:52:35 packer.orig: 2016/10/17 06:52:35 [INFO] RPC client: Communicator ended with: 0 | |
2016/10/17 06:52:35 packer.orig: 2016/10/17 06:52:35 opening new ssh session | |
2016/10/17 06:52:35 packer.orig: 2016/10/17 06:52:35 starting remote command: rm -f /tmp/script_5299.sh | |
2016/10/17 06:52:35 packer.orig: 2016/10/17 06:52:35 remote command exited with '0': rm -f /tmp/script_5299.sh | |
2016/10/17 06:52:35 packer.orig: 2016/10/17 06:52:35 [INFO] RPC endpoint: Communicator ended with: 0 | |
2016/10/17 06:52:35 [INFO] RPC client: Communicator ended with: 0 | |
2016/10/17 06:52:35 [INFO] RPC endpoint: Communicator ended with: 0 | |
2016/10/17 06:52:35 packer.orig: 2016/10/17 06:52:35 [INFO] RPC client: Communicator ended with: 0 | |
2016/10/17 06:52:35 ui: ==> vmware-iso: Provisioning with shell script: script/parallels.sh | |
==> vmware-iso: Provisioning with shell script: script/parallels.sh | |
2016/10/17 06:52:35 packer.orig: 2016/10/17 06:52:35 Opening script/parallels.sh for reading | |
2016/10/17 06:52:35 packer.orig: 2016/10/17 06:52:35 opening new ssh session | |
2016/10/17 06:52:35 packer.orig: 2016/10/17 06:52:35 [INFO] 850 bytes written for 'uploadData' | |
2016/10/17 06:52:35 [INFO] 850 bytes written for 'uploadData' | |
2016/10/17 06:52:35 packer.orig: 2016/10/17 06:52:35 Starting remote scp process: scp -vt /tmp | |
2016/10/17 06:52:35 packer.orig: 2016/10/17 06:52:35 Started SCP session, beginning transfers... | |
2016/10/17 06:52:35 packer.orig: 2016/10/17 06:52:35 Copying input data into temporary file so we can read the length | |
2016/10/17 06:52:35 packer.orig: 2016/10/17 06:52:35 [DEBUG] scp: Uploading script_5299.sh: perms=C0644 size=850 | |
2016/10/17 06:52:35 packer.orig: 2016/10/17 06:52:35 SCP session complete, closing stdin pipe. | |
2016/10/17 06:52:35 packer.orig: 2016/10/17 06:52:35 Waiting for SSH session to complete. | |
2016/10/17 06:52:35 packer.orig: 2016/10/17 06:52:35 scp stderr (length 31): Sink: C0644 850 script_5299.sh | |
2016/10/17 06:52:35 packer.orig: 2016/10/17 06:52:35 opening new ssh session | |
2016/10/17 06:52:35 packer.orig: 2016/10/17 06:52:35 starting remote command: chmod 0755 /tmp/script_5299.sh | |
2016/10/17 06:52:35 packer.orig: 2016/10/17 06:52:35 remote command exited with '0': chmod 0755 /tmp/script_5299.sh | |
2016/10/17 06:52:35 packer.orig: 2016/10/17 06:52:35 [INFO] RPC endpoint: Communicator ended with: 0 | |
2016/10/17 06:52:35 [INFO] RPC client: Communicator ended with: 0 | |
2016/10/17 06:52:35 [INFO] RPC endpoint: Communicator ended with: 0 | |
2016/10/17 06:52:35 packer.orig: 2016/10/17 06:52:35 [INFO] RPC client: Communicator ended with: 0 | |
2016/10/17 06:52:35 packer.orig: 2016/10/17 06:52:35 opening new ssh session | |
2016/10/17 06:52:35 packer.orig: 2016/10/17 06:52:35 starting remote command: chmod +x /tmp/script_5299.sh; PACKER_BUILD_NAME='vmware-iso' PACKER_BUILDER_TYPE='vmware-iso' AUTOLOGIN='true' CM='nocm' CM_VERSION='' UPDATE='true' INSTALL_XCODE_CLI_TOOLS='true' INSTALL_VAGRANT_KEYS='true' SSH_USERNAME='vagrant' SSH_PASSWORD='vagrant' sudo -E -S bash '/tmp/script_5299.sh' | |
2016/10/17 06:52:35 packer.orig: 2016/10/17 06:52:35 remote command exited with '0': chmod +x /tmp/script_5299.sh; PACKER_BUILD_NAME='vmware-iso' PACKER_BUILDER_TYPE='vmware-iso' AUTOLOGIN='true' CM='nocm' CM_VERSION='' UPDATE='true' INSTALL_XCODE_CLI_TOOLS='true' INSTALL_VAGRANT_KEYS='true' SSH_USERNAME='vagrant' SSH_PASSWORD='vagrant' sudo -E -S bash '/tmp/script_5299.sh' | |
2016/10/17 06:52:35 packer.orig: 2016/10/17 06:52:35 [INFO] RPC endpoint: Communicator ended with: 0 | |
2016/10/17 06:52:35 [INFO] 0 bytes written for 'stdout' | |
2016/10/17 06:52:35 [INFO] 0 bytes written for 'stderr' | |
2016/10/17 06:52:35 [INFO] RPC client: Communicator ended with: 0 | |
2016/10/17 06:52:35 [INFO] RPC endpoint: Communicator ended with: 0 | |
2016/10/17 06:52:35 packer.orig: 2016/10/17 06:52:35 [INFO] RPC client: Communicator ended with: 0 | |
2016/10/17 06:52:35 packer.orig: 2016/10/17 06:52:35 [INFO] 0 bytes written for 'stdout' | |
2016/10/17 06:52:35 packer.orig: 2016/10/17 06:52:35 [INFO] 0 bytes written for 'stderr' | |
2016/10/17 06:52:35 packer.orig: 2016/10/17 06:52:35 opening new ssh session | |
2016/10/17 06:52:35 packer.orig: 2016/10/17 06:52:35 starting remote command: rm -f /tmp/script_5299.sh | |
2016/10/17 06:52:35 packer.orig: 2016/10/17 06:52:35 remote command exited with '0': rm -f /tmp/script_5299.sh | |
2016/10/17 06:52:35 packer.orig: 2016/10/17 06:52:35 [INFO] RPC endpoint: Communicator ended with: 0 | |
2016/10/17 06:52:35 [INFO] RPC client: Communicator ended with: 0 | |
2016/10/17 06:52:35 [INFO] RPC endpoint: Communicator ended with: 0 | |
2016/10/17 06:52:35 packer.orig: 2016/10/17 06:52:35 [INFO] RPC client: Communicator ended with: 0 | |
2016/10/17 06:52:35 ui: ==> vmware-iso: Provisioning with shell script: script/xcode-cli-tools.sh | |
==> vmware-iso: Provisioning with shell script: script/xcode-cli-tools.sh | |
2016/10/17 06:52:35 packer.orig: 2016/10/17 06:52:35 Opening script/xcode-cli-tools.sh for reading | |
2016/10/17 06:52:35 packer.orig: 2016/10/17 06:52:35 [INFO] 1830 bytes written for 'uploadData' | |
2016/10/17 06:52:35 [INFO] 1830 bytes written for 'uploadData' | |
2016/10/17 06:52:35 packer.orig: 2016/10/17 06:52:35 opening new ssh session | |
2016/10/17 06:52:35 packer.orig: 2016/10/17 06:52:35 Starting remote scp process: scp -vt /tmp | |
2016/10/17 06:52:35 packer.orig: 2016/10/17 06:52:35 Started SCP session, beginning transfers... | |
2016/10/17 06:52:35 packer.orig: 2016/10/17 06:52:35 Copying input data into temporary file so we can read the length | |
2016/10/17 06:52:35 packer.orig: 2016/10/17 06:52:35 [DEBUG] scp: Uploading script_5299.sh: perms=C0644 size=1830 | |
2016/10/17 06:52:35 packer.orig: 2016/10/17 06:52:35 SCP session complete, closing stdin pipe. | |
2016/10/17 06:52:35 packer.orig: 2016/10/17 06:52:35 Waiting for SSH session to complete. | |
2016/10/17 06:52:35 packer.orig: 2016/10/17 06:52:35 scp stderr (length 32): Sink: C0644 1830 script_5299.sh | |
2016/10/17 06:52:35 packer.orig: 2016/10/17 06:52:35 opening new ssh session | |
2016/10/17 06:52:35 packer.orig: 2016/10/17 06:52:35 starting remote command: chmod 0755 /tmp/script_5299.sh | |
2016/10/17 06:52:35 packer.orig: 2016/10/17 06:52:35 remote command exited with '0': chmod 0755 /tmp/script_5299.sh | |
2016/10/17 06:52:35 packer.orig: 2016/10/17 06:52:35 [INFO] RPC endpoint: Communicator ended with: 0 | |
2016/10/17 06:52:35 [INFO] RPC client: Communicator ended with: 0 | |
2016/10/17 06:52:35 [INFO] RPC endpoint: Communicator ended with: 0 | |
2016/10/17 06:52:35 packer.orig: 2016/10/17 06:52:35 [INFO] RPC client: Communicator ended with: 0 | |
2016/10/17 06:52:35 packer.orig: 2016/10/17 06:52:35 opening new ssh session | |
2016/10/17 06:52:35 packer.orig: 2016/10/17 06:52:35 starting remote command: chmod +x /tmp/script_5299.sh; PACKER_BUILD_NAME='vmware-iso' PACKER_BUILDER_TYPE='vmware-iso' AUTOLOGIN='true' CM='nocm' CM_VERSION='' UPDATE='true' INSTALL_XCODE_CLI_TOOLS='true' INSTALL_VAGRANT_KEYS='true' SSH_USERNAME='vagrant' SSH_PASSWORD='vagrant' sudo -E -S bash '/tmp/script_5299.sh' | |
2016/10/17 06:52:35 ui: vmware-iso: Can't connect to the Apple Software Update server. | |
vmware-iso: Can't connect to the Apple Software Update server. | |
2016/10/17 06:52:35 ui: vmware-iso: Software Update Tool | |
vmware-iso: Software Update Tool | |
2016/10/17 06:52:35 ui: vmware-iso: : No such update | |
vmware-iso: : No such update | |
2016/10/17 06:52:35 ui: vmware-iso: No updates are available. | |
vmware-iso: No updates are available. | |
2016/10/17 06:52:35 ui: vmware-iso: Copyright 2002-2015 Apple Inc. | |
vmware-iso: Copyright 2002-2015 Apple Inc. | |
2016/10/17 06:52:35 ui: vmware-iso: | |
vmware-iso: | |
2016/10/17 06:52:35 packer.orig: 2016/10/17 06:52:35 remote command exited with '0': chmod +x /tmp/script_5299.sh; PACKER_BUILD_NAME='vmware-iso' PACKER_BUILDER_TYPE='vmware-iso' AUTOLOGIN='true' CM='nocm' CM_VERSION='' UPDATE='true' INSTALL_XCODE_CLI_TOOLS='true' INSTALL_VAGRANT_KEYS='true' SSH_USERNAME='vagrant' SSH_PASSWORD='vagrant' sudo -E -S bash '/tmp/script_5299.sh' | |
2016/10/17 06:52:35 packer.orig: 2016/10/17 06:52:35 [INFO] RPC endpoint: Communicator ended with: 0 | |
2016/10/17 06:52:35 [INFO] RPC client: Communicator ended with: 0 | |
2016/10/17 06:52:35 [INFO] 53 bytes written for 'stdout' | |
2016/10/17 06:52:35 [INFO] RPC endpoint: Communicator ended with: 0 | |
2016/10/17 06:52:35 [INFO] 94 bytes written for 'stderr' | |
2016/10/17 06:52:35 packer.orig: 2016/10/17 06:52:35 [INFO] 53 bytes written for 'stdout' | |
2016/10/17 06:52:35 packer.orig: 2016/10/17 06:52:35 [INFO] RPC client: Communicator ended with: 0 | |
2016/10/17 06:52:35 packer.orig: 2016/10/17 06:52:35 [INFO] 94 bytes written for 'stderr' | |
2016/10/17 06:52:35 packer.orig: 2016/10/17 06:52:35 opening new ssh session | |
2016/10/17 06:52:35 packer.orig: 2016/10/17 06:52:35 starting remote command: rm -f /tmp/script_5299.sh | |
2016/10/17 06:52:36 packer.orig: 2016/10/17 06:52:36 remote command exited with '0': rm -f /tmp/script_5299.sh | |
2016/10/17 06:52:36 packer.orig: 2016/10/17 06:52:36 [INFO] RPC endpoint: Communicator ended with: 0 | |
2016/10/17 06:52:36 [INFO] RPC client: Communicator ended with: 0 | |
2016/10/17 06:52:36 [INFO] RPC endpoint: Communicator ended with: 0 | |
2016/10/17 06:52:36 packer.orig: 2016/10/17 06:52:36 [INFO] RPC client: Communicator ended with: 0 | |
2016/10/17 06:52:36 ui: ==> vmware-iso: Provisioning with shell script: script/add-network-interface-detection.sh | |
==> vmware-iso: Provisioning with shell script: script/add-network-interface-detection.sh | |
2016/10/17 06:52:36 packer.orig: 2016/10/17 06:52:36 Opening script/add-network-interface-detection.sh for reading | |
2016/10/17 06:52:36 packer.orig: 2016/10/17 06:52:36 opening new ssh session | |
2016/10/17 06:52:36 packer.orig: 2016/10/17 06:52:36 Starting remote scp process: scp -vt /tmp | |
2016/10/17 06:52:36 packer.orig: 2016/10/17 06:52:36 [INFO] 993 bytes written for 'uploadData' | |
2016/10/17 06:52:36 [INFO] 993 bytes written for 'uploadData' | |
2016/10/17 06:52:36 packer.orig: 2016/10/17 06:52:36 Started SCP session, beginning transfers... | |
2016/10/17 06:52:36 packer.orig: 2016/10/17 06:52:36 Copying input data into temporary file so we can read the length | |
2016/10/17 06:52:36 packer.orig: 2016/10/17 06:52:36 [DEBUG] scp: Uploading script_5299.sh: perms=C0644 size=993 | |
2016/10/17 06:52:36 packer.orig: 2016/10/17 06:52:36 SCP session complete, closing stdin pipe. | |
2016/10/17 06:52:36 packer.orig: 2016/10/17 06:52:36 Waiting for SSH session to complete. | |
2016/10/17 06:52:36 packer.orig: 2016/10/17 06:52:36 scp stderr (length 31): Sink: C0644 993 script_5299.sh | |
2016/10/17 06:52:36 packer.orig: 2016/10/17 06:52:36 opening new ssh session | |
2016/10/17 06:52:36 packer.orig: 2016/10/17 06:52:36 starting remote command: chmod 0755 /tmp/script_5299.sh | |
2016/10/17 06:52:36 packer.orig: 2016/10/17 06:52:36 remote command exited with '0': chmod 0755 /tmp/script_5299.sh | |
2016/10/17 06:52:36 packer.orig: 2016/10/17 06:52:36 [INFO] RPC endpoint: Communicator ended with: 0 | |
2016/10/17 06:52:36 [INFO] RPC client: Communicator ended with: 0 | |
2016/10/17 06:52:36 [INFO] RPC endpoint: Communicator ended with: 0 | |
2016/10/17 06:52:36 packer.orig: 2016/10/17 06:52:36 [INFO] RPC client: Communicator ended with: 0 | |
2016/10/17 06:52:36 packer.orig: 2016/10/17 06:52:36 opening new ssh session | |
2016/10/17 06:52:36 packer.orig: 2016/10/17 06:52:36 starting remote command: chmod +x /tmp/script_5299.sh; PACKER_BUILD_NAME='vmware-iso' PACKER_BUILDER_TYPE='vmware-iso' AUTOLOGIN='true' CM='nocm' CM_VERSION='' UPDATE='true' INSTALL_XCODE_CLI_TOOLS='true' INSTALL_VAGRANT_KEYS='true' SSH_USERNAME='vagrant' SSH_PASSWORD='vagrant' sudo -E -S bash '/tmp/script_5299.sh' | |
2016/10/17 06:52:36 packer.orig: 2016/10/17 06:52:36 remote command exited with '0': chmod +x /tmp/script_5299.sh; PACKER_BUILD_NAME='vmware-iso' PACKER_BUILDER_TYPE='vmware-iso' AUTOLOGIN='true' CM='nocm' CM_VERSION='' UPDATE='true' INSTALL_XCODE_CLI_TOOLS='true' INSTALL_VAGRANT_KEYS='true' SSH_USERNAME='vagrant' SSH_PASSWORD='vagrant' sudo -E -S bash '/tmp/script_5299.sh' | |
2016/10/17 06:52:36 packer.orig: 2016/10/17 06:52:36 [INFO] RPC endpoint: Communicator ended with: 0 | |
2016/10/17 06:52:36 [INFO] 0 bytes written for 'stdout' | |
2016/10/17 06:52:36 [INFO] RPC client: Communicator ended with: 0 | |
2016/10/17 06:52:36 [INFO] 0 bytes written for 'stderr' | |
2016/10/17 06:52:36 [INFO] RPC endpoint: Communicator ended with: 0 | |
2016/10/17 06:52:36 packer.orig: 2016/10/17 06:52:36 [INFO] 0 bytes written for 'stdout' | |
2016/10/17 06:52:36 packer.orig: 2016/10/17 06:52:36 [INFO] 0 bytes written for 'stderr' | |
2016/10/17 06:52:36 packer.orig: 2016/10/17 06:52:36 [INFO] RPC client: Communicator ended with: 0 | |
2016/10/17 06:52:36 packer.orig: 2016/10/17 06:52:36 opening new ssh session | |
2016/10/17 06:52:36 packer.orig: 2016/10/17 06:52:36 starting remote command: rm -f /tmp/script_5299.sh | |
2016/10/17 06:52:36 packer.orig: 2016/10/17 06:52:36 remote command exited with '0': rm -f /tmp/script_5299.sh | |
2016/10/17 06:52:36 packer.orig: 2016/10/17 06:52:36 [INFO] RPC endpoint: Communicator ended with: 0 | |
2016/10/17 06:52:36 [INFO] RPC client: Communicator ended with: 0 | |
2016/10/17 06:52:36 [INFO] RPC endpoint: Communicator ended with: 0 | |
2016/10/17 06:52:36 packer.orig: 2016/10/17 06:52:36 [INFO] RPC client: Communicator ended with: 0 | |
2016/10/17 06:52:36 ui: ==> vmware-iso: Provisioning with shell script: script/energy.sh | |
==> vmware-iso: Provisioning with shell script: script/energy.sh | |
2016/10/17 06:52:36 packer.orig: 2016/10/17 06:52:36 Opening script/energy.sh for reading | |
2016/10/17 06:52:36 packer.orig: 2016/10/17 06:52:36 [INFO] 186 bytes written for 'uploadData' | |
2016/10/17 06:52:36 [INFO] 186 bytes written for 'uploadData' | |
2016/10/17 06:52:36 packer.orig: 2016/10/17 06:52:36 opening new ssh session | |
2016/10/17 06:52:36 packer.orig: 2016/10/17 06:52:36 Starting remote scp process: scp -vt /tmp | |
2016/10/17 06:52:36 packer.orig: 2016/10/17 06:52:36 Started SCP session, beginning transfers... | |
2016/10/17 06:52:36 packer.orig: 2016/10/17 06:52:36 Copying input data into temporary file so we can read the length | |
2016/10/17 06:52:36 packer.orig: 2016/10/17 06:52:36 [DEBUG] scp: Uploading script_5299.sh: perms=C0644 size=186 | |
2016/10/17 06:52:36 packer.orig: 2016/10/17 06:52:36 SCP session complete, closing stdin pipe. | |
2016/10/17 06:52:36 packer.orig: 2016/10/17 06:52:36 Waiting for SSH session to complete. | |
2016/10/17 06:52:36 packer.orig: 2016/10/17 06:52:36 scp stderr (length 31): Sink: C0644 186 script_5299.sh | |
2016/10/17 06:52:36 packer.orig: 2016/10/17 06:52:36 opening new ssh session | |
2016/10/17 06:52:36 packer.orig: 2016/10/17 06:52:36 starting remote command: chmod 0755 /tmp/script_5299.sh | |
2016/10/17 06:52:36 packer.orig: 2016/10/17 06:52:36 remote command exited with '0': chmod 0755 /tmp/script_5299.sh | |
2016/10/17 06:52:36 packer.orig: 2016/10/17 06:52:36 [INFO] RPC endpoint: Communicator ended with: 0 | |
2016/10/17 06:52:36 [INFO] RPC client: Communicator ended with: 0 | |
2016/10/17 06:52:36 [INFO] RPC endpoint: Communicator ended with: 0 | |
2016/10/17 06:52:36 packer.orig: 2016/10/17 06:52:36 [INFO] RPC client: Communicator ended with: 0 | |
2016/10/17 06:52:36 packer.orig: 2016/10/17 06:52:36 opening new ssh session | |
2016/10/17 06:52:36 packer.orig: 2016/10/17 06:52:36 starting remote command: chmod +x /tmp/script_5299.sh; PACKER_BUILD_NAME='vmware-iso' PACKER_BUILDER_TYPE='vmware-iso' AUTOLOGIN='true' CM='nocm' CM_VERSION='' UPDATE='true' INSTALL_XCODE_CLI_TOOLS='true' INSTALL_VAGRANT_KEYS='true' SSH_USERNAME='vagrant' SSH_PASSWORD='vagrant' sudo -E -S bash '/tmp/script_5299.sh' | |
2016/10/17 06:52:36 packer.orig: 2016/10/17 06:52:36 remote command exited with '0': chmod +x /tmp/script_5299.sh; PACKER_BUILD_NAME='vmware-iso' PACKER_BUILDER_TYPE='vmware-iso' AUTOLOGIN='true' CM='nocm' CM_VERSION='' UPDATE='true' INSTALL_XCODE_CLI_TOOLS='true' INSTALL_VAGRANT_KEYS='true' SSH_USERNAME='vagrant' SSH_PASSWORD='vagrant' sudo -E -S bash '/tmp/script_5299.sh' | |
2016/10/17 06:52:36 packer.orig: 2016/10/17 06:52:36 [INFO] RPC endpoint: Communicator ended with: 0 | |
2016/10/17 06:52:36 [INFO] 0 bytes written for 'stdout' | |
2016/10/17 06:52:36 [INFO] 0 bytes written for 'stderr' | |
2016/10/17 06:52:36 [INFO] RPC client: Communicator ended with: 0 | |
2016/10/17 06:52:36 [INFO] RPC endpoint: Communicator ended with: 0 | |
2016/10/17 06:52:36 packer.orig: 2016/10/17 06:52:36 [INFO] 0 bytes written for 'stderr' | |
2016/10/17 06:52:36 packer.orig: 2016/10/17 06:52:36 [INFO] RPC client: Communicator ended with: 0 | |
2016/10/17 06:52:36 packer.orig: 2016/10/17 06:52:36 [INFO] 0 bytes written for 'stdout' | |
2016/10/17 06:52:36 packer.orig: 2016/10/17 06:52:36 opening new ssh session | |
2016/10/17 06:52:36 packer.orig: 2016/10/17 06:52:36 starting remote command: rm -f /tmp/script_5299.sh | |
2016/10/17 06:52:36 packer.orig: 2016/10/17 06:52:36 remote command exited with '0': rm -f /tmp/script_5299.sh | |
2016/10/17 06:52:36 packer.orig: 2016/10/17 06:52:36 [INFO] RPC endpoint: Communicator ended with: 0 | |
2016/10/17 06:52:36 [INFO] RPC client: Communicator ended with: 0 | |
2016/10/17 06:52:36 [INFO] RPC endpoint: Communicator ended with: 0 | |
2016/10/17 06:52:36 packer.orig: 2016/10/17 06:52:36 [INFO] RPC client: Communicator ended with: 0 | |
2016/10/17 06:52:36 ui: ==> vmware-iso: Provisioning with shell script: script/autologin.sh | |
==> vmware-iso: Provisioning with shell script: script/autologin.sh | |
2016/10/17 06:52:36 packer.orig: 2016/10/17 06:52:36 Opening script/autologin.sh for reading | |
2016/10/17 06:52:36 packer.orig: 2016/10/17 06:52:36 [INFO] 312 bytes written for 'uploadData' | |
2016/10/17 06:52:36 packer.orig: 2016/10/17 06:52:36 opening new ssh session | |
2016/10/17 06:52:36 [INFO] 312 bytes written for 'uploadData' | |
2016/10/17 06:52:36 packer.orig: 2016/10/17 06:52:36 Starting remote scp process: scp -vt /tmp | |
2016/10/17 06:52:36 packer.orig: 2016/10/17 06:52:36 Started SCP session, beginning transfers... | |
2016/10/17 06:52:36 packer.orig: 2016/10/17 06:52:36 Copying input data into temporary file so we can read the length | |
2016/10/17 06:52:36 packer.orig: 2016/10/17 06:52:36 [DEBUG] scp: Uploading script_5299.sh: perms=C0644 size=312 | |
2016/10/17 06:52:36 packer.orig: 2016/10/17 06:52:36 SCP session complete, closing stdin pipe. | |
2016/10/17 06:52:36 packer.orig: 2016/10/17 06:52:36 Waiting for SSH session to complete. | |
2016/10/17 06:52:36 packer.orig: 2016/10/17 06:52:36 scp stderr (length 31): Sink: C0644 312 script_5299.sh | |
2016/10/17 06:52:36 packer.orig: 2016/10/17 06:52:36 opening new ssh session | |
2016/10/17 06:52:36 packer.orig: 2016/10/17 06:52:36 starting remote command: chmod 0755 /tmp/script_5299.sh | |
2016/10/17 06:52:36 packer.orig: 2016/10/17 06:52:36 remote command exited with '0': chmod 0755 /tmp/script_5299.sh | |
2016/10/17 06:52:36 packer.orig: 2016/10/17 06:52:36 [INFO] RPC endpoint: Communicator ended with: 0 | |
2016/10/17 06:52:36 [INFO] RPC client: Communicator ended with: 0 | |
2016/10/17 06:52:36 [INFO] RPC endpoint: Communicator ended with: 0 | |
2016/10/17 06:52:36 packer.orig: 2016/10/17 06:52:36 [INFO] RPC client: Communicator ended with: 0 | |
2016/10/17 06:52:36 packer.orig: 2016/10/17 06:52:36 opening new ssh session | |
2016/10/17 06:52:36 packer.orig: 2016/10/17 06:52:36 starting remote command: chmod +x /tmp/script_5299.sh; PACKER_BUILD_NAME='vmware-iso' PACKER_BUILDER_TYPE='vmware-iso' AUTOLOGIN='true' CM='nocm' CM_VERSION='' UPDATE='true' INSTALL_XCODE_CLI_TOOLS='true' INSTALL_VAGRANT_KEYS='true' SSH_USERNAME='vagrant' SSH_PASSWORD='vagrant' sudo -E -S bash '/tmp/script_5299.sh' | |
2016/10/17 06:52:36 ui: vmware-iso: Enabling automatic GUI login for the 'vagrant' user.. | |
vmware-iso: Enabling automatic GUI login for the 'vagrant' user.. | |
2016/10/17 06:52:36 packer.orig: 2016/10/17 06:52:36 remote command exited with '0': chmod +x /tmp/script_5299.sh; PACKER_BUILD_NAME='vmware-iso' PACKER_BUILDER_TYPE='vmware-iso' AUTOLOGIN='true' CM='nocm' CM_VERSION='' UPDATE='true' INSTALL_XCODE_CLI_TOOLS='true' INSTALL_VAGRANT_KEYS='true' SSH_USERNAME='vagrant' SSH_PASSWORD='vagrant' sudo -E -S bash '/tmp/script_5299.sh' | |
2016/10/17 06:52:36 packer.orig: 2016/10/17 06:52:36 [INFO] RPC endpoint: Communicator ended with: 0 | |
2016/10/17 06:52:36 [INFO] 0 bytes written for 'stderr' | |
2016/10/17 06:52:36 [INFO] RPC client: Communicator ended with: 0 | |
2016/10/17 06:52:36 [INFO] RPC endpoint: Communicator ended with: 0 | |
2016/10/17 06:52:36 packer.orig: 2016/10/17 06:52:36 [INFO] 54 bytes written for 'stdout' | |
2016/10/17 06:52:36 [INFO] 54 bytes written for 'stdout' | |
2016/10/17 06:52:36 packer.orig: 2016/10/17 06:52:36 [INFO] 0 bytes written for 'stderr' | |
2016/10/17 06:52:36 packer.orig: 2016/10/17 06:52:36 [INFO] RPC client: Communicator ended with: 0 | |
2016/10/17 06:52:36 packer.orig: 2016/10/17 06:52:36 opening new ssh session | |
2016/10/17 06:52:36 packer.orig: 2016/10/17 06:52:36 starting remote command: rm -f /tmp/script_5299.sh | |
2016/10/17 06:52:36 packer.orig: 2016/10/17 06:52:36 remote command exited with '0': rm -f /tmp/script_5299.sh | |
2016/10/17 06:52:36 packer.orig: 2016/10/17 06:52:36 [INFO] RPC endpoint: Communicator ended with: 0 | |
2016/10/17 06:52:36 [INFO] RPC client: Communicator ended with: 0 | |
2016/10/17 06:52:36 [INFO] RPC endpoint: Communicator ended with: 0 | |
2016/10/17 06:52:36 packer.orig: 2016/10/17 06:52:36 [INFO] RPC client: Communicator ended with: 0 | |
2016/10/17 06:52:36 ui: ==> vmware-iso: Provisioning with shell script: script/minimize.sh | |
==> vmware-iso: Provisioning with shell script: script/minimize.sh | |
2016/10/17 06:52:36 packer.orig: 2016/10/17 06:52:36 Opening script/minimize.sh for reading | |
2016/10/17 06:52:36 packer.orig: 2016/10/17 06:52:36 opening new ssh session | |
2016/10/17 06:52:36 packer.orig: 2016/10/17 06:52:36 [INFO] 950 bytes written for 'uploadData' | |
2016/10/17 06:52:36 [INFO] 950 bytes written for 'uploadData' | |
2016/10/17 06:52:36 packer.orig: 2016/10/17 06:52:36 Starting remote scp process: scp -vt /tmp | |
2016/10/17 06:52:36 packer.orig: 2016/10/17 06:52:36 Started SCP session, beginning transfers... | |
2016/10/17 06:52:36 packer.orig: 2016/10/17 06:52:36 Copying input data into temporary file so we can read the length | |
2016/10/17 06:52:36 packer.orig: 2016/10/17 06:52:36 [DEBUG] scp: Uploading script_5299.sh: perms=C0644 size=950 | |
2016/10/17 06:52:37 packer.orig: 2016/10/17 06:52:37 SCP session complete, closing stdin pipe. | |
2016/10/17 06:52:37 packer.orig: 2016/10/17 06:52:37 Waiting for SSH session to complete. | |
2016/10/17 06:52:37 packer.orig: 2016/10/17 06:52:37 scp stderr (length 31): Sink: C0644 950 script_5299.sh | |
2016/10/17 06:52:37 packer.orig: 2016/10/17 06:52:37 opening new ssh session | |
2016/10/17 06:52:37 packer.orig: 2016/10/17 06:52:37 starting remote command: chmod 0755 /tmp/script_5299.sh | |
2016/10/17 06:52:37 packer.orig: 2016/10/17 06:52:37 remote command exited with '0': chmod 0755 /tmp/script_5299.sh | |
2016/10/17 06:52:37 packer.orig: 2016/10/17 06:52:37 [INFO] RPC endpoint: Communicator ended with: 0 | |
2016/10/17 06:52:37 [INFO] RPC client: Communicator ended with: 0 | |
2016/10/17 06:52:37 [INFO] RPC endpoint: Communicator ended with: 0 | |
2016/10/17 06:52:37 packer.orig: 2016/10/17 06:52:37 [INFO] RPC client: Communicator ended with: 0 | |
2016/10/17 06:52:37 packer.orig: 2016/10/17 06:52:37 opening new ssh session | |
2016/10/17 06:52:37 packer.orig: 2016/10/17 06:52:37 starting remote command: chmod +x /tmp/script_5299.sh; PACKER_BUILD_NAME='vmware-iso' PACKER_BUILDER_TYPE='vmware-iso' AUTOLOGIN='true' CM='nocm' CM_VERSION='' UPDATE='true' INSTALL_XCODE_CLI_TOOLS='true' INSTALL_VAGRANT_KEYS='true' SSH_USERNAME='vagrant' SSH_PASSWORD='vagrant' sudo -E -S bash '/tmp/script_5299.sh' | |
2016/10/17 06:52:37 ui: vmware-iso: ==> Turn off hibernation | |
vmware-iso: ==> Turn off hibernation | |
2016/10/17 06:52:37 ui: vmware-iso: ==> Get rid of the sleepimage | |
vmware-iso: ==> Get rid of the sleepimage | |
2016/10/17 06:52:37 ui: vmware-iso: ==> Stop the page process and dropping swap files | |
vmware-iso: ==> Stop the page process and dropping swap files | |
2016/10/17 06:52:37 ui: vmware-iso: Zeroing out free space | |
vmware-iso: Zeroing out free space | |
2016/10/17 06:52:37 ui: vmware-iso: Started erase on disk0s2 Macintosh HD | |
vmware-iso: Started erase on disk0s2 Macintosh HD | |
2016/10/17 06:52:37 ui: vmware-iso: Creating a temporary file | |
vmware-iso: Creating a temporary file | |
2016/10/17 06:52:49 ui: vmware-iso: Securely erasing a file | |
vmware-iso: Securely erasing a file | |
2016/10/17 07:00:02 ui: vmware-iso: Creating a secondary temporary file | |
vmware-iso: Creating a secondary temporary file | |
2016/10/17 07:00:24 ui: vmware-iso: Mounting disk | |
vmware-iso: Mounting disk | |
2016/10/17 07:00:24 ui: vmware-iso: Finished erase on disk0s2 Macintosh HD | |
vmware-iso: Finished erase on disk0s2 Macintosh HD | |
vmware-iso: Shrink disk is disabled for this virtual machine. | |
2016/10/17 07:00:25 ui: vmware-iso: Shrink disk is disabled for this virtual machine. | |
2016/10/17 07:00:25 ui: vmware-iso: | |
vmware-iso: | |
2016/10/17 07:00:25 ui: vmware-iso: Shrinking is disabled for linked clones, parents of linked clones, | |
vmware-iso: Shrinking is disabled for linked clones, parents of linked clones, | |
2016/10/17 07:00:25 ui: vmware-iso: pre-allocated disks, snapshots, or due to other factors. | |
vmware-iso: pre-allocated disks, snapshots, or due to other factors. | |
2016/10/17 07:00:25 ui: vmware-iso: See the User's manual for more information. | |
vmware-iso: See the User's manual for more information. | |
2016/10/17 07:00:25 ui: vmware-iso: Unable to find partition / | |
vmware-iso: Unable to find partition / | |
2016/10/17 07:00:25 ui: vmware-iso: Berne: ERR_LVL=72 | |
vmware-iso: Berne: ERR_LVL=72 | |
2016/10/17 07:00:25 packer.orig: 2016/10/17 07:00:25 remote command exited with '0': chmod +x /tmp/script_5299.sh; PACKER_BUILD_NAME='vmware-iso' PACKER_BUILDER_TYPE='vmware-iso' AUTOLOGIN='true' CM='nocm' CM_VERSION='' UPDATE='true' INSTALL_XCODE_CLI_TOOLS='true' INSTALL_VAGRANT_KEYS='true' SSH_USERNAME='vagrant' SSH_PASSWORD='vagrant' sudo -E -S bash '/tmp/script_5299.sh' | |
2016/10/17 07:00:25 packer.orig: 2016/10/17 07:00:25 [INFO] RPC endpoint: Communicator ended with: 0 | |
2016/10/17 07:00:25 [INFO] 323 bytes written for 'stdout' | |
2016/10/17 07:00:25 [INFO] RPC client: Communicator ended with: 0 | |
2016/10/17 07:00:25 [INFO] 248 bytes written for 'stderr' | |
2016/10/17 07:00:25 [INFO] RPC endpoint: Communicator ended with: 0 | |
2016/10/17 07:00:25 packer.orig: 2016/10/17 07:00:25 [INFO] 323 bytes written for 'stdout' | |
2016/10/17 07:00:25 packer.orig: 2016/10/17 07:00:25 [INFO] RPC client: Communicator ended with: 0 | |
2016/10/17 07:00:25 packer.orig: 2016/10/17 07:00:25 [INFO] 248 bytes written for 'stderr' | |
2016/10/17 07:00:25 packer.orig: 2016/10/17 07:00:25 opening new ssh session | |
2016/10/17 07:00:25 packer.orig: 2016/10/17 07:00:25 starting remote command: rm -f /tmp/script_5299.sh | |
2016/10/17 07:00:25 packer.orig: 2016/10/17 07:00:25 remote command exited with '0': rm -f /tmp/script_5299.sh | |
2016/10/17 07:00:25 packer.orig: 2016/10/17 07:00:25 [INFO] RPC endpoint: Communicator ended with: 0 | |
2016/10/17 07:00:25 [INFO] RPC client: Communicator ended with: 0 | |
2016/10/17 07:00:25 [INFO] RPC endpoint: Communicator ended with: 0 | |
2016/10/17 07:00:25 packer.orig: 2016/10/17 07:00:25 [INFO] RPC client: Communicator ended with: 0 | |
2016/10/17 07:00:25 ui: ==> vmware-iso: Gracefully halting virtual machine... | |
==> vmware-iso: Gracefully halting virtual machine... | |
2016/10/17 07:00:25 packer.orig: 2016/10/17 07:00:25 Executing shutdown command: echo 'vagrant'|sudo -S shutdown -h now | |
2016/10/17 07:00:25 packer.orig: 2016/10/17 07:00:25 opening new ssh session | |
2016/10/17 07:00:25 packer.orig: 2016/10/17 07:00:25 starting remote command: echo 'vagrant'|sudo -S shutdown -h now | |
2016/10/17 07:00:26 packer.orig: 2016/10/17 07:00:26 remote command exited with '0': echo 'vagrant'|sudo -S shutdown -h now | |
2016/10/17 07:00:26 packer.orig: 2016/10/17 07:00:26 Shutdown stdout: | |
2016/10/17 07:00:26 packer.orig: 2016/10/17 07:00:26 Shutdown stderr: | |
2016/10/17 07:00:26 packer.orig: 2016/10/17 07:00:26 Waiting max 5m0s for shutdown to complete | |
2016/10/17 07:00:26 packer.orig: 2016/10/17 07:00:26 opening new ssh session | |
2016/10/17 07:00:26 packer.orig: 2016/10/17 07:00:26 starting remote command: vim-cmd vmsvc/power.getstate 128 | |
2016/10/17 07:00:26 packer.orig: 2016/10/17 07:00:26 remote command exited with '0': vim-cmd vmsvc/power.getstate 128 | |
2016/10/17 07:00:26 packer.orig: 2016/10/17 07:00:26 opening new ssh session | |
2016/10/17 07:00:26 packer.orig: 2016/10/17 07:00:26 starting remote command: vim-cmd vmsvc/power.getstate 128 | |
2016/10/17 07:00:27 packer.orig: 2016/10/17 07:00:27 remote command exited with '0': vim-cmd vmsvc/power.getstate 128 | |
2016/10/17 07:00:27 packer.orig: 2016/10/17 07:00:27 opening new ssh session | |
2016/10/17 07:00:27 packer.orig: 2016/10/17 07:00:27 starting remote command: vim-cmd vmsvc/power.getstate 128 | |
2016/10/17 07:00:28 packer.orig: 2016/10/17 07:00:28 remote command exited with '0': vim-cmd vmsvc/power.getstate 128 | |
2016/10/17 07:00:28 packer.orig: 2016/10/17 07:00:28 opening new ssh session | |
2016/10/17 07:00:28 packer.orig: 2016/10/17 07:00:28 starting remote command: vim-cmd vmsvc/power.getstate 128 | |
2016/10/17 07:00:29 packer.orig: 2016/10/17 07:00:29 remote command exited with '0': vim-cmd vmsvc/power.getstate 128 | |
2016/10/17 07:00:29 packer.orig: 2016/10/17 07:00:29 opening new ssh session | |
2016/10/17 07:00:29 packer.orig: 2016/10/17 07:00:29 starting remote command: vim-cmd vmsvc/power.getstate 128 | |
2016/10/17 07:00:29 packer.orig: 2016/10/17 07:00:29 remote command exited with '0': vim-cmd vmsvc/power.getstate 128 | |
2016/10/17 07:00:30 packer.orig: 2016/10/17 07:00:30 opening new ssh session | |
2016/10/17 07:00:30 packer.orig: 2016/10/17 07:00:30 starting remote command: vim-cmd vmsvc/power.getstate 128 | |
2016/10/17 07:00:30 packer.orig: 2016/10/17 07:00:30 remote command exited with '0': vim-cmd vmsvc/power.getstate 128 | |
2016/10/17 07:00:30 packer.orig: 2016/10/17 07:00:30 opening new ssh session | |
2016/10/17 07:00:30 packer.orig: 2016/10/17 07:00:30 starting remote command: vim-cmd vmsvc/power.getstate 128 | |
2016/10/17 07:00:31 packer.orig: 2016/10/17 07:00:31 remote command exited with '0': vim-cmd vmsvc/power.getstate 128 | |
2016/10/17 07:00:31 packer.orig: 2016/10/17 07:00:31 opening new ssh session | |
2016/10/17 07:00:31 packer.orig: 2016/10/17 07:00:31 starting remote command: vim-cmd vmsvc/power.getstate 128 | |
2016/10/17 07:00:32 packer.orig: 2016/10/17 07:00:32 remote command exited with '0': vim-cmd vmsvc/power.getstate 128 | |
2016/10/17 07:00:32 packer.orig: 2016/10/17 07:00:32 opening new ssh session | |
2016/10/17 07:00:32 packer.orig: 2016/10/17 07:00:32 starting remote command: vim-cmd vmsvc/power.getstate 128 | |
2016/10/17 07:00:32 packer.orig: 2016/10/17 07:00:32 remote command exited with '0': vim-cmd vmsvc/power.getstate 128 | |
2016/10/17 07:00:33 packer.orig: 2016/10/17 07:00:33 opening new ssh session | |
2016/10/17 07:00:33 packer.orig: 2016/10/17 07:00:33 starting remote command: vim-cmd vmsvc/power.getstate 128 | |
2016/10/17 07:00:33 packer.orig: 2016/10/17 07:00:33 remote command exited with '0': vim-cmd vmsvc/power.getstate 128 | |
2016/10/17 07:00:33 packer.orig: 2016/10/17 07:00:33 opening new ssh session | |
2016/10/17 07:00:33 packer.orig: 2016/10/17 07:00:33 starting remote command: vim-cmd vmsvc/power.getstate 128 | |
2016/10/17 07:00:34 packer.orig: 2016/10/17 07:00:34 remote command exited with '0': vim-cmd vmsvc/power.getstate 128 | |
2016/10/17 07:00:34 packer.orig: 2016/10/17 07:00:34 opening new ssh session | |
2016/10/17 07:00:34 packer.orig: 2016/10/17 07:00:34 starting remote command: vim-cmd vmsvc/power.getstate 128 | |
2016/10/17 07:00:35 packer.orig: 2016/10/17 07:00:35 remote command exited with '0': vim-cmd vmsvc/power.getstate 128 | |
2016/10/17 07:00:35 packer.orig: 2016/10/17 07:00:35 opening new ssh session | |
2016/10/17 07:00:35 packer.orig: 2016/10/17 07:00:35 starting remote command: vim-cmd vmsvc/power.getstate 128 | |
2016/10/17 07:00:36 packer.orig: 2016/10/17 07:00:36 remote command exited with '0': vim-cmd vmsvc/power.getstate 128 | |
2016/10/17 07:00:36 packer.orig: 2016/10/17 07:00:36 opening new ssh session | |
2016/10/17 07:00:36 packer.orig: 2016/10/17 07:00:36 starting remote command: vim-cmd vmsvc/power.getstate 128 | |
2016/10/17 07:00:36 packer.orig: 2016/10/17 07:00:36 remote command exited with '0': vim-cmd vmsvc/power.getstate 128 | |
2016/10/17 07:00:36 packer.orig: 2016/10/17 07:00:36 opening new ssh session | |
2016/10/17 07:00:36 packer.orig: 2016/10/17 07:00:36 starting remote command: vim-cmd vmsvc/power.getstate 128 | |
2016/10/17 07:00:37 packer.orig: 2016/10/17 07:00:37 remote command exited with '0': vim-cmd vmsvc/power.getstate 128 | |
2016/10/17 07:00:37 ui: vmware-iso: Waiting for VMware to clean up after itself... | |
vmware-iso: Waiting for VMware to clean up after itself... | |
2016/10/17 07:00:37 packer.orig: 2016/10/17 07:00:37 opening new ssh session | |
2016/10/17 07:00:37 packer.orig: 2016/10/17 07:00:37 starting remote command: ls -1p /vmfs/volumes/datastore1/output-macos1012-vmware-iso | |
2016/10/17 07:00:37 packer.orig: 2016/10/17 07:00:37 remote command exited with '0': ls -1p /vmfs/volumes/datastore1/output-macos1012-vmware-iso | |
2016/10/17 07:00:37 packer.orig: 2016/10/17 07:00:37 No more lock files found. VMware is clean. | |
2016/10/17 07:00:42 packer.orig: 2016/10/17 07:00:42 VM shut down. | |
2016/10/17 07:00:42 ui: ==> vmware-iso: Deleting unnecessary VMware files... | |
==> vmware-iso: Deleting unnecessary VMware files... | |
2016/10/17 07:00:42 packer.orig: 2016/10/17 07:00:42 opening new ssh session | |
2016/10/17 07:00:42 packer.orig: 2016/10/17 07:00:42 starting remote command: ls -1p /vmfs/volumes/datastore1/output-macos1012-vmware-iso | |
2016/10/17 07:00:42 packer.orig: 2016/10/17 07:00:42 remote command exited with '0': ls -1p /vmfs/volumes/datastore1/output-macos1012-vmware-iso | |
2016/10/17 07:00:42 ui: vmware-iso: Deleting: /vmfs/volumes/datastore1/output-macos1012-vmware-iso/vmware.log | |
2016/10/17 07:00:42 packer.orig: 2016/10/17 07:00:42 opening new ssh session | |
vmware-iso: Deleting: /vmfs/volumes/datastore1/output-macos1012-vmware-iso/vmware.log | |
2016/10/17 07:00:42 packer.orig: 2016/10/17 07:00:42 starting remote command: rm /vmfs/volumes/datastore1/output-macos1012-vmware-iso/vmware.log | |
2016/10/17 07:00:42 packer.orig: 2016/10/17 07:00:42 remote command exited with '0': rm /vmfs/volumes/datastore1/output-macos1012-vmware-iso/vmware.log | |
2016/10/17 07:00:42 packer.orig: 2016/10/17 07:00:42 Skipping disk compaction step... | |
2016/10/17 07:00:42 packer.orig: 2016/10/17 07:00:42 Writing VMX to: /tmp/packer-vmx561817697/macos1012.vmx | |
2016/10/17 07:00:42 ui: ==> vmware-iso: Cleaning VMX prior to finishing up... | |
==> vmware-iso: Cleaning VMX prior to finishing up... | |
2016/10/17 07:00:42 ui: vmware-iso: Unmounting floppy from VMX... | |
2016/10/17 07:00:42 packer.orig: 2016/10/17 07:00:42 Deleting key: floppy0.present | |
vmware-iso: Unmounting floppy from VMX... | |
2016/10/17 07:00:42 ui: vmware-iso: Detaching ISO from CD-ROM device... | |
2016/10/17 07:00:42 ui: vmware-iso: Disabling VNC server... | |
2016/10/17 07:00:42 packer.orig: 2016/10/17 07:00:42 Writing VMX to: /tmp/packer-vmx561817697/macos1012.vmx | |
2016/10/17 07:00:42 packer.orig: 2016/10/17 07:00:42 opening new ssh session | |
vmware-iso: Detaching ISO from CD-ROM device... | |
vmware-iso: Disabling VNC server... | |
2016/10/17 07:00:42 packer.orig: 2016/10/17 07:00:42 Starting remote scp process: scp -vt /vmfs/volumes/datastore1/output-macos1012-vmware-iso | |
2016/10/17 07:00:42 packer.orig: 2016/10/17 07:00:42 Started SCP session, beginning transfers... | |
2016/10/17 07:00:42 packer.orig: 2016/10/17 07:00:42 Copying input data into temporary file so we can read the length | |
2016/10/17 07:00:42 packer.orig: 2016/10/17 07:00:42 [DEBUG] scp: Uploading macos1012.vmx: perms=C0644 size=2454 | |
2016/10/17 07:00:42 packer.orig: 2016/10/17 07:00:42 SCP session complete, closing stdin pipe. | |
2016/10/17 07:00:42 packer.orig: 2016/10/17 07:00:42 Waiting for SSH session to complete. | |
2016/10/17 07:00:42 packer.orig: 2016/10/17 07:00:42 scp stderr (length 31): Sink: C0644 2454 macos1012.vmx | |
2016/10/17 07:00:42 packer.orig: 2016/10/17 07:00:42 opening new ssh session | |
2016/10/17 07:00:42 packer.orig: 2016/10/17 07:00:42 starting remote command: vim-cmd vmsvc/reload 128 | |
2016/10/17 07:00:43 packer.orig: 2016/10/17 07:00:43 remote command exited with '0': vim-cmd vmsvc/reload 128 | |
2016/10/17 07:00:43 packer.orig: 2016/10/17 07:00:43 opening new ssh session | |
2016/10/17 07:00:43 packer.orig: 2016/10/17 07:00:43 starting remote command: vim-cmd vmsvc/power.getstate 128 | |
2016/10/17 07:00:44 packer.orig: 2016/10/17 07:00:44 remote command exited with '0': vim-cmd vmsvc/power.getstate 128 | |
2016/10/17 07:00:44 ui: ==> vmware-iso: Unregistering virtual machine... | |
2016/10/17 07:00:44 packer.orig: 2016/10/17 07:00:44 opening new ssh session | |
==> vmware-iso: Unregistering virtual machine... | |
2016/10/17 07:00:44 packer.orig: 2016/10/17 07:00:44 starting remote command: vim-cmd vmsvc/unregister 128 | |
2016/10/17 07:00:44 packer.orig: 2016/10/17 07:00:44 remote command exited with '0': vim-cmd vmsvc/unregister 128 | |
Build 'vmware-iso' errored: Couldn't mount VMware tools ISO. Please check the 'guest_os_type' in your template.json. | |
==> Some builds didn't complete successfully and had errors: | |
--> vmware-iso: Couldn't mount VMware tools ISO. Please check the 'guest_os_type' in your template.json. | |
==> Builds finished but no artifacts were created. | |
2016/10/17 07:00:44 ui error: Build 'vmware-iso' errored: Couldn't mount VMware tools ISO. Please check the 'guest_os_type' in your template.json. | |
2016/10/17 07:00:44 Builds completed. Waiting on interrupt barrier... | |
2016/10/17 07:00:44 machine readable: error-count []string{"1"} | |
2016/10/17 07:00:44 ui error: | |
==> Some builds didn't complete successfully and had errors: | |
2016/10/17 07:00:44 machine readable: vmware-iso,error []string{"Couldn't mount VMware tools ISO. Please check the 'guest_os_type' in your template.json."} | |
2016/10/17 07:00:44 ui error: --> vmware-iso: Couldn't mount VMware tools ISO. Please check the 'guest_os_type' in your template.json. | |
2016/10/17 07:00:44 ui: | |
==> Builds finished but no artifacts were created. | |
2016/10/17 07:00:44 waiting for all plugin processes to complete... | |
2016/10/17 07:00:44 /home/user/bin/packer.orig: plugin process exited | |
2016/10/17 07:00:44 /home/user/bin/packer.orig: plugin process exited | |
2016/10/17 07:00:44 /home/user/bin/packer.orig: plugin process exited | |
2016/10/17 07:00:44 /home/user/bin/packer.orig: plugin process exited | |
This file contains 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
#!/bin/bash -eux | |
echo "==> Disable automatic update check" | |
defaults write /Library/Preferences/com.apple.SoftwareUpdate AutomaticCheckEnabled -bool FALSE | |
if [[ "$UPDATE" =~ ^(true|yes|on|1|TRUE|YES|ON])$ ]]; then | |
echo "==> Running software update" | |
softwareupdate --install --all --verbose | |
echo "==> Rebooting the machine" | |
reboot | |
fi |
This file contains 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
#!/bin/sh | |
date > /etc/box_build_time | |
OSX_VERS=$(sw_vers -productVersion | awk -F "." '{print $2}') | |
# Set computer/hostname | |
COMPNAME=osx-10_${OSX_VERS} | |
scutil --set ComputerName ${COMPNAME} | |
scutil --set HostName ${COMPNAME}.vagrantup.com | |
# Packer passes boolean user variables through as '1', but this might change in | |
# the future, so also check for 'true'. | |
if [ "$INSTALL_VAGRANT_KEYS" = "true" ] || [ "$INSTALL_VAGRANT_KEYS" = "1" ]; then | |
echo "Installing vagrant keys for $SSH_USERNAME user" | |
mkdir "/Users/$SSH_USERNAME/.ssh" | |
chmod 700 "/Users/$SSH_USERNAME/.ssh" | |
#curl -L 'https://raw.githubusercontent.com/mitchellh/vagrant/master/keys/vagrant.pub' > "/Users/$SSH_USERNAME/.ssh/authorized_keys" | |
echo 'ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEA6NF8iallvQVp22WDkTkyrtvp9eWW6A8YVr+kz4TjGYe7gHzIw+niNltGEFHzD8+v1I2YJ6oXevct1YeS0o9HZyN1Q9qgCgzUFtdOKLv6IedplqoPkcmF0aYet2PkEDo3MlTBckFXPITAMzF8dJSIFo9D8HfdOV0IAdx4O7PtixWKn5y2hMNG0zQPyUecp4pzC6kivAIhyfHilFR61RGL+GPXQ2MWZWFYbAGjyiYJnAmCP3NOTd0jMZEnDkbUvxhMmBYSdETk1rRgm+R4LOzFUGaHqHDLKLX+FIPKcF96hrucXzcWyLbIbEgE98OHlnVYCzRdK8jlqm8tehUc9c9WhQ== vagrant insecure public key' > "/Users/$SSH_USERNAME/.ssh/authorized_keys" | |
chmod 600 "/Users/$SSH_USERNAME/.ssh/authorized_keys" | |
chown -R "$SSH_USERNAME" "/Users/$SSH_USERNAME/.ssh" | |
fi | |
# Create a group and assign the user to it | |
dseditgroup -o create "$SSH_USERNAME" | |
dseditgroup -o edit -a "$SSH_USERNAME" "$SSH_USERNAME" |
This file contains 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
#!/bin/sh | |
TOOLS_PATH="/Users/$SSH_USERNAME/darwin.iso" | |
# VMware Fusion specific items | |
if [ -e .vmfusion_version ] || [[ "$PACKER_BUILDER_TYPE" == vmware* ]]; then | |
if [ ! -e "$TOOLS_PATH" ]; then | |
echo "Couldn't locate uploaded tools iso at $TOOLS_PATH!" | |
#exit 1 | |
fi | |
if [ ! -e "/Volumes/VMware Tools" ]; then | |
echo "Berne: Couldn't find VMware Tools mounted" | |
fi | |
if [ -e "/Volumes/VMware\ Tools" ]; then | |
TMPMOUNT="/Volumes/VMware\ Tools" | |
echo "with slash" | |
elif [ -e "/Volumes/VMware Tools" ]; then | |
TMPMOUNT="/Volumes/VMware Tools" | |
echo "no slash" | |
else | |
TMPMOUNT=`/usr/bin/mktemp -d /tmp/vmware-tools.XXXX` | |
hdiutil attach "$TOOLS_PATH" -mountpoint "$TMPMOUNT" | |
fi | |
echo "\$TMPMOUNT='$TMPMOUNT'" | |
INSTALLER_PKG="$TMPMOUNT/Install VMware Tools.app/Contents/Resources/VMware Tools.pkg" | |
if [ ! -e "$INSTALLER_PKG" ]; then | |
echo "Couldn't locate VMware installer pkg at $INSTALLER_PKG!" | |
#exit 1 | |
else | |
echo "Installing VMware tools.." | |
installer -pkg "$TMPMOUNT/Install VMware Tools.app/Contents/Resources/VMware Tools.pkg" -target / | |
# This usually fails | |
hdiutil detach "$TMPMOUNT" | |
rm -rf "$TMPMOUNT" | |
rm -f "$TOOLS_PATH" | |
# Point Linux shared folder root to that used by OS X guests, | |
# useful for the Hashicorp vmware_fusion Vagrant provider plugin | |
mkdir /mnt | |
ln -sf /Volumes/VMware\ Shared\ Folders /mnt/hgfs | |
fi | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment