Skip to content

Instantly share code, notes, and snippets.

@f-roscher
Created December 4, 2017 15:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save f-roscher/1ac141e9aab26396d49a94ebb30f49ae to your computer and use it in GitHub Desktop.
Save f-roscher/1ac141e9aab26396d49a94ebb30f49ae to your computer and use it in GitHub Desktop.
{
"variables": {
"kickstart_file": "ks_base.cfg",
"iso_url": "http://int-inf-cfg-006.inf.int.COMPANY.services/images/centos-7.4/CentOS-7-x86_64-Minimal-1708.iso",
"iso_file": "CentOS-7-x86_64-Minimal-1708.iso",
"iso_checksum_type": "sha256",
"iso_checksum": "bba314624956961a2ea31dd460cd860a77911c1e0a56e4820a12b9c5dad363f5",
"vm_name": "vm_template_base",
"vm_memory": "2048",
"vm_cpus": "2",
"vm_disk_size": "15000",
"box_name": "vm_template_base",
"http_directory": "http",
"vsphere_user": "Administrator@int.vsphere.local",
"vsphere_password": "{{env `VSPHERE_PW` }}",
"additional_boot_command": "net.ifnames=0",
"vsphere_remote_network": "dv128"
},
"provisioners": [
{
"type": "shell",
"execute_command": "echo 'vagrant' | {{.Vars}} sudo -S -E bash '{{.Path}}'",
"script": "scripts/ansible-install.sh"
},
{
"type": "shell",
"execute_command": "echo 'vagrant' | {{.Vars}} sudo -S -E bash '{{.Path}}'",
"script": "scripts/remove-repos.sh"
},
{
"type": "shell",
"execute_command": "echo 'vagrant' | {{.Vars}} sudo -S -E bash '{{.Path}}'",
"script": "scripts/cleanup.sh"
}
],
"builders": [
{
"type": "virtualbox-iso",
"boot_command": [
"<tab> text ks=http://{{ .HTTPIP }}:{{ .HTTPPort }}/{{ user `kickstart_file` }} {{ user `additional_boot_command` }}<enter><wait>"
],
"boot_wait": "5s",
"disk_size": "{{user `vm_disk_size` }}",
"guest_os_type": "RedHat_64",
"headless": true,
"http_directory": "{{ user `http_directory` }}",
"iso_urls": [
"{{ user `iso_url` }}"
],
"iso_checksum_type": "{{ user `iso_checksum_type` }}",
"iso_checksum": "{{ user `iso_checksum` }}",
"ssh_username": "vagrant",
"ssh_password": "vagrant",
"ssh_port": 22,
"ssh_wait_timeout": "10000s",
"shutdown_command": "echo 'vagrant'|sudo -S /sbin/halt -h -p",
"vm_name": "packer-vm-base-7.4-x86_64",
"vboxmanage": [
[
"modifyvm",
"{{.Name}}",
"--memory",
"{{ user `vm_memory` }}"
],
[
"modifyvm",
"{{.Name}}",
"--cpus",
"{{ user `vm_cpus` }}"
]
]
},
{
"type": "vmware-iso",
"boot_command": [
"<tab> text ks=http://{{ .HTTPIP }}:{{ .HTTPPort }}/{{ user `kickstart_file` }} {{ user `additional_boot_command` }}<enter><wait>"
],
"boot_wait": "5s",
"disk_size": "{{ user `vm_disk_size` }}",
"guest_os_type": "centos-64",
"headless": true,
"http_directory": "{{ user `http_directory` }}",
"iso_urls": [
"{{ user `iso_file` }}",
"{{ user `iso_url` }}"
],
"iso_checksum_type": "{{ user `iso_checksum_type` }}",
"iso_checksum": "{{ user `iso_checksum` }}",
"ssh_username": "vagrant",
"ssh_password": "vagrant",
"ssh_port": 22,
"ssh_wait_timeout": "10000s",
"shutdown_command": "echo 'vagrant'|sudo -S /sbin/halt -h -p",
"tools_upload_flavor": "linux",
"vm_name": "packer-vm-base-7.4-x86_64",
"vmx_data": {
"memsize": "{{ user `vm_memory` }}",
"numvcpus": "{{ user `vm_cpus` }}",
"ethernet0.virtualDev": "vmxnet3",
"ethernet0.networkName": "{{user `vsphere_remote_network`}}"
},
"vmx_data_post": {
"ethernet0.connectionType": "bridged",
"ethernet0.startConnected": "TRUE"
},
"vmx_remove_ethernet_interfaces": true
}
],
"post-processors": [
[
{
"type": "vsphere",
"only": [ "vmware-iso" ],
"insecure": true,
"cluster": "DEV-PROD",
"datacenter": "int-inf-datacenter",
"datastore": "fc_int_inf_vm_lt_LUN103",
"overwrite": true,
"disk_mode": "thin",
"host": "int-inf-vca-010.inf.int.COMPANY.services",
"username": "{{ user `vsphere_user` }}",
"password": "{{ user `vsphere_password` }}",
"vm_name": "packer-vm-template",
"vm_folder": "template"
},
{
"type": "vsphere-template",
"only": [ "vmware-iso" ],
"insecure": true,
"datacenter": "int-inf-datacenter",
"host": "int-inf-vca-010.inf.int.COMPANY.services",
"username": "{{ user `vsphere_user` }}",
"password": "{{ user `vsphere_password` }}"
}
],
{
"output": "builds/{{.Provider}}-centos7.box",
"type": "vagrant"
}
]
}
2017/11/30 10:43:01 [INFO] Packer version: 1.1.2-dev (b754b715)
2017/11/30 10:43:01 Packer Target OS/Arch: linux amd64
2017/11/30 10:43:01 Built with Go Version: go1.7.4
2017/11/30 10:43:01 Detected home directory from env var: /home/USERNAME
2017/11/30 10:43:01 Using internal plugin for docker
2017/11/30 10:43:01 Using internal plugin for file
2017/11/30 10:43:01 Using internal plugin for profitbricks
2017/11/30 10:43:01 Using internal plugin for qemu
2017/11/30 10:43:01 Using internal plugin for virtualbox-iso
2017/11/30 10:43:01 Using internal plugin for vmware-vmx
2017/11/30 10:43:01 Using internal plugin for amazon-instance
2017/11/30 10:43:01 Using internal plugin for digitalocean
2017/11/30 10:43:01 Using internal plugin for parallels-iso
2017/11/30 10:43:01 Using internal plugin for parallels-pvm
2017/11/30 10:43:01 Using internal plugin for alicloud-ecs
2017/11/30 10:43:01 Using internal plugin for amazon-ebssurrogate
2017/11/30 10:43:01 Using internal plugin for azure-arm
2017/11/30 10:43:01 Using internal plugin for hyperv-vmcx
2017/11/30 10:43:01 Using internal plugin for openstack
2017/11/30 10:43:01 Using internal plugin for virtualbox-ovf
2017/11/30 10:43:01 Using internal plugin for vmware-iso
2017/11/30 10:43:01 Using internal plugin for amazon-chroot
2017/11/30 10:43:01 Using internal plugin for amazon-ebsvolume
2017/11/30 10:43:01 Using internal plugin for googlecompute
2017/11/30 10:43:01 Using internal plugin for oneandone
2017/11/30 10:43:01 Using internal plugin for triton
2017/11/30 10:43:01 Using internal plugin for hyperv-iso
2017/11/30 10:43:01 Using internal plugin for lxc
2017/11/30 10:43:01 Using internal plugin for lxd
2017/11/30 10:43:01 Using internal plugin for oracle-oci
2017/11/30 10:43:01 Using internal plugin for cloudstack
2017/11/30 10:43:01 Using internal plugin for amazon-ebs
2017/11/30 10:43:01 Using internal plugin for null
2017/11/30 10:43:01 Using internal plugin for ansible
2017/11/30 10:43:01 Using internal plugin for ansible-local
2017/11/30 10:43:01 Using internal plugin for chef-solo
2017/11/30 10:43:01 Using internal plugin for converge
2017/11/30 10:43:01 Using internal plugin for shell-local
2017/11/30 10:43:01 Using internal plugin for chef-client
2017/11/30 10:43:01 Using internal plugin for powershell
2017/11/30 10:43:01 Using internal plugin for file
2017/11/30 10:43:01 Using internal plugin for puppet-masterless
2017/11/30 10:43:01 Using internal plugin for salt-masterless
2017/11/30 10:43:01 Using internal plugin for shell
2017/11/30 10:43:01 Using internal plugin for windows-restart
2017/11/30 10:43:01 Using internal plugin for windows-shell
2017/11/30 10:43:01 Using internal plugin for puppet-server
2017/11/30 10:43:01 Using internal plugin for vagrant
2017/11/30 10:43:01 Using internal plugin for artifice
2017/11/30 10:43:01 Using internal plugin for atlas
2017/11/30 10:43:01 Using internal plugin for docker-save
2017/11/30 10:43:01 Using internal plugin for checksum
2017/11/30 10:43:01 Using internal plugin for shell-local
2017/11/30 10:43:01 Using internal plugin for vagrant-cloud
2017/11/30 10:43:01 Using internal plugin for docker-tag
2017/11/30 10:43:01 Using internal plugin for vsphere
2017/11/30 10:43:01 Using internal plugin for vsphere-template
2017/11/30 10:43:01 Using internal plugin for alicloud-import
2017/11/30 10:43:01 Using internal plugin for amazon-import
2017/11/30 10:43:01 Using internal plugin for compress
2017/11/30 10:43:01 Using internal plugin for manifest
2017/11/30 10:43:01 Using internal plugin for docker-import
2017/11/30 10:43:01 Using internal plugin for docker-push
2017/11/30 10:43:01 Using internal plugin for googlecompute-export
2017/11/30 10:43:01 Detected home directory from env var: /home/USERNAME
2017/11/30 10:43:01 Attempting to open config file: /home/USERNAME/.packerconfig
2017/11/30 10:43:01 [WARN] Config file doesn't exist: /home/USERNAME/.packerconfig
2017/11/30 10:43:01 Packer config: &{DisableCheckpoint:false DisableCheckpointSignature:false PluginMinPort:10000 PluginMaxPort:25000 Builders:map[file:/home/USERNAME/project/packer-terraform-eval/go-packer/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-builder-file openstack:/home/USERNAME/project/packer-terraform-eval/go-packer/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-builder-openstack lxd:/home/USERNAME/project/packer-terraform-eval/go-packer/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-builder-lxd docker:/home/USERNAME/project/packer-terraform-eval/go-packer/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-builder-docker qemu:/home/USERNAME/project/packer-terraform-eval/go-packer/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-builder-qemu hyperv-vmcx:/home/USERNAME/project/packer-terraform-eval/go-packer/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-builder-hyperv-vmcx amazon-chroot:/home/USERNAME/project/packer-terraform-eval/go-packer/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-builder-amazon-chroot amazon-ebsvolume:/home/USERNAME/project/packer-terraform-eval/go-packer/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-builder-amazon-ebsvolume profitbricks:/home/USERNAME/project/packer-terraform-eval/go-packer/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-builder-profitbricks vmware-vmx:/home/USERNAME/project/packer-terraform-eval/go-packer/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-builder-vmware-vmx virtualbox-ovf:/home/USERNAME/project/packer-terraform-eval/go-packer/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-builder-virtualbox-ovf googlecompute:/home/USERNAME/project/packer-terraform-eval/go-packer/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-builder-googlecompute lxc:/home/USERNAME/project/packer-terraform-eval/go-packer/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-builder-lxc amazon-ebs:/home/USERNAME/project/packer-terraform-eval/go-packer/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-builder-amazon-ebs digitalocean:/home/USERNAME/project/packer-terraform-eval/go-packer/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-builder-digitalocean parallels-iso:/home/USERNAME/project/packer-terraform-eval/go-packer/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-builder-parallels-iso amazon-ebssurrogate:/home/USERNAME/project/packer-terraform-eval/go-packer/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-builder-amazon-ebssurrogate alicloud-ecs:/home/USERNAME/project/packer-terraform-eval/go-packer/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-builder-alicloud-ecs oracle-oci:/home/USERNAME/project/packer-terraform-eval/go-packer/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-builder-oracle-oci hyperv-iso:/home/USERNAME/project/packer-terraform-eval/go-packer/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-builder-hyperv-iso cloudstack:/home/USERNAME/project/packer-terraform-eval/go-packer/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-builder-cloudstack virtualbox-iso:/home/USERNAME/project/packer-terraform-eval/go-packer/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-builder-virtualbox-iso parallels-pvm:/home/USERNAME/project/packer-terraform-eval/go-packer/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-builder-parallels-pvm triton:/home/USERNAME/project/packer-terraform-eval/go-packer/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-builder-triton azure-arm:/home/USERNAME/project/packer-terraform-eval/go-packer/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-builder-azure-arm null:/home/USERNAME/project/packer-terraform-eval/go-packer/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-builder-null amazon-instance:/home/USERNAME/project/packer-terraform-eval/go-packer/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-builder-amazon-instance vmware-iso:/home/USERNAME/project/packer-terraform-eval/go-packer/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-builder-vmware-iso oneandone:/home/USERNAME/project/packer-terraform-eval/go-packer/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-builder-oneandone] PostProcessors:map[docker-save:/home/USERNAME/project/packer-terraform-eval/go-packer/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-post-processor-docker-save vagrant-cloud:/home/USERNAME/project/packer-terraform-eval/go-packer/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-post-processor-vagrant-cloud docker-tag:/home/USERNAME/project/packer-terraform-eval/go-packer/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-post-processor-docker-tag vsphere:/home/USERNAME/project/packer-terraform-eval/go-packer/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-post-processor-vsphere vsphere-template:/home/USERNAME/project/packer-terraform-eval/go-packer/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-post-processor-vsphere-template alicloud-import:/home/USERNAME/project/packer-terraform-eval/go-packer/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-post-processor-alicloud-import compress:/home/USERNAME/project/packer-terraform-eval/go-packer/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-post-processor-compress artifice:/home/USERNAME/project/packer-terraform-eval/go-packer/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-post-processor-artifice shell-local:/home/USERNAME/project/packer-terraform-eval/go-packer/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-post-processor-shell-local manifest:/home/USERNAME/project/packer-terraform-eval/go-packer/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-post-processor-manifest atlas:/home/USERNAME/project/packer-terraform-eval/go-packer/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-post-processor-atlas docker-import:/home/USERNAME/project/packer-terraform-eval/go-packer/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-post-processor-docker-import docker-push:/home/USERNAME/project/packer-terraform-eval/go-packer/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-post-processor-docker-push googlecompute-export:/home/USERNAME/project/packer-terraform-eval/go-packer/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-post-processor-googlecompute-export checksum:/home/USERNAME/project/packer-terraform-eval/go-packer/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-post-processor-checksum amazon-import:/home/USERNAME/project/packer-terraform-eval/go-packer/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-post-processor-amazon-import vagrant:/home/USERNAME/project/packer-terraform-eval/go-packer/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-post-processor-vagrant] Provisioners:map[shell:/home/USERNAME/project/packer-terraform-eval/go-packer/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-provisioner-shell ansible-local:/home/USERNAME/project/packer-terraform-eval/go-packer/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-provisioner-ansible-local shell-local:/home/USERNAME/project/packer-terraform-eval/go-packer/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-provisioner-shell-local chef-client:/home/USERNAME/project/packer-terraform-eval/go-packer/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-provisioner-chef-client salt-masterless:/home/USERNAME/project/packer-terraform-eval/go-packer/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-provisioner-salt-masterless windows-shell:/home/USERNAME/project/packer-terraform-eval/go-packer/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-provisioner-windows-shell ansible:/home/USERNAME/project/packer-terraform-eval/go-packer/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-provisioner-ansible chef-solo:/home/USERNAME/project/packer-terraform-eval/go-packer/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-provisioner-chef-solo converge:/home/USERNAME/project/packer-terraform-eval/go-packer/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-provisioner-converge windows-restart:/home/USERNAME/project/packer-terraform-eval/go-packer/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-provisioner-windows-restart powershell:/home/USERNAME/project/packer-terraform-eval/go-packer/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-provisioner-powershell file:/home/USERNAME/project/packer-terraform-eval/go-packer/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-provisioner-file puppet-masterless:/home/USERNAME/project/packer-terraform-eval/go-packer/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-provisioner-puppet-masterless puppet-server:/home/USERNAME/project/packer-terraform-eval/go-packer/bin/packer-PACKERSPACE-plugin-PACKERSPACE-packer-provisioner-puppet-server]}
2017/11/30 10:43:01 Detected home directory from env var: /home/USERNAME
2017/11/30 10:43:01 Setting cache directory: /home/USERNAME/project/packer-terraform-eval/vm_template/packer_cache
2017/11/30 10:43:01 Detected home directory from env var: /home/USERNAME
2017/11/30 10:43:01 Loading builder: vmware-iso
2017/11/30 10:43:01 Plugin could not be found. Checking same directory as executable.
2017/11/30 10:43:01 Current exe path: /home/USERNAME/project/packer-terraform-eval/go-packer/bin/packer
2017/11/30 10:43:01 Creating plugin client for path: /home/USERNAME/project/packer-terraform-eval/go-packer/bin/packer
2017/11/30 10:43:01 Starting plugin: /home/USERNAME/project/packer-terraform-eval/go-packer/bin/packer []string{"/home/USERNAME/project/packer-terraform-eval/go-packer/bin/packer", "plugin", "packer-builder-vmware-iso"}
2017/11/30 10:43:01 Waiting for RPC address for: /home/USERNAME/project/packer-terraform-eval/go-packer/bin/packer
2017/11/30 10:43:01 packer: 2017/11/30 10:43:01 [INFO] Packer version: 1.1.2-dev (b754b715)
2017/11/30 10:43:01 packer: 2017/11/30 10:43:01 Packer Target OS/Arch: linux amd64
2017/11/30 10:43:01 packer: 2017/11/30 10:43:01 Built with Go Version: go1.7.4
2017/11/30 10:43:01 packer: 2017/11/30 10:43:01 Detected home directory from env var: /home/USERNAME
2017/11/30 10:43:01 packer: 2017/11/30 10:43:01 Attempting to open config file: /home/USERNAME/.packerconfig
2017/11/30 10:43:01 packer: 2017/11/30 10:43:01 [WARN] Config file doesn't exist: /home/USERNAME/.packerconfig
2017/11/30 10:43:01 packer: 2017/11/30 10:43:01 Packer config: &{DisableCheckpoint:false DisableCheckpointSignature:false PluginMinPort:10000 PluginMaxPort:25000 Builders:map[] PostProcessors:map[] Provisioners:map[]}
2017/11/30 10:43:01 packer: 2017/11/30 10:43:01 Detected home directory from env var: /home/USERNAME
2017/11/30 10:43:01 packer: 2017/11/30 10:43:01 Setting cache directory: /home/USERNAME/project/packer-terraform-eval/vm_template/packer_cache
2017/11/30 10:43:01 packer: 2017/11/30 10:43:01 args: []string{"packer-builder-vmware-iso"}
2017/11/30 10:43:01 packer: 2017/11/30 10:43:01 Plugin minimum port: 10000
2017/11/30 10:43:01 packer: 2017/11/30 10:43:01 Plugin maximum port: 25000
2017/11/30 10:43:01 packer: 2017/11/30 10:43:01 Plugin address: unix /tmp/packer-plugin704488464
2017/11/30 10:43:01 packer: 2017/11/30 10:43:01 Waiting for connection...
2017/11/30 10:43:01 packer: 2017/11/30 10:43:01 Detected home directory from env var: /home/USERNAME
2017/11/30 10:43:01 packer: 2017/11/30 10:43:01 Serving a plugin connection...
2017/11/30 10:43:01 Loading provisioner: shell
2017/11/30 10:43:01 Plugin could not be found. Checking same directory as executable.
2017/11/30 10:43:01 Current exe path: /home/USERNAME/project/packer-terraform-eval/go-packer/bin/packer
2017/11/30 10:43:01 Creating plugin client for path: /home/USERNAME/project/packer-terraform-eval/go-packer/bin/packer
2017/11/30 10:43:01 Starting plugin: /home/USERNAME/project/packer-terraform-eval/go-packer/bin/packer []string{"/home/USERNAME/project/packer-terraform-eval/go-packer/bin/packer", "plugin", "packer-provisioner-shell"}
2017/11/30 10:43:01 Waiting for RPC address for: /home/USERNAME/project/packer-terraform-eval/go-packer/bin/packer
2017/11/30 10:43:01 packer: 2017/11/30 10:43:01 [INFO] Packer version: 1.1.2-dev (b754b715)
2017/11/30 10:43:01 packer: 2017/11/30 10:43:01 Packer Target OS/Arch: linux amd64
2017/11/30 10:43:01 packer: 2017/11/30 10:43:01 Built with Go Version: go1.7.4
2017/11/30 10:43:01 packer: 2017/11/30 10:43:01 Detected home directory from env var: /home/USERNAME
2017/11/30 10:43:01 packer: 2017/11/30 10:43:01 Attempting to open config file: /home/USERNAME/.packerconfig
2017/11/30 10:43:01 packer: 2017/11/30 10:43:01 [WARN] Config file doesn't exist: /home/USERNAME/.packerconfig
2017/11/30 10:43:01 packer: 2017/11/30 10:43:01 Packer config: &{DisableCheckpoint:false DisableCheckpointSignature:false PluginMinPort:10000 PluginMaxPort:25000 Builders:map[] PostProcessors:map[] Provisioners:map[]}
2017/11/30 10:43:01 packer: 2017/11/30 10:43:01 Detected home directory from env var: /home/USERNAME
2017/11/30 10:43:01 packer: 2017/11/30 10:43:01 Setting cache directory: /home/USERNAME/project/packer-terraform-eval/vm_template/packer_cache
2017/11/30 10:43:01 packer: 2017/11/30 10:43:01 args: []string{"packer-provisioner-shell"}
2017/11/30 10:43:01 packer: 2017/11/30 10:43:01 Plugin minimum port: 10000
2017/11/30 10:43:01 packer: 2017/11/30 10:43:01 Plugin maximum port: 25000
2017/11/30 10:43:01 packer: 2017/11/30 10:43:01 Detected home directory from env var: /home/USERNAME
2017/11/30 10:43:01 packer: 2017/11/30 10:43:01 Plugin address: unix /tmp/packer-plugin150088902
2017/11/30 10:43:01 packer: 2017/11/30 10:43:01 Waiting for connection...
2017/11/30 10:43:01 packer: 2017/11/30 10:43:01 Serving a plugin connection...
2017/11/30 10:43:01 Loading provisioner: shell
2017/11/30 10:43:01 Plugin could not be found. Checking same directory as executable.
2017/11/30 10:43:01 Current exe path: /home/USERNAME/project/packer-terraform-eval/go-packer/bin/packer
2017/11/30 10:43:01 Creating plugin client for path: /home/USERNAME/project/packer-terraform-eval/go-packer/bin/packer
2017/11/30 10:43:01 Starting plugin: /home/USERNAME/project/packer-terraform-eval/go-packer/bin/packer []string{"/home/USERNAME/project/packer-terraform-eval/go-packer/bin/packer", "plugin", "packer-provisioner-shell"}
2017/11/30 10:43:01 Waiting for RPC address for: /home/USERNAME/project/packer-terraform-eval/go-packer/bin/packer
2017/11/30 10:43:01 packer: 2017/11/30 10:43:01 [INFO] Packer version: 1.1.2-dev (b754b715)
2017/11/30 10:43:01 packer: 2017/11/30 10:43:01 Packer Target OS/Arch: linux amd64
2017/11/30 10:43:01 packer: 2017/11/30 10:43:01 Built with Go Version: go1.7.4
2017/11/30 10:43:01 packer: 2017/11/30 10:43:01 Detected home directory from env var: /home/USERNAME
2017/11/30 10:43:01 packer: 2017/11/30 10:43:01 Attempting to open config file: /home/USERNAME/.packerconfig
2017/11/30 10:43:01 packer: 2017/11/30 10:43:01 [WARN] Config file doesn't exist: /home/USERNAME/.packerconfig
2017/11/30 10:43:01 packer: 2017/11/30 10:43:01 Packer config: &{DisableCheckpoint:false DisableCheckpointSignature:false PluginMinPort:10000 PluginMaxPort:25000 Builders:map[] PostProcessors:map[] Provisioners:map[]}
2017/11/30 10:43:01 packer: 2017/11/30 10:43:01 Detected home directory from env var: /home/USERNAME
2017/11/30 10:43:01 packer: 2017/11/30 10:43:01 Setting cache directory: /home/USERNAME/project/packer-terraform-eval/vm_template/packer_cache
2017/11/30 10:43:01 packer: 2017/11/30 10:43:01 args: []string{"packer-provisioner-shell"}
2017/11/30 10:43:01 packer: 2017/11/30 10:43:01 Plugin minimum port: 10000
2017/11/30 10:43:01 packer: 2017/11/30 10:43:01 Detected home directory from env var: /home/USERNAME
2017/11/30 10:43:01 packer: 2017/11/30 10:43:01 Plugin maximum port: 25000
2017/11/30 10:43:01 packer: 2017/11/30 10:43:01 Plugin address: unix /tmp/packer-plugin215101818
2017/11/30 10:43:01 packer: 2017/11/30 10:43:01 Waiting for connection...
2017/11/30 10:43:01 packer: 2017/11/30 10:43:01 Serving a plugin connection...
2017/11/30 10:43:01 Loading provisioner: shell
2017/11/30 10:43:01 Plugin could not be found. Checking same directory as executable.
2017/11/30 10:43:01 Current exe path: /home/USERNAME/project/packer-terraform-eval/go-packer/bin/packer
2017/11/30 10:43:01 Creating plugin client for path: /home/USERNAME/project/packer-terraform-eval/go-packer/bin/packer
2017/11/30 10:43:01 Starting plugin: /home/USERNAME/project/packer-terraform-eval/go-packer/bin/packer []string{"/home/USERNAME/project/packer-terraform-eval/go-packer/bin/packer", "plugin", "packer-provisioner-shell"}
2017/11/30 10:43:01 Waiting for RPC address for: /home/USERNAME/project/packer-terraform-eval/go-packer/bin/packer
2017/11/30 10:43:01 packer: 2017/11/30 10:43:01 [INFO] Packer version: 1.1.2-dev (b754b715)
2017/11/30 10:43:01 packer: 2017/11/30 10:43:01 Packer Target OS/Arch: linux amd64
2017/11/30 10:43:01 packer: 2017/11/30 10:43:01 Built with Go Version: go1.7.4
2017/11/30 10:43:01 packer: 2017/11/30 10:43:01 Detected home directory from env var: /home/USERNAME
2017/11/30 10:43:01 packer: 2017/11/30 10:43:01 Attempting to open config file: /home/USERNAME/.packerconfig
2017/11/30 10:43:01 packer: 2017/11/30 10:43:01 [WARN] Config file doesn't exist: /home/USERNAME/.packerconfig
2017/11/30 10:43:01 packer: 2017/11/30 10:43:01 Packer config: &{DisableCheckpoint:false DisableCheckpointSignature:false PluginMinPort:10000 PluginMaxPort:25000 Builders:map[] PostProcessors:map[] Provisioners:map[]}
2017/11/30 10:43:01 packer: 2017/11/30 10:43:01 Detected home directory from env var: /home/USERNAME
2017/11/30 10:43:01 packer: 2017/11/30 10:43:01 Setting cache directory: /home/USERNAME/project/packer-terraform-eval/vm_template/packer_cache
2017/11/30 10:43:01 packer: 2017/11/30 10:43:01 args: []string{"packer-provisioner-shell"}
2017/11/30 10:43:01 packer: 2017/11/30 10:43:01 Plugin minimum port: 10000
2017/11/30 10:43:01 packer: 2017/11/30 10:43:01 Plugin maximum port: 25000
2017/11/30 10:43:01 packer: 2017/11/30 10:43:01 Detected home directory from env var: /home/USERNAME
2017/11/30 10:43:01 packer: 2017/11/30 10:43:01 Plugin address: unix /tmp/packer-plugin530713431
2017/11/30 10:43:01 packer: 2017/11/30 10:43:01 Waiting for connection...
2017/11/30 10:43:01 packer: 2017/11/30 10:43:01 Serving a plugin connection...
2017/11/30 10:43:01 Loading post-processor: vsphere
2017/11/30 10:43:01 Plugin could not be found. Checking same directory as executable.
2017/11/30 10:43:01 Current exe path: /home/USERNAME/project/packer-terraform-eval/go-packer/bin/packer
2017/11/30 10:43:01 Creating plugin client for path: /home/USERNAME/project/packer-terraform-eval/go-packer/bin/packer
2017/11/30 10:43:01 Starting plugin: /home/USERNAME/project/packer-terraform-eval/go-packer/bin/packer []string{"/home/USERNAME/project/packer-terraform-eval/go-packer/bin/packer", "plugin", "packer-post-processor-vsphere"}
2017/11/30 10:43:01 Waiting for RPC address for: /home/USERNAME/project/packer-terraform-eval/go-packer/bin/packer
2017/11/30 10:43:01 packer: 2017/11/30 10:43:01 [INFO] Packer version: 1.1.2-dev (b754b715)
2017/11/30 10:43:01 packer: 2017/11/30 10:43:01 Packer Target OS/Arch: linux amd64
2017/11/30 10:43:01 packer: 2017/11/30 10:43:01 Built with Go Version: go1.7.4
2017/11/30 10:43:01 packer: 2017/11/30 10:43:01 Detected home directory from env var: /home/USERNAME
2017/11/30 10:43:01 packer: 2017/11/30 10:43:01 Attempting to open config file: /home/USERNAME/.packerconfig
2017/11/30 10:43:01 packer: 2017/11/30 10:43:01 [WARN] Config file doesn't exist: /home/USERNAME/.packerconfig
2017/11/30 10:43:01 packer: 2017/11/30 10:43:01 Packer config: &{DisableCheckpoint:false DisableCheckpointSignature:false PluginMinPort:10000 PluginMaxPort:25000 Builders:map[] PostProcessors:map[] Provisioners:map[]}
2017/11/30 10:43:01 packer: 2017/11/30 10:43:01 Detected home directory from env var: /home/USERNAME
2017/11/30 10:43:01 packer: 2017/11/30 10:43:01 Setting cache directory: /home/USERNAME/project/packer-terraform-eval/vm_template/packer_cache
2017/11/30 10:43:01 packer: 2017/11/30 10:43:01 args: []string{"packer-post-processor-vsphere"}
2017/11/30 10:43:01 packer: 2017/11/30 10:43:01 Plugin minimum port: 10000
2017/11/30 10:43:01 packer: 2017/11/30 10:43:01 Plugin maximum port: 25000
2017/11/30 10:43:01 packer: 2017/11/30 10:43:01 Detected home directory from env var: /home/USERNAME
2017/11/30 10:43:01 packer: 2017/11/30 10:43:01 Plugin address: unix /tmp/packer-plugin684413421
2017/11/30 10:43:01 packer: 2017/11/30 10:43:01 Waiting for connection...
2017/11/30 10:43:01 packer: 2017/11/30 10:43:01 Serving a plugin connection...
2017/11/30 10:43:01 Loading post-processor: vsphere-template
2017/11/30 10:43:01 Plugin could not be found. Checking same directory as executable.
2017/11/30 10:43:01 Current exe path: /home/USERNAME/project/packer-terraform-eval/go-packer/bin/packer
2017/11/30 10:43:01 Creating plugin client for path: /home/USERNAME/project/packer-terraform-eval/go-packer/bin/packer
2017/11/30 10:43:01 Starting plugin: /home/USERNAME/project/packer-terraform-eval/go-packer/bin/packer []string{"/home/USERNAME/project/packer-terraform-eval/go-packer/bin/packer", "plugin", "packer-post-processor-vsphere-template"}
2017/11/30 10:43:01 Waiting for RPC address for: /home/USERNAME/project/packer-terraform-eval/go-packer/bin/packer
2017/11/30 10:43:01 packer: 2017/11/30 10:43:01 [INFO] Packer version: 1.1.2-dev (b754b715)
2017/11/30 10:43:01 packer: 2017/11/30 10:43:01 Packer Target OS/Arch: linux amd64
2017/11/30 10:43:01 packer: 2017/11/30 10:43:01 Built with Go Version: go1.7.4
2017/11/30 10:43:01 packer: 2017/11/30 10:43:01 Detected home directory from env var: /home/USERNAME
2017/11/30 10:43:01 packer: 2017/11/30 10:43:01 Attempting to open config file: /home/USERNAME/.packerconfig
2017/11/30 10:43:01 packer: 2017/11/30 10:43:01 [WARN] Config file doesn't exist: /home/USERNAME/.packerconfig
2017/11/30 10:43:01 packer: 2017/11/30 10:43:01 Packer config: &{DisableCheckpoint:false DisableCheckpointSignature:false PluginMinPort:10000 PluginMaxPort:25000 Builders:map[] PostProcessors:map[] Provisioners:map[]}
2017/11/30 10:43:01 packer: 2017/11/30 10:43:01 Detected home directory from env var: /home/USERNAME
2017/11/30 10:43:01 packer: 2017/11/30 10:43:01 Setting cache directory: /home/USERNAME/project/packer-terraform-eval/vm_template/packer_cache
2017/11/30 10:43:01 packer: 2017/11/30 10:43:01 args: []string{"packer-post-processor-vsphere-template"}
2017/11/30 10:43:01 packer: 2017/11/30 10:43:01 Plugin minimum port: 10000
2017/11/30 10:43:01 packer: 2017/11/30 10:43:01 Plugin maximum port: 25000
2017/11/30 10:43:01 packer: 2017/11/30 10:43:01 Detected home directory from env var: /home/USERNAME
2017/11/30 10:43:01 packer: 2017/11/30 10:43:01 Plugin address: unix /tmp/packer-plugin323610049
2017/11/30 10:43:01 packer: 2017/11/30 10:43:01 Waiting for connection...
2017/11/30 10:43:01 packer: 2017/11/30 10:43:01 Serving a plugin connection...
2017/11/30 10:43:01 Loading post-processor: vagrant
2017/11/30 10:43:01 Plugin could not be found. Checking same directory as executable.
2017/11/30 10:43:01 Current exe path: /home/USERNAME/project/packer-terraform-eval/go-packer/bin/packer
2017/11/30 10:43:01 Creating plugin client for path: /home/USERNAME/project/packer-terraform-eval/go-packer/bin/packer
2017/11/30 10:43:01 Starting plugin: /home/USERNAME/project/packer-terraform-eval/go-packer/bin/packer []string{"/home/USERNAME/project/packer-terraform-eval/go-packer/bin/packer", "plugin", "packer-post-processor-vagrant"}
2017/11/30 10:43:01 Waiting for RPC address for: /home/USERNAME/project/packer-terraform-eval/go-packer/bin/packer
2017/11/30 10:43:01 packer: 2017/11/30 10:43:01 [INFO] Packer version: 1.1.2-dev (b754b715)
2017/11/30 10:43:01 packer: 2017/11/30 10:43:01 Packer Target OS/Arch: linux amd64
2017/11/30 10:43:01 packer: 2017/11/30 10:43:01 Built with Go Version: go1.7.4
2017/11/30 10:43:01 packer: 2017/11/30 10:43:01 Detected home directory from env var: /home/USERNAME
2017/11/30 10:43:01 packer: 2017/11/30 10:43:01 Attempting to open config file: /home/USERNAME/.packerconfig
2017/11/30 10:43:01 packer: 2017/11/30 10:43:01 [WARN] Config file doesn't exist: /home/USERNAME/.packerconfig
2017/11/30 10:43:01 packer: 2017/11/30 10:43:01 Packer config: &{DisableCheckpoint:false DisableCheckpointSignature:false PluginMinPort:10000 PluginMaxPort:25000 Builders:map[] PostProcessors:map[] Provisioners:map[]}
2017/11/30 10:43:01 packer: 2017/11/30 10:43:01 Detected home directory from env var: /home/USERNAME
2017/11/30 10:43:01 packer: 2017/11/30 10:43:01 Setting cache directory: /home/USERNAME/project/packer-terraform-eval/vm_template/packer_cache
2017/11/30 10:43:01 packer: 2017/11/30 10:43:01 args: []string{"packer-post-processor-vagrant"}
2017/11/30 10:43:01 packer: 2017/11/30 10:43:01 Plugin minimum port: 10000
2017/11/30 10:43:01 packer: 2017/11/30 10:43:01 Detected home directory from env var: /home/USERNAME
2017/11/30 10:43:01 packer: 2017/11/30 10:43:01 Plugin maximum port: 25000
2017/11/30 10:43:01 packer: 2017/11/30 10:43:01 Plugin address: unix /tmp/packer-plugin756345004
2017/11/30 10:43:01 packer: 2017/11/30 10:43:01 Waiting for connection...
2017/11/30 10:43:01 packer: 2017/11/30 10:43:01 Serving a plugin connection...
2017/11/30 10:43:01 ui: vmware-iso output will be in this color.
2017/11/30 10:43:01 ui:
2017/11/30 10:43:01 Build debug mode: false
2017/11/30 10:43:01 Force build: false
2017/11/30 10:43:01 On error:
2017/11/30 10:43:01 Preparing build: vmware-iso
2017/11/30 10:43:01 Waiting on builds to complete...
2017/11/30 10:43:01 Starting build run: vmware-iso
2017/11/30 10:43:01 Running builder: vmware-iso
2017/11/30 10:43:01 [INFO] (telemetry) Starting builder vmware-iso
2017/11/30 10:43:01 packer: 2017/11/30 10:43:01 VMware app path: /usr/bin/vmplayer
2017/11/30 10:43:01 packer: 2017/11/30 10:43:01 vmrun path: /usr/local/bin/vmrun
2017/11/30 10:43:01 packer: 2017/11/30 10:43:01 vdisk-manager path:
2017/11/30 10:43:01 packer: 2017/11/30 10:43:01 qemu-img path: /usr/bin/qemu-img
2017/11/30 10:43:01 packer: 2017/11/30 10:43:01 VMware app path: /usr/bin/vmplayer
2017/11/30 10:43:01 packer: 2017/11/30 10:43:01 vmrun path: /usr/local/bin/vmrun
2017/11/30 10:43:01 packer: 2017/11/30 10:43:01 vdisk-manager path:
2017/11/30 10:43:01 packer: 2017/11/30 10:43:01 qemu-img path: /usr/bin/qemu-img
2017/11/30 10:43:01 ui: ==> vmware-iso: Downloading or copying ISO
2017/11/30 10:43:01 ui:  vmware-iso: Downloading or copying: file:///CentOS-7-x86_64-Minimal-1708.iso
2017/11/30 10:43:01 packer: 2017/11/30 10:43:01 Acquiring lock to download: file:///CentOS-7-x86_64-Minimal-1708.iso
2017/11/30 10:43:01 packer: 2017/11/30 10:43:01 Parsed URL: &url.URL{Scheme:"file", Opaque:"", User:(*url.Userinfo)(nil), Host:"", Path:"/CentOS-7-x86_64-Minimal-1708.iso", RawPath:"", ForceQuery:false, RawQuery:"", Fragment:""}
2017/11/30 10:43:01 packer: 2017/11/30 10:43:01 [DEBUG] Using local file: /CentOS-7-x86_64-Minimal-1708.iso
2017/11/30 10:43:01 ui:  vmware-iso: Error downloading: stat /CentOS-7-x86_64-Minimal-1708.iso: no such file or directory
2017/11/30 10:43:01 ui:  vmware-iso: Downloading or copying: http://int-inf-cfg-006.inf.int.COMPANY.services/images/centos-7.4/CentOS-7-x86_64-Minimal-1708.iso
2017/11/30 10:43:01 packer: 2017/11/30 10:43:01 Acquiring lock to download: http://int-inf-cfg-006.inf.int.COMPANY.services/images/centos-7.4/CentOS-7-x86_64-Minimal-1708.iso
2017/11/30 10:43:01 packer: 2017/11/30 10:43:01 Verifying checksum of /home/USERNAME/project/packer-terraform-eval/vm_template/packer_cache/78c1fd716eea4b34acfb934a576064f14305bb0d66e8086d2b7d06987049624d.iso
2017/11/30 10:43:03 packer: 2017/11/30 10:43:03 [DEBUG] Initial checksum matched, no download needed.
2017/11/30 10:43:03 packer: 2017/11/30 10:43:03 No floppy files specified. Floppy disk will not be made.
2017/11/30 10:43:03 ui: ==> vmware-iso: Creating virtual machine disk
2017/11/30 10:43:03 packer: 2017/11/30 10:43:03 Executing: /usr/bin/qemu-img create -f vmdk -o compat6 output-vmware-iso/disk.vmdk 15000M
2017/11/30 10:43:03 packer: 2017/11/30 10:43:03 stdout: Formatting 'output-vmware-iso/disk.vmdk', fmt=vmdk size=15728640000 compat6=on hwversion=undefined
2017/11/30 10:43:03 packer: 2017/11/30 10:43:03 stderr:
2017/11/30 10:43:03 ui: ==> vmware-iso: Building and writing VMX file
2017/11/30 10:43:03 packer: 2017/11/30 10:43:03 Writing VMX to: output-vmware-iso/packer-vm-base-7.4-x86_64.vmx
2017/11/30 10:43:03 packer: 2017/11/30 10:43:03 Setting VMX: 'numvcpus' = '2'
2017/11/30 10:43:03 packer: 2017/11/30 10:43:03 Setting VMX: 'ethernet0.virtualDev' = 'vmxnet3'
2017/11/30 10:43:03 packer: 2017/11/30 10:43:03 Setting VMX: 'ethernet0.networkName' = 'dv128'
2017/11/30 10:43:03 packer: 2017/11/30 10:43:03 Setting VMX: 'memsize' = '2048'
2017/11/30 10:43:03 packer: 2017/11/30 10:43:03 Writing VMX to: output-vmware-iso/packer-vm-base-7.4-x86_64.vmx
2017/11/30 10:43:03 packer: 2017/11/30 10:43:03 Suppressing messages in VMX
2017/11/30 10:43:03 packer: 2017/11/30 10:43:03 Trying port: 8605
2017/11/30 10:43:03 ui: ==> vmware-iso: Starting HTTP server on port 8605
2017/11/30 10:43:03 packer: 2017/11/30 10:43:03 Looking for available port between 5900 and 6000
2017/11/30 10:43:03 packer: 2017/11/30 10:43:03 Trying port: 5920
2017/11/30 10:43:03 packer: 2017/11/30 10:43:03 Found available VNC port: 5920
2017/11/30 10:43:03 packer: 2017/11/30 10:43:03 Writing VMX to: output-vmware-iso/packer-vm-base-7.4-x86_64.vmx
2017/11/30 10:43:03 ui: ==> vmware-iso: Starting virtual machine...
2017/11/30 10:43:03 ui:  vmware-iso: The VM will be run headless, without a GUI. If you want to
vmware-iso: view the screen of the VM, connect via VNC with the password "LGyfAHNY" to
vmware-iso: vnc://127.0.0.1:5920
2017/11/30 10:43:03 packer: 2017/11/30 10:43:03 Executing: /usr/local/bin/vmrun -T player start output-vmware-iso/packer-vm-base-7.4-x86_64.vmx nogui
2017/11/30 10:43:04 packer: 2017/11/30 10:43:04 stdout:
2017/11/30 10:43:04 packer: 2017/11/30 10:43:04 stderr: logger: socket /dev/log: Protocol wrong type for socket
2017/11/30 10:43:04 ui: ==> vmware-iso: Waiting 5s for boot...
2017/11/30 10:43:09 ui: ==> vmware-iso: Connecting to VM via VNC
2017/11/30 10:43:09 packer: 2017/11/30 10:43:09 Connected to VNC desktop: packer-vm-base-7.4-x86_64
2017/11/30 10:43:09 packer: 2017/11/30 10:43:09 Host IP for the VMware machine: 192.168.197.1
2017/11/30 10:43:09 ui: ==> vmware-iso: Typing the boot command over VNC...
2017/11/30 10:43:09 packer: 2017/11/30 10:43:09 Special code '<tab>' found, replacing with: 65289
2017/11/30 10:43:09 packer: 2017/11/30 10:43:09 Sending char ' ', code 32, shift false
2017/11/30 10:43:09 packer: 2017/11/30 10:43:09 Sending char 't', code 116, shift false
2017/11/30 10:43:10 packer: 2017/11/30 10:43:10 Sending char 'e', code 101, shift false
2017/11/30 10:43:10 packer: 2017/11/30 10:43:10 Sending char 'x', code 120, shift false
2017/11/30 10:43:10 packer: 2017/11/30 10:43:10 Sending char 't', code 116, shift false
2017/11/30 10:43:10 packer: 2017/11/30 10:43:10 Sending char ' ', code 32, shift false
2017/11/30 10:43:10 packer: 2017/11/30 10:43:10 Sending char 'k', code 107, shift false
2017/11/30 10:43:11 packer: 2017/11/30 10:43:11 Sending char 's', code 115, shift false
2017/11/30 10:43:11 packer: 2017/11/30 10:43:11 Sending char '=', code 61, shift false
2017/11/30 10:43:11 packer: 2017/11/30 10:43:11 Sending char 'h', code 104, shift false
2017/11/30 10:43:11 packer: 2017/11/30 10:43:11 Sending char 't', code 116, shift false
2017/11/30 10:43:11 packer: 2017/11/30 10:43:11 Sending char 't', code 116, shift false
2017/11/30 10:43:12 packer: 2017/11/30 10:43:12 Sending char 'p', code 112, shift false
2017/11/30 10:43:12 packer: 2017/11/30 10:43:12 Sending char ':', code 58, shift true
2017/11/30 10:43:12 packer: 2017/11/30 10:43:12 Sending char '/', code 47, shift false
2017/11/30 10:43:12 packer: 2017/11/30 10:43:12 Sending char '/', code 47, shift false
2017/11/30 10:43:12 packer: 2017/11/30 10:43:12 Sending char '1', code 49, shift false
2017/11/30 10:43:13 packer: 2017/11/30 10:43:13 Sending char '9', code 57, shift false
2017/11/30 10:43:13 packer: 2017/11/30 10:43:13 Sending char '2', code 50, shift false
2017/11/30 10:43:13 packer: 2017/11/30 10:43:13 Sending char '.', code 46, shift false
2017/11/30 10:43:13 packer: 2017/11/30 10:43:13 Sending char '1', code 49, shift false
2017/11/30 10:43:13 packer: 2017/11/30 10:43:13 Sending char '6', code 54, shift false
2017/11/30 10:43:14 packer: 2017/11/30 10:43:14 Sending char '8', code 56, shift false
2017/11/30 10:43:14 packer: 2017/11/30 10:43:14 Sending char '.', code 46, shift false
2017/11/30 10:43:14 packer: 2017/11/30 10:43:14 Sending char '1', code 49, shift false
2017/11/30 10:43:14 packer: 2017/11/30 10:43:14 Sending char '9', code 57, shift false
2017/11/30 10:43:14 packer: 2017/11/30 10:43:14 Sending char '7', code 55, shift false
2017/11/30 10:43:15 packer: 2017/11/30 10:43:15 Sending char '.', code 46, shift false
2017/11/30 10:43:15 packer: 2017/11/30 10:43:15 Sending char '1', code 49, shift false
2017/11/30 10:43:15 packer: 2017/11/30 10:43:15 Sending char ':', code 58, shift true
2017/11/30 10:43:15 packer: 2017/11/30 10:43:15 Sending char '8', code 56, shift false
2017/11/30 10:43:15 packer: 2017/11/30 10:43:15 Sending char '6', code 54, shift false
2017/11/30 10:43:16 packer: 2017/11/30 10:43:16 Sending char '0', code 48, shift false
2017/11/30 10:43:16 packer: 2017/11/30 10:43:16 Sending char '5', code 53, shift false
2017/11/30 10:43:16 packer: 2017/11/30 10:43:16 Sending char '/', code 47, shift false
2017/11/30 10:43:16 packer: 2017/11/30 10:43:16 Sending char 'k', code 107, shift false
2017/11/30 10:43:16 packer: 2017/11/30 10:43:16 Sending char 's', code 115, shift false
2017/11/30 10:43:17 packer: 2017/11/30 10:43:17 Sending char '_', code 95, shift true
2017/11/30 10:43:17 packer: 2017/11/30 10:43:17 Sending char 'b', code 98, shift false
2017/11/30 10:43:17 packer: 2017/11/30 10:43:17 Sending char 'a', code 97, shift false
2017/11/30 10:43:17 packer: 2017/11/30 10:43:17 Sending char 's', code 115, shift false
2017/11/30 10:43:17 packer: 2017/11/30 10:43:17 Sending char 'e', code 101, shift false
2017/11/30 10:43:18 packer: 2017/11/30 10:43:18 Sending char '.', code 46, shift false
2017/11/30 10:43:18 packer: 2017/11/30 10:43:18 Sending char 'c', code 99, shift false
2017/11/30 10:43:18 packer: 2017/11/30 10:43:18 Sending char 'f', code 102, shift false
2017/11/30 10:43:18 packer: 2017/11/30 10:43:18 Sending char 'g', code 103, shift false
2017/11/30 10:43:18 packer: 2017/11/30 10:43:18 Sending char ' ', code 32, shift false
2017/11/30 10:43:19 packer: 2017/11/30 10:43:19 Sending char 'n', code 110, shift false
2017/11/30 10:43:19 packer: 2017/11/30 10:43:19 Sending char 'e', code 101, shift false
2017/11/30 10:43:19 packer: 2017/11/30 10:43:19 Sending char 't', code 116, shift false
2017/11/30 10:43:19 packer: 2017/11/30 10:43:19 Sending char '.', code 46, shift false
2017/11/30 10:43:19 packer: 2017/11/30 10:43:19 Sending char 'i', code 105, shift false
2017/11/30 10:43:20 packer: 2017/11/30 10:43:20 Sending char 'f', code 102, shift false
2017/11/30 10:43:20 packer: 2017/11/30 10:43:20 Sending char 'n', code 110, shift false
2017/11/30 10:43:20 packer: 2017/11/30 10:43:20 Sending char 'a', code 97, shift false
2017/11/30 10:43:20 packer: 2017/11/30 10:43:20 Sending char 'm', code 109, shift false
2017/11/30 10:43:20 packer: 2017/11/30 10:43:20 Sending char 'e', code 101, shift false
2017/11/30 10:43:21 packer: 2017/11/30 10:43:21 Sending char 's', code 115, shift false
2017/11/30 10:43:21 packer: 2017/11/30 10:43:21 Sending char '=', code 61, shift false
2017/11/30 10:43:21 packer: 2017/11/30 10:43:21 Sending char '0', code 48, shift false
2017/11/30 10:43:21 packer: 2017/11/30 10:43:21 Special code '<enter>' found, replacing with: 65293
2017/11/30 10:43:21 packer: 2017/11/30 10:43:21 Special code '<wait>' found, sleeping one second
2017/11/30 10:43:22 packer: 2017/11/30 10:43:22 [INFO] Waiting for SSH, up to timeout: 2h46m40s
2017/11/30 10:43:22 ui: ==> vmware-iso: Waiting for SSH to become available...
2017/11/30 10:43:22 packer: 2017/11/30 10:43:22 Lookup up IP information...
2017/11/30 10:43:22 packer: 2017/11/30 10:43:22 DHCP leases path: /etc/vmware/vmnet8/dhcpd/dhcpd.leases
2017/11/30 10:43:22 packer: 2017/11/30 10:43:22 Detected IP: 192.168.197.128
2017/11/30 10:43:25 packer: 2017/11/30 10:43:25 [DEBUG] TCP connection to SSH ip/port failed: dial tcp 192.168.197.128:22: getsockopt: no route to host
2017/11/30 10:43:30 packer: 2017/11/30 10:43:30 Lookup up IP information...
2017/11/30 10:43:30 packer: 2017/11/30 10:43:30 DHCP leases path: /etc/vmware/vmnet8/dhcpd/dhcpd.leases
2017/11/30 10:43:30 packer: 2017/11/30 10:43:30 Detected IP: 192.168.197.128
2017/11/30 10:43:32 packer: 2017/11/30 10:43:32 [DEBUG] TCP connection to SSH ip/port failed: dial tcp 192.168.197.128:22: getsockopt: connection refused
2017/11/30 10:43:37 packer: 2017/11/30 10:43:37 Lookup up IP information...
2017/11/30 10:43:37 packer: 2017/11/30 10:43:37 DHCP leases path: /etc/vmware/vmnet8/dhcpd/dhcpd.leases
2017/11/30 10:43:37 packer: 2017/11/30 10:43:37 Detected IP: 192.168.197.128
2017/11/30 10:43:37 packer: 2017/11/30 10:43:37 [DEBUG] TCP connection to SSH ip/port failed: dial tcp 192.168.197.128:22: getsockopt: connection refused
2017/11/30 10:43:42 packer: 2017/11/30 10:43:42 Lookup up IP information...
2017/11/30 10:43:42 packer: 2017/11/30 10:43:42 DHCP leases path: /etc/vmware/vmnet8/dhcpd/dhcpd.leases
2017/11/30 10:43:42 packer: 2017/11/30 10:43:42 Detected IP: 192.168.197.128
2017/11/30 10:43:42 packer: 2017/11/30 10:43:42 [DEBUG] TCP connection to SSH ip/port failed: dial tcp 192.168.197.128:22: getsockopt: connection refused
2017/11/30 10:43:47 packer: 2017/11/30 10:43:47 Lookup up IP information...
2017/11/30 10:43:47 packer: 2017/11/30 10:43:47 DHCP leases path: /etc/vmware/vmnet8/dhcpd/dhcpd.leases
2017/11/30 10:43:47 packer: 2017/11/30 10:43:47 Detected IP: 192.168.197.128
2017/11/30 10:43:47 packer: 2017/11/30 10:43:47 [DEBUG] TCP connection to SSH ip/port failed: dial tcp 192.168.197.128:22: getsockopt: connection refused
2017/11/30 10:43:52 packer: 2017/11/30 10:43:52 Lookup up IP information...
2017/11/30 10:43:52 packer: 2017/11/30 10:43:52 DHCP leases path: /etc/vmware/vmnet8/dhcpd/dhcpd.leases
2017/11/30 10:43:52 packer: 2017/11/30 10:43:52 Detected IP: 192.168.197.128
2017/11/30 10:43:52 packer: 2017/11/30 10:43:52 [DEBUG] TCP connection to SSH ip/port failed: dial tcp 192.168.197.128:22: getsockopt: connection refused
2017/11/30 10:43:57 packer: 2017/11/30 10:43:57 Lookup up IP information...
2017/11/30 10:43:57 packer: 2017/11/30 10:43:57 DHCP leases path: /etc/vmware/vmnet8/dhcpd/dhcpd.leases
2017/11/30 10:43:57 packer: 2017/11/30 10:43:57 Detected IP: 192.168.197.128
2017/11/30 10:43:57 packer: 2017/11/30 10:43:57 [DEBUG] TCP connection to SSH ip/port failed: dial tcp 192.168.197.128:22: getsockopt: connection refused
2017/11/30 10:44:02 packer: 2017/11/30 10:44:02 Lookup up IP information...
2017/11/30 10:44:02 packer: 2017/11/30 10:44:02 DHCP leases path: /etc/vmware/vmnet8/dhcpd/dhcpd.leases
2017/11/30 10:44:02 packer: 2017/11/30 10:44:02 Detected IP: 192.168.197.128
2017/11/30 10:44:02 packer: 2017/11/30 10:44:02 [DEBUG] TCP connection to SSH ip/port failed: dial tcp 192.168.197.128:22: getsockopt: connection refused
2017/11/30 10:44:07 packer: 2017/11/30 10:44:07 Lookup up IP information...
2017/11/30 10:44:07 packer: 2017/11/30 10:44:07 DHCP leases path: /etc/vmware/vmnet8/dhcpd/dhcpd.leases
2017/11/30 10:44:07 packer: 2017/11/30 10:44:07 Detected IP: 192.168.197.128
2017/11/30 10:44:07 packer: 2017/11/30 10:44:07 [DEBUG] TCP connection to SSH ip/port failed: dial tcp 192.168.197.128:22: getsockopt: connection refused
2017/11/30 10:44:12 packer: 2017/11/30 10:44:12 Lookup up IP information...
2017/11/30 10:44:12 packer: 2017/11/30 10:44:12 DHCP leases path: /etc/vmware/vmnet8/dhcpd/dhcpd.leases
2017/11/30 10:44:12 packer: 2017/11/30 10:44:12 Detected IP: 192.168.197.128
2017/11/30 10:44:12 packer: 2017/11/30 10:44:12 [DEBUG] TCP connection to SSH ip/port failed: dial tcp 192.168.197.128:22: getsockopt: connection refused
2017/11/30 10:44:17 packer: 2017/11/30 10:44:17 Lookup up IP information...
2017/11/30 10:44:17 packer: 2017/11/30 10:44:17 DHCP leases path: /etc/vmware/vmnet8/dhcpd/dhcpd.leases
2017/11/30 10:44:17 packer: 2017/11/30 10:44:17 Detected IP: 192.168.197.128
2017/11/30 10:44:17 packer: 2017/11/30 10:44:17 [DEBUG] TCP connection to SSH ip/port failed: dial tcp 192.168.197.128:22: getsockopt: connection refused
2017/11/30 10:44:22 packer: 2017/11/30 10:44:22 Lookup up IP information...
2017/11/30 10:44:22 packer: 2017/11/30 10:44:22 DHCP leases path: /etc/vmware/vmnet8/dhcpd/dhcpd.leases
2017/11/30 10:44:22 packer: 2017/11/30 10:44:22 Detected IP: 192.168.197.128
2017/11/30 10:44:22 packer: 2017/11/30 10:44:22 [DEBUG] TCP connection to SSH ip/port failed: dial tcp 192.168.197.128:22: getsockopt: connection refused
2017/11/30 10:44:27 packer: 2017/11/30 10:44:27 Lookup up IP information...
2017/11/30 10:44:27 packer: 2017/11/30 10:44:27 DHCP leases path: /etc/vmware/vmnet8/dhcpd/dhcpd.leases
2017/11/30 10:44:27 packer: 2017/11/30 10:44:27 Detected IP: 192.168.197.128
2017/11/30 10:44:27 packer: 2017/11/30 10:44:27 [DEBUG] TCP connection to SSH ip/port failed: dial tcp 192.168.197.128:22: getsockopt: connection refused
2017/11/30 10:44:32 packer: 2017/11/30 10:44:32 Lookup up IP information...
2017/11/30 10:44:32 packer: 2017/11/30 10:44:32 DHCP leases path: /etc/vmware/vmnet8/dhcpd/dhcpd.leases
2017/11/30 10:44:32 packer: 2017/11/30 10:44:32 Detected IP: 192.168.197.128
2017/11/30 10:44:32 packer: 2017/11/30 10:44:32 [DEBUG] TCP connection to SSH ip/port failed: dial tcp 192.168.197.128:22: getsockopt: connection refused
2017/11/30 10:44:37 packer: 2017/11/30 10:44:37 Lookup up IP information...
2017/11/30 10:44:37 packer: 2017/11/30 10:44:37 DHCP leases path: /etc/vmware/vmnet8/dhcpd/dhcpd.leases
2017/11/30 10:44:37 packer: 2017/11/30 10:44:37 Detected IP: 192.168.197.128
2017/11/30 10:44:37 packer: 2017/11/30 10:44:37 [DEBUG] TCP connection to SSH ip/port failed: dial tcp 192.168.197.128:22: getsockopt: connection refused
2017/11/30 10:44:42 packer: 2017/11/30 10:44:42 Lookup up IP information...
2017/11/30 10:44:42 packer: 2017/11/30 10:44:42 DHCP leases path: /etc/vmware/vmnet8/dhcpd/dhcpd.leases
2017/11/30 10:44:42 packer: 2017/11/30 10:44:42 Detected IP: 192.168.197.128
2017/11/30 10:44:42 packer: 2017/11/30 10:44:42 [DEBUG] TCP connection to SSH ip/port failed: dial tcp 192.168.197.128:22: getsockopt: connection refused
2017/11/30 10:44:47 packer: 2017/11/30 10:44:47 Lookup up IP information...
2017/11/30 10:44:47 packer: 2017/11/30 10:44:47 DHCP leases path: /etc/vmware/vmnet8/dhcpd/dhcpd.leases
2017/11/30 10:44:47 packer: 2017/11/30 10:44:47 Detected IP: 192.168.197.128
2017/11/30 10:44:47 packer: 2017/11/30 10:44:47 [DEBUG] TCP connection to SSH ip/port failed: dial tcp 192.168.197.128:22: getsockopt: connection refused
2017/11/30 10:44:52 packer: 2017/11/30 10:44:52 Lookup up IP information...
2017/11/30 10:44:52 packer: 2017/11/30 10:44:52 DHCP leases path: /etc/vmware/vmnet8/dhcpd/dhcpd.leases
2017/11/30 10:44:52 packer: 2017/11/30 10:44:52 Detected IP: 192.168.197.128
2017/11/30 10:44:52 packer: 2017/11/30 10:44:52 [DEBUG] TCP connection to SSH ip/port failed: dial tcp 192.168.197.128:22: getsockopt: connection refused
2017/11/30 10:44:57 packer: 2017/11/30 10:44:57 Lookup up IP information...
2017/11/30 10:44:57 packer: 2017/11/30 10:44:57 DHCP leases path: /etc/vmware/vmnet8/dhcpd/dhcpd.leases
2017/11/30 10:44:57 packer: 2017/11/30 10:44:57 Detected IP: 192.168.197.128
2017/11/30 10:44:57 packer: 2017/11/30 10:44:57 [DEBUG] TCP connection to SSH ip/port failed: dial tcp 192.168.197.128:22: getsockopt: connection refused
2017/11/30 10:45:02 packer: 2017/11/30 10:45:02 Lookup up IP information...
2017/11/30 10:45:02 packer: 2017/11/30 10:45:02 DHCP leases path: /etc/vmware/vmnet8/dhcpd/dhcpd.leases
2017/11/30 10:45:02 packer: 2017/11/30 10:45:02 Detected IP: 192.168.197.128
2017/11/30 10:45:02 packer: 2017/11/30 10:45:02 [DEBUG] TCP connection to SSH ip/port failed: dial tcp 192.168.197.128:22: getsockopt: connection refused
2017/11/30 10:45:07 packer: 2017/11/30 10:45:07 Lookup up IP information...
2017/11/30 10:45:07 packer: 2017/11/30 10:45:07 DHCP leases path: /etc/vmware/vmnet8/dhcpd/dhcpd.leases
2017/11/30 10:45:07 packer: 2017/11/30 10:45:07 Detected IP: 192.168.197.128
2017/11/30 10:45:07 packer: 2017/11/30 10:45:07 [DEBUG] TCP connection to SSH ip/port failed: dial tcp 192.168.197.128:22: getsockopt: connection refused
2017/11/30 10:45:12 packer: 2017/11/30 10:45:12 Lookup up IP information...
2017/11/30 10:45:12 packer: 2017/11/30 10:45:12 DHCP leases path: /etc/vmware/vmnet8/dhcpd/dhcpd.leases
2017/11/30 10:45:12 packer: 2017/11/30 10:45:12 Detected IP: 192.168.197.128
2017/11/30 10:45:12 packer: 2017/11/30 10:45:12 [DEBUG] TCP connection to SSH ip/port failed: dial tcp 192.168.197.128:22: getsockopt: connection refused
2017/11/30 10:45:17 packer: 2017/11/30 10:45:17 Lookup up IP information...
2017/11/30 10:45:17 packer: 2017/11/30 10:45:17 DHCP leases path: /etc/vmware/vmnet8/dhcpd/dhcpd.leases
2017/11/30 10:45:17 packer: 2017/11/30 10:45:17 Detected IP: 192.168.197.128
2017/11/30 10:45:17 packer: 2017/11/30 10:45:17 [DEBUG] TCP connection to SSH ip/port failed: dial tcp 192.168.197.128:22: getsockopt: connection refused
2017/11/30 10:45:22 packer: 2017/11/30 10:45:22 Lookup up IP information...
2017/11/30 10:45:22 packer: 2017/11/30 10:45:22 DHCP leases path: /etc/vmware/vmnet8/dhcpd/dhcpd.leases
2017/11/30 10:45:22 packer: 2017/11/30 10:45:22 Detected IP: 192.168.197.128
2017/11/30 10:45:22 packer: 2017/11/30 10:45:22 [DEBUG] TCP connection to SSH ip/port failed: dial tcp 192.168.197.128:22: getsockopt: connection refused
2017/11/30 10:45:27 packer: 2017/11/30 10:45:27 Lookup up IP information...
2017/11/30 10:45:27 packer: 2017/11/30 10:45:27 DHCP leases path: /etc/vmware/vmnet8/dhcpd/dhcpd.leases
2017/11/30 10:45:27 packer: 2017/11/30 10:45:27 Detected IP: 192.168.197.128
2017/11/30 10:45:27 packer: 2017/11/30 10:45:27 [DEBUG] TCP connection to SSH ip/port failed: dial tcp 192.168.197.128:22: getsockopt: connection refused
2017/11/30 10:45:32 packer: 2017/11/30 10:45:32 Lookup up IP information...
2017/11/30 10:45:32 packer: 2017/11/30 10:45:32 DHCP leases path: /etc/vmware/vmnet8/dhcpd/dhcpd.leases
2017/11/30 10:45:32 packer: 2017/11/30 10:45:32 Detected IP: 192.168.197.128
2017/11/30 10:45:32 packer: 2017/11/30 10:45:32 [DEBUG] TCP connection to SSH ip/port failed: dial tcp 192.168.197.128:22: getsockopt: connection refused
2017/11/30 10:45:37 packer: 2017/11/30 10:45:37 Lookup up IP information...
2017/11/30 10:45:37 packer: 2017/11/30 10:45:37 DHCP leases path: /etc/vmware/vmnet8/dhcpd/dhcpd.leases
2017/11/30 10:45:37 packer: 2017/11/30 10:45:37 Detected IP: 192.168.197.128
2017/11/30 10:45:37 packer: 2017/11/30 10:45:37 [DEBUG] TCP connection to SSH ip/port failed: dial tcp 192.168.197.128:22: getsockopt: connection refused
2017/11/30 10:45:42 packer: 2017/11/30 10:45:42 Lookup up IP information...
2017/11/30 10:45:42 packer: 2017/11/30 10:45:42 DHCP leases path: /etc/vmware/vmnet8/dhcpd/dhcpd.leases
2017/11/30 10:45:42 packer: 2017/11/30 10:45:42 Detected IP: 192.168.197.128
2017/11/30 10:45:42 packer: 2017/11/30 10:45:42 [DEBUG] TCP connection to SSH ip/port failed: dial tcp 192.168.197.128:22: getsockopt: connection refused
2017/11/30 10:45:47 packer: 2017/11/30 10:45:47 Lookup up IP information...
2017/11/30 10:45:47 packer: 2017/11/30 10:45:47 DHCP leases path: /etc/vmware/vmnet8/dhcpd/dhcpd.leases
2017/11/30 10:45:47 packer: 2017/11/30 10:45:47 Detected IP: 192.168.197.128
2017/11/30 10:45:47 packer: 2017/11/30 10:45:47 [DEBUG] TCP connection to SSH ip/port failed: dial tcp 192.168.197.128:22: getsockopt: connection refused
2017/11/30 10:45:52 packer: 2017/11/30 10:45:52 Lookup up IP information...
2017/11/30 10:45:52 packer: 2017/11/30 10:45:52 DHCP leases path: /etc/vmware/vmnet8/dhcpd/dhcpd.leases
2017/11/30 10:45:52 packer: 2017/11/30 10:45:52 Detected IP: 192.168.197.128
2017/11/30 10:45:52 packer: 2017/11/30 10:45:52 [DEBUG] TCP connection to SSH ip/port failed: dial tcp 192.168.197.128:22: getsockopt: connection refused
2017/11/30 10:45:57 packer: 2017/11/30 10:45:57 Lookup up IP information...
2017/11/30 10:45:57 packer: 2017/11/30 10:45:57 DHCP leases path: /etc/vmware/vmnet8/dhcpd/dhcpd.leases
2017/11/30 10:45:57 packer: 2017/11/30 10:45:57 Detected IP: 192.168.197.128
2017/11/30 10:45:57 packer: 2017/11/30 10:45:57 [DEBUG] TCP connection to SSH ip/port failed: dial tcp 192.168.197.128:22: getsockopt: connection refused
2017/11/30 10:46:02 packer: 2017/11/30 10:46:02 Lookup up IP information...
2017/11/30 10:46:02 packer: 2017/11/30 10:46:02 DHCP leases path: /etc/vmware/vmnet8/dhcpd/dhcpd.leases
2017/11/30 10:46:02 packer: 2017/11/30 10:46:02 Detected IP: 192.168.197.128
2017/11/30 10:46:02 packer: 2017/11/30 10:46:02 [DEBUG] TCP connection to SSH ip/port failed: dial tcp 192.168.197.128:22: getsockopt: connection refused
2017/11/30 10:46:07 packer: 2017/11/30 10:46:07 Lookup up IP information...
2017/11/30 10:46:07 packer: 2017/11/30 10:46:07 DHCP leases path: /etc/vmware/vmnet8/dhcpd/dhcpd.leases
2017/11/30 10:46:07 packer: 2017/11/30 10:46:07 Detected IP: 192.168.197.128
2017/11/30 10:46:07 packer: 2017/11/30 10:46:07 [DEBUG] TCP connection to SSH ip/port failed: dial tcp 192.168.197.128:22: getsockopt: connection refused
2017/11/30 10:46:12 packer: 2017/11/30 10:46:12 Lookup up IP information...
2017/11/30 10:46:12 packer: 2017/11/30 10:46:12 DHCP leases path: /etc/vmware/vmnet8/dhcpd/dhcpd.leases
2017/11/30 10:46:12 packer: 2017/11/30 10:46:12 Detected IP: 192.168.197.128
2017/11/30 10:46:12 packer: 2017/11/30 10:46:12 [DEBUG] TCP connection to SSH ip/port failed: dial tcp 192.168.197.128:22: getsockopt: connection refused
2017/11/30 10:46:17 packer: 2017/11/30 10:46:17 Lookup up IP information...
2017/11/30 10:46:17 packer: 2017/11/30 10:46:17 DHCP leases path: /etc/vmware/vmnet8/dhcpd/dhcpd.leases
2017/11/30 10:46:17 packer: 2017/11/30 10:46:17 Detected IP: 192.168.197.128
2017/11/30 10:46:17 packer: 2017/11/30 10:46:17 [DEBUG] TCP connection to SSH ip/port failed: dial tcp 192.168.197.128:22: getsockopt: connection refused
2017/11/30 10:46:22 packer: 2017/11/30 10:46:22 Lookup up IP information...
2017/11/30 10:46:22 packer: 2017/11/30 10:46:22 DHCP leases path: /etc/vmware/vmnet8/dhcpd/dhcpd.leases
2017/11/30 10:46:22 packer: 2017/11/30 10:46:22 Detected IP: 192.168.197.128
2017/11/30 10:46:22 packer: 2017/11/30 10:46:22 [DEBUG] TCP connection to SSH ip/port failed: dial tcp 192.168.197.128:22: getsockopt: connection refused
2017/11/30 10:46:27 packer: 2017/11/30 10:46:27 Lookup up IP information...
2017/11/30 10:46:27 packer: 2017/11/30 10:46:27 DHCP leases path: /etc/vmware/vmnet8/dhcpd/dhcpd.leases
2017/11/30 10:46:27 packer: 2017/11/30 10:46:27 Detected IP: 192.168.197.128
2017/11/30 10:46:27 packer: 2017/11/30 10:46:27 [DEBUG] TCP connection to SSH ip/port failed: dial tcp 192.168.197.128:22: getsockopt: connection refused
2017/11/30 10:46:32 packer: 2017/11/30 10:46:32 Lookup up IP information...
2017/11/30 10:46:32 packer: 2017/11/30 10:46:32 DHCP leases path: /etc/vmware/vmnet8/dhcpd/dhcpd.leases
2017/11/30 10:46:32 packer: 2017/11/30 10:46:32 Detected IP: 192.168.197.128
2017/11/30 10:46:32 packer: 2017/11/30 10:46:32 [DEBUG] TCP connection to SSH ip/port failed: dial tcp 192.168.197.128:22: getsockopt: connection refused
2017/11/30 10:46:37 packer: 2017/11/30 10:46:37 Lookup up IP information...
2017/11/30 10:46:37 packer: 2017/11/30 10:46:37 DHCP leases path: /etc/vmware/vmnet8/dhcpd/dhcpd.leases
2017/11/30 10:46:37 packer: 2017/11/30 10:46:37 Detected IP: 192.168.197.128
2017/11/30 10:46:37 packer: 2017/11/30 10:46:37 [DEBUG] TCP connection to SSH ip/port failed: dial tcp 192.168.197.128:22: getsockopt: connection refused
2017/11/30 10:46:42 packer: 2017/11/30 10:46:42 Lookup up IP information...
2017/11/30 10:46:42 packer: 2017/11/30 10:46:42 DHCP leases path: /etc/vmware/vmnet8/dhcpd/dhcpd.leases
2017/11/30 10:46:42 packer: 2017/11/30 10:46:42 Detected IP: 192.168.197.128
2017/11/30 10:46:42 packer: 2017/11/30 10:46:42 [DEBUG] TCP connection to SSH ip/port failed: dial tcp 192.168.197.128:22: getsockopt: connection refused
2017/11/30 10:46:47 packer: 2017/11/30 10:46:47 Lookup up IP information...
2017/11/30 10:46:47 packer: 2017/11/30 10:46:47 DHCP leases path: /etc/vmware/vmnet8/dhcpd/dhcpd.leases
2017/11/30 10:46:47 packer: 2017/11/30 10:46:47 Detected IP: 192.168.197.128
2017/11/30 10:46:47 packer: 2017/11/30 10:46:47 [DEBUG] TCP connection to SSH ip/port failed: dial tcp 192.168.197.128:22: getsockopt: connection refused
2017/11/30 10:46:52 packer: 2017/11/30 10:46:52 Lookup up IP information...
2017/11/30 10:46:52 packer: 2017/11/30 10:46:52 DHCP leases path: /etc/vmware/vmnet8/dhcpd/dhcpd.leases
2017/11/30 10:46:52 packer: 2017/11/30 10:46:52 Detected IP: 192.168.197.128
2017/11/30 10:46:52 packer: 2017/11/30 10:46:52 [DEBUG] TCP connection to SSH ip/port failed: dial tcp 192.168.197.128:22: getsockopt: connection refused
2017/11/30 10:46:57 packer: 2017/11/30 10:46:57 Lookup up IP information...
2017/11/30 10:46:57 packer: 2017/11/30 10:46:57 DHCP leases path: /etc/vmware/vmnet8/dhcpd/dhcpd.leases
2017/11/30 10:46:57 packer: 2017/11/30 10:46:57 Detected IP: 192.168.197.128
2017/11/30 10:46:57 packer: 2017/11/30 10:46:57 [DEBUG] TCP connection to SSH ip/port failed: dial tcp 192.168.197.128:22: getsockopt: connection refused
2017/11/30 10:47:02 packer: 2017/11/30 10:47:02 Lookup up IP information...
2017/11/30 10:47:02 packer: 2017/11/30 10:47:02 DHCP leases path: /etc/vmware/vmnet8/dhcpd/dhcpd.leases
2017/11/30 10:47:02 packer: 2017/11/30 10:47:02 Detected IP: 192.168.197.128
2017/11/30 10:47:02 packer: 2017/11/30 10:47:02 [DEBUG] TCP connection to SSH ip/port failed: dial tcp 192.168.197.128:22: getsockopt: connection refused
2017/11/30 10:47:07 packer: 2017/11/30 10:47:07 Lookup up IP information...
2017/11/30 10:47:07 packer: 2017/11/30 10:47:07 DHCP leases path: /etc/vmware/vmnet8/dhcpd/dhcpd.leases
2017/11/30 10:47:07 packer: 2017/11/30 10:47:07 Detected IP: 192.168.197.128
2017/11/30 10:47:07 packer: 2017/11/30 10:47:07 [DEBUG] TCP connection to SSH ip/port failed: dial tcp 192.168.197.128:22: getsockopt: connection refused
2017/11/30 10:47:12 packer: 2017/11/30 10:47:12 Lookup up IP information...
2017/11/30 10:47:12 packer: 2017/11/30 10:47:12 DHCP leases path: /etc/vmware/vmnet8/dhcpd/dhcpd.leases
2017/11/30 10:47:12 packer: 2017/11/30 10:47:12 Detected IP: 192.168.197.128
2017/11/30 10:47:12 packer: 2017/11/30 10:47:12 [DEBUG] TCP connection to SSH ip/port failed: dial tcp 192.168.197.128:22: getsockopt: connection refused
2017/11/30 10:47:17 packer: 2017/11/30 10:47:17 Lookup up IP information...
2017/11/30 10:47:17 packer: 2017/11/30 10:47:17 DHCP leases path: /etc/vmware/vmnet8/dhcpd/dhcpd.leases
2017/11/30 10:47:17 packer: 2017/11/30 10:47:17 Detected IP: 192.168.197.128
2017/11/30 10:47:17 packer: 2017/11/30 10:47:17 [DEBUG] TCP connection to SSH ip/port failed: dial tcp 192.168.197.128:22: getsockopt: connection refused
2017/11/30 10:47:22 packer: 2017/11/30 10:47:22 Lookup up IP information...
2017/11/30 10:47:22 packer: 2017/11/30 10:47:22 DHCP leases path: /etc/vmware/vmnet8/dhcpd/dhcpd.leases
2017/11/30 10:47:22 packer: 2017/11/30 10:47:22 Detected IP: 192.168.197.128
2017/11/30 10:47:22 packer: 2017/11/30 10:47:22 [DEBUG] TCP connection to SSH ip/port failed: dial tcp 192.168.197.128:22: getsockopt: connection refused
2017/11/30 10:47:27 packer: 2017/11/30 10:47:27 Lookup up IP information...
2017/11/30 10:47:27 packer: 2017/11/30 10:47:27 DHCP leases path: /etc/vmware/vmnet8/dhcpd/dhcpd.leases
2017/11/30 10:47:27 packer: 2017/11/30 10:47:27 Detected IP: 192.168.197.128
2017/11/30 10:47:27 packer: 2017/11/30 10:47:27 [DEBUG] TCP connection to SSH ip/port failed: dial tcp 192.168.197.128:22: getsockopt: connection refused
2017/11/30 10:47:32 packer: 2017/11/30 10:47:32 Lookup up IP information...
2017/11/30 10:47:32 packer: 2017/11/30 10:47:32 DHCP leases path: /etc/vmware/vmnet8/dhcpd/dhcpd.leases
2017/11/30 10:47:32 packer: 2017/11/30 10:47:32 Detected IP: 192.168.197.128
2017/11/30 10:47:32 packer: 2017/11/30 10:47:32 [DEBUG] TCP connection to SSH ip/port failed: dial tcp 192.168.197.128:22: getsockopt: connection refused
2017/11/30 10:47:37 packer: 2017/11/30 10:47:37 Lookup up IP information...
2017/11/30 10:47:37 packer: 2017/11/30 10:47:37 DHCP leases path: /etc/vmware/vmnet8/dhcpd/dhcpd.leases
2017/11/30 10:47:37 packer: 2017/11/30 10:47:37 Detected IP: 192.168.197.128
2017/11/30 10:47:37 packer: 2017/11/30 10:47:37 [DEBUG] TCP connection to SSH ip/port failed: dial tcp 192.168.197.128:22: getsockopt: connection refused
2017/11/30 10:47:42 packer: 2017/11/30 10:47:42 Lookup up IP information...
2017/11/30 10:47:42 packer: 2017/11/30 10:47:42 DHCP leases path: /etc/vmware/vmnet8/dhcpd/dhcpd.leases
2017/11/30 10:47:42 packer: 2017/11/30 10:47:42 Detected IP: 192.168.197.128
2017/11/30 10:47:42 packer: 2017/11/30 10:47:42 [DEBUG] TCP connection to SSH ip/port failed: dial tcp 192.168.197.128:22: getsockopt: connection refused
2017/11/30 10:47:47 packer: 2017/11/30 10:47:47 Lookup up IP information...
2017/11/30 10:47:47 packer: 2017/11/30 10:47:47 DHCP leases path: /etc/vmware/vmnet8/dhcpd/dhcpd.leases
2017/11/30 10:47:47 packer: 2017/11/30 10:47:47 Detected IP: 192.168.197.128
2017/11/30 10:47:47 packer: 2017/11/30 10:47:47 [DEBUG] TCP connection to SSH ip/port failed: dial tcp 192.168.197.128:22: getsockopt: connection refused
2017/11/30 10:47:52 packer: 2017/11/30 10:47:52 Lookup up IP information...
2017/11/30 10:47:52 packer: 2017/11/30 10:47:52 DHCP leases path: /etc/vmware/vmnet8/dhcpd/dhcpd.leases
2017/11/30 10:47:52 packer: 2017/11/30 10:47:52 Detected IP: 192.168.197.128
2017/11/30 10:47:52 packer: 2017/11/30 10:47:52 [DEBUG] TCP connection to SSH ip/port failed: dial tcp 192.168.197.128:22: getsockopt: connection refused
2017/11/30 10:47:57 packer: 2017/11/30 10:47:57 Lookup up IP information...
2017/11/30 10:47:57 packer: 2017/11/30 10:47:57 DHCP leases path: /etc/vmware/vmnet8/dhcpd/dhcpd.leases
2017/11/30 10:47:57 packer: 2017/11/30 10:47:57 Detected IP: 192.168.197.128
2017/11/30 10:47:57 packer: 2017/11/30 10:47:57 [DEBUG] TCP connection to SSH ip/port failed: dial tcp 192.168.197.128:22: getsockopt: connection refused
2017/11/30 10:48:02 packer: 2017/11/30 10:48:02 Lookup up IP information...
2017/11/30 10:48:02 packer: 2017/11/30 10:48:02 DHCP leases path: /etc/vmware/vmnet8/dhcpd/dhcpd.leases
2017/11/30 10:48:02 packer: 2017/11/30 10:48:02 Detected IP: 192.168.197.128
2017/11/30 10:48:02 packer: 2017/11/30 10:48:02 [DEBUG] TCP connection to SSH ip/port failed: dial tcp 192.168.197.128:22: getsockopt: connection refused
2017/11/30 10:48:07 packer: 2017/11/30 10:48:07 Lookup up IP information...
2017/11/30 10:48:07 packer: 2017/11/30 10:48:07 DHCP leases path: /etc/vmware/vmnet8/dhcpd/dhcpd.leases
2017/11/30 10:48:07 packer: 2017/11/30 10:48:07 Detected IP: 192.168.197.128
2017/11/30 10:48:07 packer: 2017/11/30 10:48:07 [DEBUG] TCP connection to SSH ip/port failed: dial tcp 192.168.197.128:22: getsockopt: connection refused
2017/11/30 10:48:12 packer: 2017/11/30 10:48:12 Lookup up IP information...
2017/11/30 10:48:12 packer: 2017/11/30 10:48:12 DHCP leases path: /etc/vmware/vmnet8/dhcpd/dhcpd.leases
2017/11/30 10:48:12 packer: 2017/11/30 10:48:12 Detected IP: 192.168.197.128
2017/11/30 10:48:12 packer: 2017/11/30 10:48:12 [DEBUG] TCP connection to SSH ip/port failed: dial tcp 192.168.197.128:22: getsockopt: connection refused
2017/11/30 10:48:17 packer: 2017/11/30 10:48:17 Lookup up IP information...
2017/11/30 10:48:17 packer: 2017/11/30 10:48:17 DHCP leases path: /etc/vmware/vmnet8/dhcpd/dhcpd.leases
2017/11/30 10:48:17 packer: 2017/11/30 10:48:17 Detected IP: 192.168.197.128
2017/11/30 10:48:17 packer: 2017/11/30 10:48:17 [DEBUG] TCP connection to SSH ip/port failed: dial tcp 192.168.197.128:22: getsockopt: connection refused
2017/11/30 10:48:22 packer: 2017/11/30 10:48:22 Lookup up IP information...
2017/11/30 10:48:22 packer: 2017/11/30 10:48:22 DHCP leases path: /etc/vmware/vmnet8/dhcpd/dhcpd.leases
2017/11/30 10:48:22 packer: 2017/11/30 10:48:22 Detected IP: 192.168.197.128
2017/11/30 10:48:22 packer: 2017/11/30 10:48:22 [DEBUG] TCP connection to SSH ip/port failed: dial tcp 192.168.197.128:22: getsockopt: connection refused
2017/11/30 10:48:27 packer: 2017/11/30 10:48:27 Lookup up IP information...
2017/11/30 10:48:27 packer: 2017/11/30 10:48:27 DHCP leases path: /etc/vmware/vmnet8/dhcpd/dhcpd.leases
2017/11/30 10:48:27 packer: 2017/11/30 10:48:27 Detected IP: 192.168.197.128
2017/11/30 10:48:27 packer: 2017/11/30 10:48:27 [DEBUG] TCP connection to SSH ip/port failed: dial tcp 192.168.197.128:22: getsockopt: connection refused
2017/11/30 10:48:32 packer: 2017/11/30 10:48:32 Lookup up IP information...
2017/11/30 10:48:32 packer: 2017/11/30 10:48:32 DHCP leases path: /etc/vmware/vmnet8/dhcpd/dhcpd.leases
2017/11/30 10:48:32 packer: 2017/11/30 10:48:32 Detected IP: 192.168.197.128
2017/11/30 10:48:32 packer: 2017/11/30 10:48:32 [DEBUG] TCP connection to SSH ip/port failed: dial tcp 192.168.197.128:22: getsockopt: connection refused
2017/11/30 10:48:37 packer: 2017/11/30 10:48:37 Lookup up IP information...
2017/11/30 10:48:37 packer: 2017/11/30 10:48:37 DHCP leases path: /etc/vmware/vmnet8/dhcpd/dhcpd.leases
2017/11/30 10:48:37 packer: 2017/11/30 10:48:37 Detected IP: 192.168.197.128
2017/11/30 10:48:37 packer: 2017/11/30 10:48:37 [DEBUG] TCP connection to SSH ip/port failed: dial tcp 192.168.197.128:22: getsockopt: connection refused
2017/11/30 10:48:42 packer: 2017/11/30 10:48:42 Lookup up IP information...
2017/11/30 10:48:42 packer: 2017/11/30 10:48:42 DHCP leases path: /etc/vmware/vmnet8/dhcpd/dhcpd.leases
2017/11/30 10:48:42 packer: 2017/11/30 10:48:42 Detected IP: 192.168.197.128
2017/11/30 10:48:42 packer: 2017/11/30 10:48:42 [DEBUG] TCP connection to SSH ip/port failed: dial tcp 192.168.197.128:22: getsockopt: connection refused
2017/11/30 10:48:47 packer: 2017/11/30 10:48:47 Lookup up IP information...
2017/11/30 10:48:47 packer: 2017/11/30 10:48:47 DHCP leases path: /etc/vmware/vmnet8/dhcpd/dhcpd.leases
2017/11/30 10:48:47 packer: 2017/11/30 10:48:47 Detected IP: 192.168.197.128
2017/11/30 10:48:47 packer: 2017/11/30 10:48:47 [DEBUG] TCP connection to SSH ip/port failed: dial tcp 192.168.197.128:22: getsockopt: connection refused
2017/11/30 10:48:52 packer: 2017/11/30 10:48:52 Lookup up IP information...
2017/11/30 10:48:52 packer: 2017/11/30 10:48:52 DHCP leases path: /etc/vmware/vmnet8/dhcpd/dhcpd.leases
2017/11/30 10:48:52 packer: 2017/11/30 10:48:52 Detected IP: 192.168.197.128
2017/11/30 10:48:52 packer: 2017/11/30 10:48:52 [DEBUG] TCP connection to SSH ip/port failed: dial tcp 192.168.197.128:22: getsockopt: connection refused
2017/11/30 10:48:57 packer: 2017/11/30 10:48:57 Lookup up IP information...
2017/11/30 10:48:57 packer: 2017/11/30 10:48:57 DHCP leases path: /etc/vmware/vmnet8/dhcpd/dhcpd.leases
2017/11/30 10:48:57 packer: 2017/11/30 10:48:57 Detected IP: 192.168.197.128
2017/11/30 10:48:57 packer: 2017/11/30 10:48:57 [DEBUG] TCP connection to SSH ip/port failed: dial tcp 192.168.197.128:22: getsockopt: connection refused
2017/11/30 10:49:02 packer: 2017/11/30 10:49:02 Lookup up IP information...
2017/11/30 10:49:02 packer: 2017/11/30 10:49:02 DHCP leases path: /etc/vmware/vmnet8/dhcpd/dhcpd.leases
2017/11/30 10:49:02 packer: 2017/11/30 10:49:02 Detected IP: 192.168.197.128
2017/11/30 10:49:02 packer: 2017/11/30 10:49:02 [DEBUG] TCP connection to SSH ip/port failed: dial tcp 192.168.197.128:22: getsockopt: connection refused
2017/11/30 10:49:07 packer: 2017/11/30 10:49:07 Lookup up IP information...
2017/11/30 10:49:07 packer: 2017/11/30 10:49:07 DHCP leases path: /etc/vmware/vmnet8/dhcpd/dhcpd.leases
2017/11/30 10:49:07 packer: 2017/11/30 10:49:07 Detected IP: 192.168.197.128
2017/11/30 10:49:07 packer: 2017/11/30 10:49:07 [DEBUG] TCP connection to SSH ip/port failed: dial tcp 192.168.197.128:22: getsockopt: connection refused
2017/11/30 10:49:12 packer: 2017/11/30 10:49:12 Lookup up IP information...
2017/11/30 10:49:12 packer: 2017/11/30 10:49:12 DHCP leases path: /etc/vmware/vmnet8/dhcpd/dhcpd.leases
2017/11/30 10:49:12 packer: 2017/11/30 10:49:12 Detected IP: 192.168.197.128
2017/11/30 10:49:12 packer: 2017/11/30 10:49:12 [DEBUG] TCP connection to SSH ip/port failed: dial tcp 192.168.197.128:22: getsockopt: connection refused
2017/11/30 10:49:17 packer: 2017/11/30 10:49:17 Lookup up IP information...
2017/11/30 10:49:17 packer: 2017/11/30 10:49:17 DHCP leases path: /etc/vmware/vmnet8/dhcpd/dhcpd.leases
2017/11/30 10:49:17 packer: 2017/11/30 10:49:17 Detected IP: 192.168.197.128
2017/11/30 10:49:17 packer: 2017/11/30 10:49:17 [DEBUG] TCP connection to SSH ip/port failed: dial tcp 192.168.197.128:22: getsockopt: connection refused
2017/11/30 10:49:22 packer: 2017/11/30 10:49:22 Lookup up IP information...
2017/11/30 10:49:22 packer: 2017/11/30 10:49:22 DHCP leases path: /etc/vmware/vmnet8/dhcpd/dhcpd.leases
2017/11/30 10:49:22 packer: 2017/11/30 10:49:22 Detected IP: 192.168.197.128
2017/11/30 10:49:22 packer: 2017/11/30 10:49:22 [DEBUG] TCP connection to SSH ip/port failed: dial tcp 192.168.197.128:22: getsockopt: connection refused
2017/11/30 10:49:27 packer: 2017/11/30 10:49:27 Lookup up IP information...
2017/11/30 10:49:27 packer: 2017/11/30 10:49:27 DHCP leases path: /etc/vmware/vmnet8/dhcpd/dhcpd.leases
2017/11/30 10:49:27 packer: 2017/11/30 10:49:27 Detected IP: 192.168.197.128
2017/11/30 10:49:27 packer: 2017/11/30 10:49:27 [DEBUG] TCP connection to SSH ip/port failed: dial tcp 192.168.197.128:22: getsockopt: connection refused
2017/11/30 10:49:32 packer: 2017/11/30 10:49:32 Lookup up IP information...
2017/11/30 10:49:32 packer: 2017/11/30 10:49:32 DHCP leases path: /etc/vmware/vmnet8/dhcpd/dhcpd.leases
2017/11/30 10:49:32 packer: 2017/11/30 10:49:32 Detected IP: 192.168.197.128
2017/11/30 10:49:32 packer: 2017/11/30 10:49:32 [DEBUG] TCP connection to SSH ip/port failed: dial tcp 192.168.197.128:22: getsockopt: connection refused
2017/11/30 10:49:37 packer: 2017/11/30 10:49:37 Lookup up IP information...
2017/11/30 10:49:37 packer: 2017/11/30 10:49:37 DHCP leases path: /etc/vmware/vmnet8/dhcpd/dhcpd.leases
2017/11/30 10:49:37 packer: 2017/11/30 10:49:37 Detected IP: 192.168.197.128
2017/11/30 10:49:37 packer: 2017/11/30 10:49:37 [DEBUG] TCP connection to SSH ip/port failed: dial tcp 192.168.197.128:22: getsockopt: connection refused
2017/11/30 10:49:42 packer: 2017/11/30 10:49:42 Lookup up IP information...
2017/11/30 10:49:42 packer: 2017/11/30 10:49:42 DHCP leases path: /etc/vmware/vmnet8/dhcpd/dhcpd.leases
2017/11/30 10:49:42 packer: 2017/11/30 10:49:42 Detected IP: 192.168.197.128
2017/11/30 10:49:42 packer: 2017/11/30 10:49:42 [DEBUG] TCP connection to SSH ip/port failed: dial tcp 192.168.197.128:22: getsockopt: connection refused
2017/11/30 10:49:47 packer: 2017/11/30 10:49:47 Lookup up IP information...
2017/11/30 10:49:47 packer: 2017/11/30 10:49:47 DHCP leases path: /etc/vmware/vmnet8/dhcpd/dhcpd.leases
2017/11/30 10:49:47 packer: 2017/11/30 10:49:47 Detected IP: 192.168.197.128
2017/11/30 10:49:47 packer: 2017/11/30 10:49:47 [DEBUG] TCP connection to SSH ip/port failed: dial tcp 192.168.197.128:22: getsockopt: connection refused
2017/11/30 10:49:52 packer: 2017/11/30 10:49:52 Lookup up IP information...
2017/11/30 10:49:52 packer: 2017/11/30 10:49:52 DHCP leases path: /etc/vmware/vmnet8/dhcpd/dhcpd.leases
2017/11/30 10:49:52 packer: 2017/11/30 10:49:52 Detected IP: 192.168.197.128
2017/11/30 10:49:52 packer: 2017/11/30 10:49:52 [DEBUG] TCP connection to SSH ip/port failed: dial tcp 192.168.197.128:22: getsockopt: connection refused
2017/11/30 10:49:57 packer: 2017/11/30 10:49:57 Lookup up IP information...
2017/11/30 10:49:57 packer: 2017/11/30 10:49:57 DHCP leases path: /etc/vmware/vmnet8/dhcpd/dhcpd.leases
2017/11/30 10:49:57 packer: 2017/11/30 10:49:57 Detected IP: 192.168.197.128
2017/11/30 10:49:57 packer: 2017/11/30 10:49:57 [DEBUG] TCP connection to SSH ip/port failed: dial tcp 192.168.197.128:22: getsockopt: connection refused
2017/11/30 10:50:02 packer: 2017/11/30 10:50:02 Lookup up IP information...
2017/11/30 10:50:02 packer: 2017/11/30 10:50:02 DHCP leases path: /etc/vmware/vmnet8/dhcpd/dhcpd.leases
2017/11/30 10:50:02 packer: 2017/11/30 10:50:02 Detected IP: 192.168.197.128
2017/11/30 10:50:02 packer: 2017/11/30 10:50:02 [DEBUG] TCP connection to SSH ip/port failed: dial tcp 192.168.197.128:22: getsockopt: connection refused
2017/11/30 10:50:07 packer: 2017/11/30 10:50:07 Lookup up IP information...
2017/11/30 10:50:07 packer: 2017/11/30 10:50:07 DHCP leases path: /etc/vmware/vmnet8/dhcpd/dhcpd.leases
2017/11/30 10:50:07 packer: 2017/11/30 10:50:07 Detected IP: 192.168.197.128
2017/11/30 10:50:07 packer: 2017/11/30 10:50:07 [DEBUG] TCP connection to SSH ip/port failed: dial tcp 192.168.197.128:22: getsockopt: connection refused
2017/11/30 10:50:12 packer: 2017/11/30 10:50:12 Lookup up IP information...
2017/11/30 10:50:12 packer: 2017/11/30 10:50:12 DHCP leases path: /etc/vmware/vmnet8/dhcpd/dhcpd.leases
2017/11/30 10:50:12 packer: 2017/11/30 10:50:12 Detected IP: 192.168.197.128
2017/11/30 10:50:12 packer: 2017/11/30 10:50:12 [DEBUG] TCP connection to SSH ip/port failed: dial tcp 192.168.197.128:22: getsockopt: connection refused
2017/11/30 10:50:17 packer: 2017/11/30 10:50:17 Lookup up IP information...
2017/11/30 10:50:17 packer: 2017/11/30 10:50:17 DHCP leases path: /etc/vmware/vmnet8/dhcpd/dhcpd.leases
2017/11/30 10:50:17 packer: 2017/11/30 10:50:17 Detected IP: 192.168.197.128
2017/11/30 10:50:17 packer: 2017/11/30 10:50:17 [DEBUG] TCP connection to SSH ip/port failed: dial tcp 192.168.197.128:22: getsockopt: connection refused
2017/11/30 10:50:22 packer: 2017/11/30 10:50:22 Lookup up IP information...
2017/11/30 10:50:22 packer: 2017/11/30 10:50:22 DHCP leases path: /etc/vmware/vmnet8/dhcpd/dhcpd.leases
2017/11/30 10:50:22 packer: 2017/11/30 10:50:22 Detected IP: 192.168.197.128
2017/11/30 10:50:22 packer: 2017/11/30 10:50:22 [DEBUG] TCP connection to SSH ip/port failed: dial tcp 192.168.197.128:22: getsockopt: connection refused
2017/11/30 10:50:27 packer: 2017/11/30 10:50:27 Lookup up IP information...
2017/11/30 10:50:27 packer: 2017/11/30 10:50:27 DHCP leases path: /etc/vmware/vmnet8/dhcpd/dhcpd.leases
2017/11/30 10:50:27 packer: 2017/11/30 10:50:27 Detected IP: 192.168.197.128
2017/11/30 10:50:27 packer: 2017/11/30 10:50:27 [DEBUG] TCP connection to SSH ip/port failed: dial tcp 192.168.197.128:22: getsockopt: connection refused
2017/11/30 10:50:32 packer: 2017/11/30 10:50:32 Lookup up IP information...
2017/11/30 10:50:32 packer: 2017/11/30 10:50:32 DHCP leases path: /etc/vmware/vmnet8/dhcpd/dhcpd.leases
2017/11/30 10:50:32 packer: 2017/11/30 10:50:32 Detected IP: 192.168.197.128
2017/11/30 10:50:32 packer: 2017/11/30 10:50:32 [DEBUG] TCP connection to SSH ip/port failed: dial tcp 192.168.197.128:22: getsockopt: connection refused
2017/11/30 10:50:37 packer: 2017/11/30 10:50:37 Lookup up IP information...
2017/11/30 10:50:37 packer: 2017/11/30 10:50:37 DHCP leases path: /etc/vmware/vmnet8/dhcpd/dhcpd.leases
2017/11/30 10:50:37 packer: 2017/11/30 10:50:37 Detected IP: 192.168.197.128
2017/11/30 10:50:37 packer: 2017/11/30 10:50:37 [DEBUG] TCP connection to SSH ip/port failed: dial tcp 192.168.197.128:22: getsockopt: connection refused
2017/11/30 10:50:42 packer: 2017/11/30 10:50:42 Lookup up IP information...
2017/11/30 10:50:42 packer: 2017/11/30 10:50:42 DHCP leases path: /etc/vmware/vmnet8/dhcpd/dhcpd.leases
2017/11/30 10:50:42 packer: 2017/11/30 10:50:42 Detected IP: 192.168.197.128
2017/11/30 10:50:42 packer: 2017/11/30 10:50:42 [DEBUG] TCP connection to SSH ip/port failed: dial tcp 192.168.197.128:22: getsockopt: connection refused
2017/11/30 10:50:47 packer: 2017/11/30 10:50:47 Lookup up IP information...
2017/11/30 10:50:47 packer: 2017/11/30 10:50:47 DHCP leases path: /etc/vmware/vmnet8/dhcpd/dhcpd.leases
2017/11/30 10:50:47 packer: 2017/11/30 10:50:47 Detected IP: 192.168.197.128
2017/11/30 10:50:47 packer: 2017/11/30 10:50:47 [DEBUG] TCP connection to SSH ip/port failed: dial tcp 192.168.197.128:22: getsockopt: connection refused
2017/11/30 10:50:52 packer: 2017/11/30 10:50:52 Lookup up IP information...
2017/11/30 10:50:52 packer: 2017/11/30 10:50:52 DHCP leases path: /etc/vmware/vmnet8/dhcpd/dhcpd.leases
2017/11/30 10:50:52 packer: 2017/11/30 10:50:52 Detected IP: 192.168.197.128
2017/11/30 10:50:52 packer: 2017/11/30 10:50:52 [DEBUG] TCP connection to SSH ip/port failed: dial tcp 192.168.197.128:22: getsockopt: connection refused
2017/11/30 10:50:57 packer: 2017/11/30 10:50:57 Lookup up IP information...
2017/11/30 10:50:57 packer: 2017/11/30 10:50:57 DHCP leases path: /etc/vmware/vmnet8/dhcpd/dhcpd.leases
2017/11/30 10:50:57 packer: 2017/11/30 10:50:57 Detected IP: 192.168.197.128
2017/11/30 10:50:57 packer: 2017/11/30 10:50:57 [DEBUG] TCP connection to SSH ip/port failed: dial tcp 192.168.197.128:22: getsockopt: connection refused
2017/11/30 10:51:02 packer: 2017/11/30 10:51:02 Lookup up IP information...
2017/11/30 10:51:02 packer: 2017/11/30 10:51:02 DHCP leases path: /etc/vmware/vmnet8/dhcpd/dhcpd.leases
2017/11/30 10:51:02 packer: 2017/11/30 10:51:02 Detected IP: 192.168.197.128
2017/11/30 10:51:02 packer: 2017/11/30 10:51:02 [DEBUG] TCP connection to SSH ip/port failed: dial tcp 192.168.197.128:22: getsockopt: connection refused
2017/11/30 10:51:07 packer: 2017/11/30 10:51:07 Lookup up IP information...
2017/11/30 10:51:07 packer: 2017/11/30 10:51:07 DHCP leases path: /etc/vmware/vmnet8/dhcpd/dhcpd.leases
2017/11/30 10:51:07 packer: 2017/11/30 10:51:07 Detected IP: 192.168.197.128
2017/11/30 10:51:07 packer: 2017/11/30 10:51:07 [DEBUG] TCP connection to SSH ip/port failed: dial tcp 192.168.197.128:22: getsockopt: connection refused
2017/11/30 10:51:12 packer: 2017/11/30 10:51:12 Lookup up IP information...
2017/11/30 10:51:12 packer: 2017/11/30 10:51:12 DHCP leases path: /etc/vmware/vmnet8/dhcpd/dhcpd.leases
2017/11/30 10:51:12 packer: 2017/11/30 10:51:12 Detected IP: 192.168.197.128
2017/11/30 10:51:12 packer: 2017/11/30 10:51:12 [DEBUG] TCP connection to SSH ip/port failed: dial tcp 192.168.197.128:22: getsockopt: connection refused
2017/11/30 10:51:17 packer: 2017/11/30 10:51:17 Lookup up IP information...
2017/11/30 10:51:17 packer: 2017/11/30 10:51:17 DHCP leases path: /etc/vmware/vmnet8/dhcpd/dhcpd.leases
2017/11/30 10:51:17 packer: 2017/11/30 10:51:17 Detected IP: 192.168.197.128
2017/11/30 10:51:17 packer: 2017/11/30 10:51:17 [DEBUG] TCP connection to SSH ip/port failed: dial tcp 192.168.197.128:22: getsockopt: connection refused
2017/11/30 10:51:22 packer: 2017/11/30 10:51:22 Lookup up IP information...
2017/11/30 10:51:22 packer: 2017/11/30 10:51:22 DHCP leases path: /etc/vmware/vmnet8/dhcpd/dhcpd.leases
2017/11/30 10:51:22 packer: 2017/11/30 10:51:22 Detected IP: 192.168.197.128
2017/11/30 10:51:22 packer: 2017/11/30 10:51:22 [DEBUG] TCP connection to SSH ip/port failed: dial tcp 192.168.197.128:22: getsockopt: connection refused
2017/11/30 10:51:27 packer: 2017/11/30 10:51:27 Lookup up IP information...
2017/11/30 10:51:27 packer: 2017/11/30 10:51:27 DHCP leases path: /etc/vmware/vmnet8/dhcpd/dhcpd.leases
2017/11/30 10:51:27 packer: 2017/11/30 10:51:27 Detected IP: 192.168.197.128
2017/11/30 10:51:27 packer: 2017/11/30 10:51:27 [DEBUG] TCP connection to SSH ip/port failed: dial tcp 192.168.197.128:22: getsockopt: connection refused
2017/11/30 10:51:32 packer: 2017/11/30 10:51:32 Lookup up IP information...
2017/11/30 10:51:32 packer: 2017/11/30 10:51:32 DHCP leases path: /etc/vmware/vmnet8/dhcpd/dhcpd.leases
2017/11/30 10:51:32 packer: 2017/11/30 10:51:32 Detected IP: 192.168.197.128
2017/11/30 10:51:32 packer: 2017/11/30 10:51:32 [DEBUG] TCP connection to SSH ip/port failed: dial tcp 192.168.197.128:22: getsockopt: connection refused
2017/11/30 10:51:37 packer: 2017/11/30 10:51:37 Lookup up IP information...
2017/11/30 10:51:37 packer: 2017/11/30 10:51:37 DHCP leases path: /etc/vmware/vmnet8/dhcpd/dhcpd.leases
2017/11/30 10:51:37 packer: 2017/11/30 10:51:37 Detected IP: 192.168.197.128
2017/11/30 10:51:37 packer: 2017/11/30 10:51:37 [DEBUG] TCP connection to SSH ip/port failed: dial tcp 192.168.197.128:22: getsockopt: connection refused
2017/11/30 10:51:42 packer: 2017/11/30 10:51:42 Lookup up IP information...
2017/11/30 10:51:42 packer: 2017/11/30 10:51:42 DHCP leases path: /etc/vmware/vmnet8/dhcpd/dhcpd.leases
2017/11/30 10:51:42 packer: 2017/11/30 10:51:42 Detected IP: 192.168.197.128
2017/11/30 10:51:42 packer: 2017/11/30 10:51:42 [DEBUG] TCP connection to SSH ip/port failed: dial tcp 192.168.197.128:22: getsockopt: connection refused
2017/11/30 10:51:47 packer: 2017/11/30 10:51:47 Lookup up IP information...
2017/11/30 10:51:47 packer: 2017/11/30 10:51:47 DHCP leases path: /etc/vmware/vmnet8/dhcpd/dhcpd.leases
2017/11/30 10:51:47 packer: 2017/11/30 10:51:47 Detected IP: 192.168.197.128
2017/11/30 10:51:47 packer: 2017/11/30 10:51:47 [DEBUG] TCP connection to SSH ip/port failed: dial tcp 192.168.197.128:22: getsockopt: connection refused
2017/11/30 10:51:52 packer: 2017/11/30 10:51:52 Lookup up IP information...
2017/11/30 10:51:52 packer: 2017/11/30 10:51:52 DHCP leases path: /etc/vmware/vmnet8/dhcpd/dhcpd.leases
2017/11/30 10:51:52 packer: 2017/11/30 10:51:52 Detected IP: 192.168.197.128
2017/11/30 10:51:52 packer: 2017/11/30 10:51:52 [DEBUG] TCP connection to SSH ip/port failed: dial tcp 192.168.197.128:22: getsockopt: connection refused
2017/11/30 10:51:57 packer: 2017/11/30 10:51:57 Lookup up IP information...
2017/11/30 10:51:57 packer: 2017/11/30 10:51:57 DHCP leases path: /etc/vmware/vmnet8/dhcpd/dhcpd.leases
2017/11/30 10:51:57 packer: 2017/11/30 10:51:57 Detected IP: 192.168.197.128
2017/11/30 10:51:57 packer: 2017/11/30 10:51:57 [DEBUG] TCP connection to SSH ip/port failed: dial tcp 192.168.197.128:22: getsockopt: connection refused
2017/11/30 10:52:02 packer: 2017/11/30 10:52:02 Lookup up IP information...
2017/11/30 10:52:02 packer: 2017/11/30 10:52:02 DHCP leases path: /etc/vmware/vmnet8/dhcpd/dhcpd.leases
2017/11/30 10:52:02 packer: 2017/11/30 10:52:02 Detected IP: 192.168.197.128
2017/11/30 10:52:02 packer: 2017/11/30 10:52:02 [DEBUG] TCP connection to SSH ip/port failed: dial tcp 192.168.197.128:22: getsockopt: connection refused
2017/11/30 10:52:07 packer: 2017/11/30 10:52:07 Lookup up IP information...
2017/11/30 10:52:07 packer: 2017/11/30 10:52:07 DHCP leases path: /etc/vmware/vmnet8/dhcpd/dhcpd.leases
2017/11/30 10:52:07 packer: 2017/11/30 10:52:07 Detected IP: 192.168.197.128
2017/11/30 10:52:07 packer: 2017/11/30 10:52:07 [DEBUG] TCP connection to SSH ip/port failed: dial tcp 192.168.197.128:22: getsockopt: connection refused
2017/11/30 10:52:12 packer: 2017/11/30 10:52:12 Lookup up IP information...
2017/11/30 10:52:12 packer: 2017/11/30 10:52:12 DHCP leases path: /etc/vmware/vmnet8/dhcpd/dhcpd.leases
2017/11/30 10:52:12 packer: 2017/11/30 10:52:12 Detected IP: 192.168.197.128
2017/11/30 10:52:12 packer: 2017/11/30 10:52:12 [DEBUG] TCP connection to SSH ip/port failed: dial tcp 192.168.197.128:22: getsockopt: connection refused
2017/11/30 10:52:17 packer: 2017/11/30 10:52:17 Lookup up IP information...
2017/11/30 10:52:17 packer: 2017/11/30 10:52:17 DHCP leases path: /etc/vmware/vmnet8/dhcpd/dhcpd.leases
2017/11/30 10:52:17 packer: 2017/11/30 10:52:17 Detected IP: 192.168.197.128
2017/11/30 10:52:17 packer: 2017/11/30 10:52:17 [DEBUG] TCP connection to SSH ip/port failed: dial tcp 192.168.197.128:22: getsockopt: connection refused
2017/11/30 10:52:22 packer: 2017/11/30 10:52:22 Lookup up IP information...
2017/11/30 10:52:22 packer: 2017/11/30 10:52:22 DHCP leases path: /etc/vmware/vmnet8/dhcpd/dhcpd.leases
2017/11/30 10:52:22 packer: 2017/11/30 10:52:22 Detected IP: 192.168.197.128
2017/11/30 10:52:37 packer: 2017/11/30 10:52:37 [DEBUG] TCP connection to SSH ip/port failed: dial tcp 192.168.197.128:22: i/o timeout
2017/11/30 10:52:42 packer: 2017/11/30 10:52:42 Lookup up IP information...
2017/11/30 10:52:42 packer: 2017/11/30 10:52:42 DHCP leases path: /etc/vmware/vmnet8/dhcpd/dhcpd.leases
2017/11/30 10:52:42 packer: 2017/11/30 10:52:42 Detected IP: 192.168.197.128
2017/11/30 10:52:42 packer: 2017/11/30 10:52:42 [INFO] Attempting SSH connection...
2017/11/30 10:52:42 packer: 2017/11/30 10:52:42 reconnecting to TCP connection for SSH
2017/11/30 10:52:42 packer: 2017/11/30 10:52:42 handshaking with SSH
2017/11/30 10:52:42 packer: 2017/11/30 10:52:42 handshake complete!
2017/11/30 10:52:42 packer: 2017/11/30 10:52:42 opening new ssh session
2017/11/30 10:52:42 packer: 2017/11/30 10:52:42 [INFO] agent forwarding enabled
2017/11/30 10:52:42 ui: ==> vmware-iso: Connected to SSH!
2017/11/30 10:52:42 ui: ==> vmware-iso: Uploading the 'linux' VMware Tools
2017/11/30 10:52:42 packer: 2017/11/30 10:52:42 opening new ssh session
2017/11/30 10:52:42 packer: 2017/11/30 10:52:42 Starting remote scp process: scp -vt .
2017/11/30 10:52:42 packer: 2017/11/30 10:52:42 Started SCP session, beginning transfers...
2017/11/30 10:52:42 packer: 2017/11/30 10:52:42 Copying input data into temporary file so we can read the length
2017/11/30 10:52:43 packer: 2017/11/30 10:52:43 [DEBUG] scp: Uploading linux.iso: perms=C0644 size=58396672
2017/11/30 10:52:43 packer: 2017/11/30 10:52:43 SCP session complete, closing stdin pipe.
2017/11/30 10:52:43 packer: 2017/11/30 10:52:43 Waiting for SSH session to complete.
2017/11/30 10:52:43 packer: 2017/11/30 10:52:43 scp stderr (length 31): Sink: C0644 58396672 linux.iso
2017/11/30 10:52:43 packer: 2017/11/30 10:52:43 Running the provision hook
2017/11/30 10:52:43 [INFO] (telemetry) Starting provisioner shell
2017/11/30 10:52:43 ui: ==> vmware-iso: Provisioning with shell script: scripts/ansible-install.sh
2017/11/30 10:52:43 packer: 2017/11/30 10:52:43 Opening scripts/ansible-install.sh for reading
2017/11/30 10:52:43 packer: 2017/11/30 10:52:43 [INFO] 1118 bytes written for 'uploadData'
2017/11/30 10:52:43 [INFO] 1118 bytes written for 'uploadData'
2017/11/30 10:52:43 packer: 2017/11/30 10:52:43 opening new ssh session
2017/11/30 10:52:43 packer: 2017/11/30 10:52:43 Starting remote scp process: scp -vt /tmp
2017/11/30 10:52:43 packer: 2017/11/30 10:52:43 Started SCP session, beginning transfers...
2017/11/30 10:52:43 packer: 2017/11/30 10:52:43 Copying input data into temporary file so we can read the length
2017/11/30 10:52:43 packer: 2017/11/30 10:52:43 [DEBUG] scp: Uploading script_1854.sh: perms=C0644 size=1118
2017/11/30 10:52:43 packer: 2017/11/30 10:52:43 SCP session complete, closing stdin pipe.
2017/11/30 10:52:43 packer: 2017/11/30 10:52:43 Waiting for SSH session to complete.
2017/11/30 10:52:43 packer: 2017/11/30 10:52:43 scp stderr (length 32): Sink: C0644 1118 script_1854.sh
2017/11/30 10:52:43 packer: 2017/11/30 10:52:43 opening new ssh session
2017/11/30 10:52:43 packer: 2017/11/30 10:52:43 starting remote command: chmod 0755 /tmp/script_1854.sh
2017/11/30 10:52:43 packer: 2017/11/30 10:52:43 [INFO] RPC endpoint: Communicator ended with: 0
2017/11/30 10:52:43 [INFO] RPC client: Communicator ended with: 0
2017/11/30 10:52:43 [INFO] RPC endpoint: Communicator ended with: 0
2017/11/30 10:52:43 packer: 2017/11/30 10:52:43 [INFO] RPC client: Communicator ended with: 0
2017/11/30 10:52:43 packer: 2017/11/30 10:52:43 opening new ssh session
2017/11/30 10:52:43 packer: 2017/11/30 10:52:43 starting remote command: echo 'vagrant' | PACKER_BUILDER_TYPE='vmware-iso' PACKER_BUILD_NAME='vmware-iso' PACKER_HTTP_ADDR='192.168.197.1:8605' sudo -S -E bash '/tmp/script_1854.sh'
2017/11/30 10:52:43 ui:  vmware-iso: Loaded plugins: fastestmirror
2017/11/30 10:52:49 ui:  vmware-iso: Determining fastest mirrors
2017/11/30 10:52:49 ui:  vmware-iso: * base: ftp.plusline.de
2017/11/30 10:52:49 ui:  vmware-iso: * extras: mirror.checkdomain.de
2017/11/30 10:52:49 ui:  vmware-iso: * updates: centos.mirror.iphh.net
2017/11/30 10:52:51 ui:  vmware-iso: Resolving Dependencies
2017/11/30 10:52:51 ui:  vmware-iso: --> Running transaction check
2017/11/30 10:52:51 ui:  vmware-iso: ---> Package ansible.noarch 0:2.4.1.0-1.el7 will be installed
2017/11/30 10:52:51 ui:  vmware-iso: --> Processing Dependency: sshpass for package: ansible-2.4.1.0-1.el7.noarch
2017/11/30 10:52:51 ui:  vmware-iso: --> Processing Dependency: python2-jmespath for package: ansible-2.4.1.0-1.el7.noarch
2017/11/30 10:52:51 ui:  vmware-iso: --> Processing Dependency: python-six for package: ansible-2.4.1.0-1.el7.noarch
2017/11/30 10:52:51 ui:  vmware-iso: --> Processing Dependency: python-setuptools for package: ansible-2.4.1.0-1.el7.noarch
2017/11/30 10:52:51 ui:  vmware-iso: --> Processing Dependency: python-passlib for package: ansible-2.4.1.0-1.el7.noarch
2017/11/30 10:52:51 ui:  vmware-iso: --> Processing Dependency: python-paramiko for package: ansible-2.4.1.0-1.el7.noarch
2017/11/30 10:52:51 ui:  vmware-iso: --> Processing Dependency: python-jinja2 for package: ansible-2.4.1.0-1.el7.noarch
2017/11/30 10:52:51 ui:  vmware-iso: --> Processing Dependency: python-httplib2 for package: ansible-2.4.1.0-1.el7.noarch
2017/11/30 10:52:51 ui:  vmware-iso: --> Processing Dependency: python-cryptography for package: ansible-2.4.1.0-1.el7.noarch
2017/11/30 10:52:51 ui:  vmware-iso: --> Processing Dependency: PyYAML for package: ansible-2.4.1.0-1.el7.noarch
2017/11/30 10:52:51 ui:  vmware-iso: --> Running transaction check
2017/11/30 10:52:51 ui:  vmware-iso: ---> Package PyYAML.x86_64 0:3.10-11.el7 will be installed
2017/11/30 10:52:51 ui:  vmware-iso: ---> Package python-httplib2.noarch 0:0.9.2-1.el7 will be installed
2017/11/30 10:52:51 ui:  vmware-iso: ---> Package python-jinja2.noarch 0:2.7.2-2.el7 will be installed
2017/11/30 10:52:51 ui:  vmware-iso: --> Processing Dependency: python-babel >= 0.8 for package: python-jinja2-2.7.2-2.el7.noarch
2017/11/30 10:52:51 ui:  vmware-iso: --> Processing Dependency: python-markupsafe for package: python-jinja2-2.7.2-2.el7.noarch
2017/11/30 10:52:51 ui:  vmware-iso: ---> Package python-paramiko.noarch 0:2.1.1-2.el7 will be installed
2017/11/30 10:52:51 ui:  vmware-iso: ---> Package python-passlib.noarch 0:1.6.5-2.el7 will be installed
2017/11/30 10:52:51 ui:  vmware-iso: ---> Package python-setuptools.noarch 0:0.9.8-7.el7 will be installed
2017/11/30 10:52:51 ui:  vmware-iso: --> Processing Dependency: python-backports-ssl_match_hostname for package: python-setuptools-0.9.8-7.el7.noarch
2017/11/30 10:52:51 ui:  vmware-iso: ---> Package python-six.noarch 0:1.9.0-2.el7 will be installed
2017/11/30 10:52:51 ui:  vmware-iso: ---> Package python2-cryptography.x86_64 0:1.7.2-1.el7_4.1 will be installed
2017/11/30 10:52:51 ui:  vmware-iso: --> Processing Dependency: python-pyasn1 >= 0.1.8 for package: python2-cryptography-1.7.2-1.el7_4.1.x86_64
2017/11/30 10:52:51 ui:  vmware-iso: --> Processing Dependency: python-idna >= 2.0 for package: python2-cryptography-1.7.2-1.el7_4.1.x86_64
2017/11/30 10:52:51 ui:  vmware-iso: --> Processing Dependency: python-cffi >= 1.4.1 for package: python2-cryptography-1.7.2-1.el7_4.1.x86_64
2017/11/30 10:52:51 ui:  vmware-iso: --> Processing Dependency: python-ipaddress for package: python2-cryptography-1.7.2-1.el7_4.1.x86_64
2017/11/30 10:52:51 ui:  vmware-iso: --> Processing Dependency: python-enum34 for package: python2-cryptography-1.7.2-1.el7_4.1.x86_64
2017/11/30 10:52:51 ui:  vmware-iso: ---> Package python2-jmespath.noarch 0:0.9.0-3.el7 will be installed
2017/11/30 10:52:51 ui:  vmware-iso: ---> Package sshpass.x86_64 0:1.06-2.el7 will be installed
2017/11/30 10:52:51 ui:  vmware-iso: --> Running transaction check
2017/11/30 10:52:51 ui:  vmware-iso: ---> Package python-babel.noarch 0:0.9.6-8.el7 will be installed
2017/11/30 10:52:51 ui:  vmware-iso: ---> Package python-backports-ssl_match_hostname.noarch 0:3.4.0.2-4.el7 will be installed
2017/11/30 10:52:51 ui:  vmware-iso: --> Processing Dependency: python-backports for package: python-backports-ssl_match_hostname-3.4.0.2-4.el7.noarch
2017/11/30 10:52:51 ui:  vmware-iso: ---> Package python-cffi.x86_64 0:1.6.0-5.el7 will be installed
2017/11/30 10:52:51 ui:  vmware-iso: --> Processing Dependency: python-pycparser for package: python-cffi-1.6.0-5.el7.x86_64
2017/11/30 10:52:51 ui:  vmware-iso: ---> Package python-enum34.noarch 0:1.0.4-1.el7 will be installed
2017/11/30 10:52:51 ui:  vmware-iso: ---> Package python-idna.noarch 0:2.4-1.el7 will be installed
2017/11/30 10:52:51 ui:  vmware-iso: ---> Package python-ipaddress.noarch 0:1.0.16-2.el7 will be installed
2017/11/30 10:52:51 ui:  vmware-iso: ---> Package python-markupsafe.x86_64 0:0.11-10.el7 will be installed
2017/11/30 10:52:51 ui:  vmware-iso: ---> Package python2-pyasn1.noarch 0:0.1.9-7.el7 will be installed
2017/11/30 10:52:51 ui:  vmware-iso: --> Running transaction check
2017/11/30 10:52:51 ui:  vmware-iso: ---> Package python-backports.x86_64 0:1.0-8.el7 will be installed
2017/11/30 10:52:51 ui:  vmware-iso: ---> Package python-pycparser.noarch 0:2.14-1.el7 will be installed
2017/11/30 10:52:51 ui:  vmware-iso: --> Processing Dependency: python-ply for package: python-pycparser-2.14-1.el7.noarch
2017/11/30 10:52:51 ui:  vmware-iso: --> Running transaction check
2017/11/30 10:52:51 ui:  vmware-iso: ---> Package python-ply.noarch 0:3.4-11.el7 will be installed
2017/11/30 10:52:51 ui:  vmware-iso: --> Finished Dependency Resolution
2017/11/30 10:52:51 ui:  vmware-iso:
2017/11/30 10:52:51 ui:  vmware-iso: Dependencies Resolved
2017/11/30 10:52:51 ui:  vmware-iso:
2017/11/30 10:52:51 ui:  vmware-iso: ================================================================================
2017/11/30 10:52:51 ui:  vmware-iso: Package Arch Version Repository
2017/11/30 10:52:51 ui:  vmware-iso: Size
2017/11/30 10:52:51 ui:  vmware-iso: ================================================================================
2017/11/30 10:52:51 ui:  vmware-iso: Installing:
2017/11/30 10:52:51 ui:  vmware-iso: ansible noarch 2.4.1.0-1.el7 extras 7.6 M
2017/11/30 10:52:51 ui:  vmware-iso: Installing for dependencies:
2017/11/30 10:52:51 ui:  vmware-iso: PyYAML x86_64 3.10-11.el7 base 153 k
2017/11/30 10:52:51 ui:  vmware-iso: python-babel noarch 0.9.6-8.el7 base 1.4 M
2017/11/30 10:52:51 ui:  vmware-iso: python-backports x86_64 1.0-8.el7 base 5.8 k
2017/11/30 10:52:51 ui:  vmware-iso: python-backports-ssl_match_hostname noarch 3.4.0.2-4.el7 base 12 k
2017/11/30 10:52:51 ui:  vmware-iso: python-cffi x86_64 1.6.0-5.el7 base 218 k
2017/11/30 10:52:51 ui:  vmware-iso: python-enum34 noarch 1.0.4-1.el7 base 52 k
2017/11/30 10:52:51 ui:  vmware-iso: python-httplib2 noarch 0.9.2-1.el7 extras 115 k
2017/11/30 10:52:51 ui:  vmware-iso: python-idna noarch 2.4-1.el7 base 94 k
2017/11/30 10:52:51 ui:  vmware-iso: python-ipaddress noarch 1.0.16-2.el7 base 34 k
2017/11/30 10:52:51 ui:  vmware-iso: python-jinja2 noarch 2.7.2-2.el7 base 515 k
2017/11/30 10:52:51 ui:  vmware-iso: python-markupsafe x86_64 0.11-10.el7 base 25 k
2017/11/30 10:52:51 ui:  vmware-iso: python-paramiko noarch 2.1.1-2.el7 extras 267 k
2017/11/30 10:52:51 ui:  vmware-iso: python-passlib noarch 1.6.5-2.el7 extras 488 k
2017/11/30 10:52:51 ui:  vmware-iso: python-ply noarch 3.4-11.el7 base 123 k
2017/11/30 10:52:51 ui:  vmware-iso: python-pycparser noarch 2.14-1.el7 base 104 k
2017/11/30 10:52:51 ui:  vmware-iso: python-setuptools noarch 0.9.8-7.el7 base 397 k
2017/11/30 10:52:51 ui:  vmware-iso: python-six noarch 1.9.0-2.el7 base 29 k
2017/11/30 10:52:51 ui:  vmware-iso: python2-cryptography x86_64 1.7.2-1.el7_4.1 updates 502 k
2017/11/30 10:52:51 ui:  vmware-iso: python2-jmespath noarch 0.9.0-3.el7 extras 39 k
2017/11/30 10:52:51 ui:  vmware-iso: python2-pyasn1 noarch 0.1.9-7.el7 base 100 k
2017/11/30 10:52:51 ui:  vmware-iso: sshpass x86_64 1.06-2.el7 extras 21 k
2017/11/30 10:52:51 ui:  vmware-iso:
2017/11/30 10:52:51 ui:  vmware-iso: Transaction Summary
2017/11/30 10:52:51 ui:  vmware-iso: ================================================================================
2017/11/30 10:52:51 ui:  vmware-iso: Install 1 Package (+21 Dependent packages)
2017/11/30 10:52:51 ui:  vmware-iso:
2017/11/30 10:52:51 ui:  vmware-iso: Total download size: 12 M
2017/11/30 10:52:51 ui:  vmware-iso: Installed size: 60 M
2017/11/30 10:52:51 ui:  vmware-iso: Downloading packages:
2017/11/30 10:52:52 ui:  vmware-iso: warning: /var/cache/yum/x86_64/7/base/packages/PyYAML-3.10-11.el7.x86_64.rpm: Header V3 RSA/SHA256 Signature, key ID f4a80eb5: NOKEY
2017/11/30 10:52:52 ui:  vmware-iso: Public key for PyYAML-3.10-11.el7.x86_64.rpm is not installed
2017/11/30 10:52:52 ui:  vmware-iso: Public key for python-paramiko-2.1.1-2.el7.noarch.rpm is not installed
2017/11/30 10:52:53 ui:  vmware-iso: Public key for python2-cryptography-1.7.2-1.el7_4.1.x86_64.rpm is not installed
2017/11/30 10:52:58 ui:  vmware-iso: --------------------------------------------------------------------------------
2017/11/30 10:52:58 ui:  vmware-iso: Total 1.8 MB/s | 12 MB 00:06
2017/11/30 10:52:58 ui:  vmware-iso: Retrieving key from file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7
2017/11/30 10:52:58 ui:  vmware-iso: Importing GPG key 0xF4A80EB5:
2017/11/30 10:52:58 ui:  vmware-iso: Userid : "CentOS-7 Key (CentOS 7 Official Signing Key) <security@centos.org>"
2017/11/30 10:52:58 ui:  vmware-iso: Fingerprint: 6341 ab27 53d7 8a78 a7c2 7bb1 24c6 a8a7 f4a8 0eb5
2017/11/30 10:52:58 ui:  vmware-iso: Package : centos-release-7-4.1708.el7.centos.x86_64 (@anaconda)
2017/11/30 10:52:58 ui:  vmware-iso: From : /etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7
2017/11/30 10:52:58 ui:  vmware-iso: Running transaction check
2017/11/30 10:52:58 ui:  vmware-iso: Running transaction test
2017/11/30 10:52:58 ui:  vmware-iso: Transaction test succeeded
2017/11/30 10:52:58 ui:  vmware-iso: Running transaction
2017/11/30 10:52:58 ui:  vmware-iso: Installing : python-six-1.9.0-2.el7.noarch 1/22
2017/11/30 10:52:58 ui:  vmware-iso: Installing : PyYAML-3.10-11.el7.x86_64 2/22
2017/11/30 10:52:58 ui:  vmware-iso: Installing : python2-pyasn1-0.1.9-7.el7.noarch 3/22
2017/11/30 10:52:58 ui:  vmware-iso: Installing : python-httplib2-0.9.2-1.el7.noarch 4/22
2017/11/30 10:52:58 ui:  vmware-iso: Installing : python-enum34-1.0.4-1.el7.noarch 5/22
2017/11/30 10:52:58 ui:  vmware-iso: Installing : python-ipaddress-1.0.16-2.el7.noarch 6/22
2017/11/30 10:52:58 ui:  vmware-iso: Installing : python-backports-1.0-8.el7.x86_64 7/22
2017/11/30 10:52:59 ui:  vmware-iso: Installing : python-backports-ssl_match_hostname-3.4.0.2-4.el7.noarch 8/22
2017/11/30 10:52:59 ui:  vmware-iso: Installing : python-setuptools-0.9.8-7.el7.noarch 9/22
2017/11/30 10:52:59 ui:  vmware-iso: Installing : python-babel-0.9.6-8.el7.noarch 10/22
2017/11/30 10:52:59 ui:  vmware-iso: Installing : python-passlib-1.6.5-2.el7.noarch 11/22
2017/11/30 10:52:59 ui:  vmware-iso: Installing : python-ply-3.4-11.el7.noarch 12/22
2017/11/30 10:52:59 ui:  vmware-iso: Installing : python-pycparser-2.14-1.el7.noarch 13/22
2017/11/30 10:52:59 ui:  vmware-iso: Installing : python-cffi-1.6.0-5.el7.x86_64 14/22
2017/11/30 10:52:59 ui:  vmware-iso: Installing : python-markupsafe-0.11-10.el7.x86_64 15/22
2017/11/30 10:52:59 ui:  vmware-iso: Installing : python-jinja2-2.7.2-2.el7.noarch 16/22
2017/11/30 10:53:00 ui:  vmware-iso: Installing : python-idna-2.4-1.el7.noarch 17/22
2017/11/30 10:53:00 ui:  vmware-iso: Installing : python2-cryptography-1.7.2-1.el7_4.1.x86_64 18/22
2017/11/30 10:53:00 ui:  vmware-iso: Installing : python-paramiko-2.1.1-2.el7.noarch 19/22
2017/11/30 10:53:00 ui:  vmware-iso: Installing : python2-jmespath-0.9.0-3.el7.noarch 20/22
2017/11/30 10:53:03 ui:  vmware-iso: Installing : sshpass-1.06-2.el7.x86_64 21/22
2017/11/30 10:53:03 ui:  vmware-iso: Installing : ansible-2.4.1.0-1.el7.noarch 22/22
2017/11/30 10:53:03 ui:  vmware-iso: Verifying : python-jinja2-2.7.2-2.el7.noarch 1/22
2017/11/30 10:53:03 ui:  vmware-iso: Verifying : python-backports-ssl_match_hostname-3.4.0.2-4.el7.noarch 2/22
2017/11/30 10:53:03 ui:  vmware-iso: Verifying : sshpass-1.06-2.el7.x86_64 3/22
2017/11/30 10:53:03 ui:  vmware-iso: Verifying : python-setuptools-0.9.8-7.el7.noarch 4/22
2017/11/30 10:53:03 ui:  vmware-iso: Verifying : python2-cryptography-1.7.2-1.el7_4.1.x86_64 5/22
2017/11/30 10:53:03 ui:  vmware-iso: Verifying : python2-jmespath-0.9.0-3.el7.noarch 6/22
2017/11/30 10:53:03 ui:  vmware-iso: Verifying : ansible-2.4.1.0-1.el7.noarch 7/22
2017/11/30 10:53:03 ui:  vmware-iso: Verifying : python-six-1.9.0-2.el7.noarch 8/22
2017/11/30 10:53:03 ui:  vmware-iso: Verifying : python-idna-2.4-1.el7.noarch 9/22
2017/11/30 10:53:03 ui:  vmware-iso: Verifying : python-markupsafe-0.11-10.el7.x86_64 10/22
2017/11/30 10:53:03 ui:  vmware-iso: Verifying : python-ply-3.4-11.el7.noarch 11/22
2017/11/30 10:53:03 ui:  vmware-iso: Verifying : python-passlib-1.6.5-2.el7.noarch 12/22
2017/11/30 10:53:03 ui:  vmware-iso: Verifying : python-babel-0.9.6-8.el7.noarch 13/22
2017/11/30 10:53:03 ui:  vmware-iso: Verifying : python-backports-1.0-8.el7.x86_64 14/22
2017/11/30 10:53:03 ui:  vmware-iso: Verifying : python-cffi-1.6.0-5.el7.x86_64 15/22
2017/11/30 10:53:03 ui:  vmware-iso: Verifying : python-paramiko-2.1.1-2.el7.noarch 16/22
2017/11/30 10:53:03 ui:  vmware-iso: Verifying : python-pycparser-2.14-1.el7.noarch 17/22
2017/11/30 10:53:03 ui:  vmware-iso: Verifying : python-ipaddress-1.0.16-2.el7.noarch 18/22
2017/11/30 10:53:03 ui:  vmware-iso: Verifying : python-enum34-1.0.4-1.el7.noarch 19/22
2017/11/30 10:53:03 ui:  vmware-iso: Verifying : python-httplib2-0.9.2-1.el7.noarch 20/22
2017/11/30 10:53:03 ui:  vmware-iso: Verifying : python2-pyasn1-0.1.9-7.el7.noarch 21/22
2017/11/30 10:53:03 ui:  vmware-iso: Verifying : PyYAML-3.10-11.el7.x86_64 22/22
2017/11/30 10:53:03 ui:  vmware-iso:
2017/11/30 10:53:03 ui:  vmware-iso: Installed:
2017/11/30 10:53:03 ui:  vmware-iso: ansible.noarch 0:2.4.1.0-1.el7
2017/11/30 10:53:03 ui:  vmware-iso:
2017/11/30 10:53:03 ui:  vmware-iso: Dependency Installed:
2017/11/30 10:53:03 ui:  vmware-iso: PyYAML.x86_64 0:3.10-11.el7
2017/11/30 10:53:03 ui:  vmware-iso: python-babel.noarch 0:0.9.6-8.el7
2017/11/30 10:53:03 ui:  vmware-iso: python-backports.x86_64 0:1.0-8.el7
2017/11/30 10:53:03 ui:  vmware-iso: python-backports-ssl_match_hostname.noarch 0:3.4.0.2-4.el7
2017/11/30 10:53:03 ui:  vmware-iso: python-cffi.x86_64 0:1.6.0-5.el7
2017/11/30 10:53:03 ui:  vmware-iso: python-enum34.noarch 0:1.0.4-1.el7
2017/11/30 10:53:03 ui:  vmware-iso: python-httplib2.noarch 0:0.9.2-1.el7
2017/11/30 10:53:03 ui:  vmware-iso: python-idna.noarch 0:2.4-1.el7
2017/11/30 10:53:03 ui:  vmware-iso: python-ipaddress.noarch 0:1.0.16-2.el7
2017/11/30 10:53:03 ui:  vmware-iso: python-jinja2.noarch 0:2.7.2-2.el7
2017/11/30 10:53:03 ui:  vmware-iso: python-markupsafe.x86_64 0:0.11-10.el7
2017/11/30 10:53:03 ui:  vmware-iso: python-paramiko.noarch 0:2.1.1-2.el7
2017/11/30 10:53:03 ui:  vmware-iso: python-passlib.noarch 0:1.6.5-2.el7
2017/11/30 10:53:03 ui:  vmware-iso: python-ply.noarch 0:3.4-11.el7
2017/11/30 10:53:03 ui:  vmware-iso: python-pycparser.noarch 0:2.14-1.el7
2017/11/30 10:53:03 ui:  vmware-iso: python-setuptools.noarch 0:0.9.8-7.el7
2017/11/30 10:53:03 ui:  vmware-iso: python-six.noarch 0:1.9.0-2.el7
2017/11/30 10:53:03 ui:  vmware-iso: python2-cryptography.x86_64 0:1.7.2-1.el7_4.1
2017/11/30 10:53:03 ui:  vmware-iso: python2-jmespath.noarch 0:0.9.0-3.el7
2017/11/30 10:53:03 ui:  vmware-iso: python2-pyasn1.noarch 0:0.1.9-7.el7
2017/11/30 10:53:03 ui:  vmware-iso: sshpass.x86_64 0:1.06-2.el7
2017/11/30 10:53:03 ui:  vmware-iso:
2017/11/30 10:53:03 ui:  vmware-iso: Complete!
2017/11/30 10:53:03 packer: 2017/11/30 10:53:03 [INFO] RPC endpoint: Communicator ended with: 0
2017/11/30 10:53:03 [INFO] 430 bytes written for 'stderr'
2017/11/30 10:53:03 [INFO] 12058 bytes written for 'stdout'
2017/11/30 10:53:03 [INFO] RPC client: Communicator ended with: 0
2017/11/30 10:53:03 [INFO] RPC endpoint: Communicator ended with: 0
2017/11/30 10:53:03 packer: 2017/11/30 10:53:03 [INFO] 12058 bytes written for 'stdout'
2017/11/30 10:53:03 packer: 2017/11/30 10:53:03 [INFO] 430 bytes written for 'stderr'
2017/11/30 10:53:03 packer: 2017/11/30 10:53:03 [INFO] RPC client: Communicator ended with: 0
2017/11/30 10:53:03 packer: 2017/11/30 10:53:03 opening new ssh session
2017/11/30 10:53:03 packer: 2017/11/30 10:53:03 starting remote command: rm -f /tmp/script_1854.sh
2017/11/30 10:53:03 packer: 2017/11/30 10:53:03 [INFO] RPC endpoint: Communicator ended with: 0
2017/11/30 10:53:03 [INFO] RPC client: Communicator ended with: 0
2017/11/30 10:53:03 [INFO] RPC endpoint: Communicator ended with: 0
2017/11/30 10:53:03 packer: 2017/11/30 10:53:03 [INFO] RPC client: Communicator ended with: 0
2017/11/30 10:53:03 [INFO] (telemetry) ending shell
2017/11/30 10:53:03 [INFO] (telemetry) Starting provisioner shell
2017/11/30 10:53:03 ui: ==> vmware-iso: Provisioning with shell script: scripts/remove-repos.sh
2017/11/30 10:53:03 packer: 2017/11/30 10:53:03 Opening scripts/remove-repos.sh for reading
2017/11/30 10:53:03 packer: 2017/11/30 10:53:03 [INFO] 105 bytes written for 'uploadData'
2017/11/30 10:53:03 [INFO] 105 bytes written for 'uploadData'
2017/11/30 10:53:03 packer: 2017/11/30 10:53:03 opening new ssh session
2017/11/30 10:53:03 packer: 2017/11/30 10:53:03 Starting remote scp process: scp -vt /tmp
2017/11/30 10:53:03 packer: 2017/11/30 10:53:03 Started SCP session, beginning transfers...
2017/11/30 10:53:03 packer: 2017/11/30 10:53:03 Copying input data into temporary file so we can read the length
2017/11/30 10:53:03 packer: 2017/11/30 10:53:03 [DEBUG] scp: Uploading script_6500.sh: perms=C0644 size=105
2017/11/30 10:53:03 packer: 2017/11/30 10:53:03 SCP session complete, closing stdin pipe.
2017/11/30 10:53:03 packer: 2017/11/30 10:53:03 Waiting for SSH session to complete.
2017/11/30 10:53:03 packer: 2017/11/30 10:53:03 scp stderr (length 31): Sink: C0644 105 script_6500.sh
2017/11/30 10:53:03 packer: 2017/11/30 10:53:03 opening new ssh session
2017/11/30 10:53:03 packer: 2017/11/30 10:53:03 starting remote command: chmod 0755 /tmp/script_6500.sh
2017/11/30 10:53:03 packer: 2017/11/30 10:53:03 [INFO] RPC endpoint: Communicator ended with: 0
2017/11/30 10:53:03 [INFO] RPC client: Communicator ended with: 0
2017/11/30 10:53:03 [INFO] RPC endpoint: Communicator ended with: 0
2017/11/30 10:53:03 packer: 2017/11/30 10:53:03 [INFO] RPC client: Communicator ended with: 0
2017/11/30 10:53:03 packer: 2017/11/30 10:53:03 opening new ssh session
2017/11/30 10:53:03 packer: 2017/11/30 10:53:03 starting remote command: echo 'vagrant' | PACKER_BUILDER_TYPE='vmware-iso' PACKER_BUILD_NAME='vmware-iso' PACKER_HTTP_ADDR='192.168.197.1:8605' sudo -S -E bash '/tmp/script_6500.sh'
2017/11/30 10:53:03 ui:  vmware-iso: removed ‘/etc/yum.repos.d/CentOS-Base.repo’
2017/11/30 10:53:03 ui:  vmware-iso: removed ‘/etc/yum.repos.d/CentOS-CR.repo’
2017/11/30 10:53:03 ui:  vmware-iso: removed ‘/etc/yum.repos.d/CentOS-Debuginfo.repo’
2017/11/30 10:53:03 ui:  vmware-iso: removed ‘/etc/yum.repos.d/CentOS-fasttrack.repo’
2017/11/30 10:53:03 ui:  vmware-iso: removed ‘/etc/yum.repos.d/CentOS-Media.repo’
2017/11/30 10:53:03 ui:  vmware-iso: removed ‘/etc/yum.repos.d/CentOS-Sources.repo’
2017/11/30 10:53:03 ui:  vmware-iso: removed ‘/etc/yum.repos.d/CentOS-Vault.repo’
2017/11/30 10:53:03 ui:  vmware-iso: Loaded plugins: fastestmirror
2017/11/30 10:53:03 ui:  vmware-iso: Loading mirror speeds from cached hostfile
2017/11/30 10:53:03 ui:  vmware-iso: There are no enabled repos.
2017/11/30 10:53:03 ui:  vmware-iso: Run "yum repolist all" to see the repos you have.
2017/11/30 10:53:03 ui:  vmware-iso: To enable Red Hat Subscription Management repositories:
2017/11/30 10:53:03 ui:  vmware-iso: subscription-manager repos --enable <repo>
2017/11/30 10:53:03 ui:  vmware-iso: To enable custom repositories:
2017/11/30 10:53:03 ui:  vmware-iso: yum-config-manager --enable <repo>
2017/11/30 10:53:03 packer: 2017/11/30 10:53:03 [INFO] RPC endpoint: Communicator ended with: 0
2017/11/30 10:53:03 [INFO] 422 bytes written for 'stdout'
2017/11/30 10:53:03 [INFO] 256 bytes written for 'stderr'
2017/11/30 10:53:03 [INFO] RPC client: Communicator ended with: 0
2017/11/30 10:53:03 [INFO] RPC endpoint: Communicator ended with: 0
2017/11/30 10:53:03 packer: 2017/11/30 10:53:03 [INFO] 422 bytes written for 'stdout'
2017/11/30 10:53:03 packer: 2017/11/30 10:53:03 [INFO] 256 bytes written for 'stderr'
2017/11/30 10:53:03 packer: 2017/11/30 10:53:03 [INFO] RPC client: Communicator ended with: 0
2017/11/30 10:53:03 packer: 2017/11/30 10:53:03 opening new ssh session
2017/11/30 10:53:03 packer: 2017/11/30 10:53:03 starting remote command: rm -f /tmp/script_6500.sh
2017/11/30 10:53:03 packer: 2017/11/30 10:53:03 [INFO] RPC endpoint: Communicator ended with: 0
2017/11/30 10:53:03 [INFO] RPC client: Communicator ended with: 0
2017/11/30 10:53:03 [INFO] RPC endpoint: Communicator ended with: 0
2017/11/30 10:53:03 packer: 2017/11/30 10:53:03 [INFO] RPC client: Communicator ended with: 0
2017/11/30 10:53:03 [INFO] (telemetry) ending shell
2017/11/30 10:53:03 [INFO] (telemetry) Starting provisioner shell
2017/11/30 10:53:03 ui: ==> vmware-iso: Provisioning with shell script: scripts/cleanup.sh
2017/11/30 10:53:03 packer: 2017/11/30 10:53:03 Opening scripts/cleanup.sh for reading
2017/11/30 10:53:03 packer: 2017/11/30 10:53:03 [INFO] 1191 bytes written for 'uploadData'
2017/11/30 10:53:03 [INFO] 1191 bytes written for 'uploadData'
2017/11/30 10:53:03 packer: 2017/11/30 10:53:03 opening new ssh session
2017/11/30 10:53:03 packer: 2017/11/30 10:53:03 Starting remote scp process: scp -vt /tmp
2017/11/30 10:53:03 packer: 2017/11/30 10:53:03 Started SCP session, beginning transfers...
2017/11/30 10:53:03 packer: 2017/11/30 10:53:03 Copying input data into temporary file so we can read the length
2017/11/30 10:53:03 packer: 2017/11/30 10:53:03 [DEBUG] scp: Uploading script_3960.sh: perms=C0644 size=1191
2017/11/30 10:53:03 packer: 2017/11/30 10:53:03 SCP session complete, closing stdin pipe.
2017/11/30 10:53:03 packer: 2017/11/30 10:53:03 Waiting for SSH session to complete.
2017/11/30 10:53:03 packer: 2017/11/30 10:53:03 scp stderr (length 32): Sink: C0644 1191 script_3960.sh
2017/11/30 10:53:03 packer: 2017/11/30 10:53:03 opening new ssh session
2017/11/30 10:53:03 packer: 2017/11/30 10:53:03 starting remote command: chmod 0755 /tmp/script_3960.sh
2017/11/30 10:53:03 packer: 2017/11/30 10:53:03 [INFO] RPC endpoint: Communicator ended with: 0
2017/11/30 10:53:03 [INFO] RPC client: Communicator ended with: 0
2017/11/30 10:53:03 [INFO] RPC endpoint: Communicator ended with: 0
2017/11/30 10:53:03 packer: 2017/11/30 10:53:03 [INFO] RPC client: Communicator ended with: 0
2017/11/30 10:53:03 packer: 2017/11/30 10:53:03 opening new ssh session
2017/11/30 10:53:03 packer: 2017/11/30 10:53:03 starting remote command: echo 'vagrant' | PACKER_BUILDER_TYPE='vmware-iso' PACKER_BUILD_NAME='vmware-iso' PACKER_HTTP_ADDR='192.168.197.1:8605' sudo -S -E bash '/tmp/script_3960.sh'
2017/11/30 10:53:04 ui:  vmware-iso: Loaded plugins: fastestmirror
2017/11/30 10:53:04 ui:  vmware-iso: Loading mirror speeds from cached hostfile
2017/11/30 10:53:04 ui:  vmware-iso: There are no enabled repos.
2017/11/30 10:53:04 ui:  vmware-iso: Run "yum repolist all" to see the repos you have.
2017/11/30 10:53:04 ui:  vmware-iso: To enable Red Hat Subscription Management repositories:
2017/11/30 10:53:04 ui:  vmware-iso: subscription-manager repos --enable <repo>
2017/11/30 10:53:04 ui:  vmware-iso: To enable custom repositories:
2017/11/30 10:53:04 ui:  vmware-iso: yum-config-manager --enable <repo>
2017/11/30 10:53:10 ui:  vmware-iso: dd: error writing ‘/dev/dm-1’: No space left on device
2017/11/30 10:53:11 ui:  vmware-iso: 4097+0 records in
2017/11/30 10:53:11 ui:  vmware-iso: dd exit code 1 is suppressed
2017/11/30 10:53:11 ui:  vmware-iso: 4096+0 records out
2017/11/30 10:53:11 ui:  vmware-iso: 4294967296 bytes (4.3 GB) copied, 7.06529 s, 608 MB/s
2017/11/30 10:53:11 ui:  vmware-iso: Setting up swapspace version 1, size = 4194300 KiB
2017/11/30 10:53:11 ui:  vmware-iso: no label, UUID=408ad16c-6041-4c27-beab-03f1d569f6e9
2017/11/30 10:53:13 ui:  vmware-iso: dd: error writing ‘/EMPTY’: No space left on device
2017/11/30 10:53:13 ui:  vmware-iso: 3737+0 records in
2017/11/30 10:53:13 ui:  vmware-iso: 3736+0 records out
2017/11/30 10:53:13 ui:  vmware-iso: 3917656064 bytes (3.9 GB) copied, 2.01895 s, 1.9 GB/s
2017/11/30 10:53:15 ui:  vmware-iso: dd: error writing ‘/EMPTY’: No space left on device
2017/11/30 10:53:15 ui:  vmware-iso: 3737+0 records in
2017/11/30 10:53:15 ui:  vmware-iso: 3736+0 records out
2017/11/30 10:53:15 ui:  vmware-iso: 3917656064 bytes (3.9 GB) copied, 1.66254 s, 2.4 GB/s
2017/11/30 10:53:15 packer: 2017/11/30 10:53:15 [INFO] RPC endpoint: Communicator ended with: 0
2017/11/30 10:53:15 [INFO] 205 bytes written for 'stdout'
2017/11/30 10:53:15 [INFO] 700 bytes written for 'stderr'
2017/11/30 10:53:15 [INFO] RPC client: Communicator ended with: 0
2017/11/30 10:53:15 [INFO] RPC endpoint: Communicator ended with: 0
2017/11/30 10:53:15 packer: 2017/11/30 10:53:15 [INFO] 205 bytes written for 'stdout'
2017/11/30 10:53:15 packer: 2017/11/30 10:53:15 [INFO] 700 bytes written for 'stderr'
2017/11/30 10:53:15 packer: 2017/11/30 10:53:15 [INFO] RPC client: Communicator ended with: 0
2017/11/30 10:53:15 packer: 2017/11/30 10:53:15 opening new ssh session
2017/11/30 10:53:15 packer: 2017/11/30 10:53:15 starting remote command: rm -f /tmp/script_3960.sh
2017/11/30 10:53:15 packer: 2017/11/30 10:53:15 [INFO] RPC endpoint: Communicator ended with: 0
2017/11/30 10:53:15 [INFO] RPC client: Communicator ended with: 0
2017/11/30 10:53:15 [INFO] RPC endpoint: Communicator ended with: 0
2017/11/30 10:53:15 packer: 2017/11/30 10:53:15 [INFO] RPC client: Communicator ended with: 0
2017/11/30 10:53:15 [INFO] (telemetry) ending shell
2017/11/30 10:53:15 ui: ==> vmware-iso: Gracefully halting virtual machine...
2017/11/30 10:53:15 packer: 2017/11/30 10:53:15 Executing shutdown command: echo 'vagrant'|sudo -S /sbin/halt -h -p
2017/11/30 10:53:15 packer: 2017/11/30 10:53:15 opening new ssh session
2017/11/30 10:53:15 packer: 2017/11/30 10:53:15 starting remote command: echo 'vagrant'|sudo -S /sbin/halt -h -p
2017/11/30 10:53:15 packer: 2017/11/30 10:53:15 Waiting max 5m0s for shutdown to complete
2017/11/30 10:53:15 packer: 2017/11/30 10:53:15 Executing: /usr/local/bin/vmrun -T player list
2017/11/30 10:53:15 packer: 2017/11/30 10:53:15 Remote command exited without exit status or exit signal.
2017/11/30 10:53:15 packer: 2017/11/30 10:53:15 stdout: Total running VMs: 1
2017/11/30 10:53:15 packer: /home/USERNAME/project/packer-terraform-eval/vm_template/output-vmware-iso/packer-vm-base-7.4-x86_64.vmx
2017/11/30 10:53:15 packer: 2017/11/30 10:53:15 stderr: logger: socket /dev/log: Protocol wrong type for socket
2017/11/30 10:53:15 packer: 2017/11/30 10:53:15 Executing: /usr/local/bin/vmrun -T player list
2017/11/30 10:53:15 packer: 2017/11/30 10:53:15 stdout: Total running VMs: 1
2017/11/30 10:53:15 packer: /home/USERNAME/project/packer-terraform-eval/vm_template/output-vmware-iso/packer-vm-base-7.4-x86_64.vmx
2017/11/30 10:53:15 packer: 2017/11/30 10:53:15 stderr: logger: socket /dev/log: Protocol wrong type for socket
2017/11/30 10:53:16 packer: 2017/11/30 10:53:16 Executing: /usr/local/bin/vmrun -T player list
2017/11/30 10:53:16 packer: 2017/11/30 10:53:16 stdout: Total running VMs: 1
2017/11/30 10:53:16 packer: /home/USERNAME/project/packer-terraform-eval/vm_template/output-vmware-iso/packer-vm-base-7.4-x86_64.vmx
2017/11/30 10:53:16 packer: 2017/11/30 10:53:16 stderr: logger: socket /dev/log: Protocol wrong type for socket
2017/11/30 10:53:16 packer: 2017/11/30 10:53:16 Executing: /usr/local/bin/vmrun -T player list
2017/11/30 10:53:16 packer: 2017/11/30 10:53:16 stdout: Total running VMs: 1
2017/11/30 10:53:16 packer: /home/USERNAME/project/packer-terraform-eval/vm_template/output-vmware-iso/packer-vm-base-7.4-x86_64.vmx
2017/11/30 10:53:16 packer: 2017/11/30 10:53:16 stderr: logger: socket /dev/log: Protocol wrong type for socket
2017/11/30 10:53:16 packer: 2017/11/30 10:53:16 Executing: /usr/local/bin/vmrun -T player list
2017/11/30 10:53:17 packer: 2017/11/30 10:53:17 stdout: Total running VMs: 1
2017/11/30 10:53:17 packer: /home/USERNAME/project/packer-terraform-eval/vm_template/output-vmware-iso/packer-vm-base-7.4-x86_64.vmx
2017/11/30 10:53:17 packer: 2017/11/30 10:53:17 stderr: logger: socket /dev/log: Protocol wrong type for socket
2017/11/30 10:53:17 packer: 2017/11/30 10:53:17 Executing: /usr/local/bin/vmrun -T player list
2017/11/30 10:53:17 packer: 2017/11/30 10:53:17 stdout: Total running VMs: 1
2017/11/30 10:53:17 packer: /home/USERNAME/project/packer-terraform-eval/vm_template/output-vmware-iso/packer-vm-base-7.4-x86_64.vmx
2017/11/30 10:53:17 packer: 2017/11/30 10:53:17 stderr: logger: socket /dev/log: Protocol wrong type for socket
2017/11/30 10:53:17 packer: 2017/11/30 10:53:17 Executing: /usr/local/bin/vmrun -T player list
2017/11/30 10:53:17 packer: 2017/11/30 10:53:17 stdout: Total running VMs: 0
2017/11/30 10:53:17 packer: 2017/11/30 10:53:17 stderr: logger: socket /dev/log: Protocol wrong type for socket
2017/11/30 10:53:17 ui:  vmware-iso: Waiting for VMware to clean up after itself...
2017/11/30 10:53:17 packer: 2017/11/30 10:53:17 No more lock files found. VMware is clean.
2017/11/30 10:53:22 packer: 2017/11/30 10:53:22 VM shut down.
2017/11/30 10:53:22 ui: ==> vmware-iso: Deleting unnecessary VMware files...
2017/11/30 10:53:22 ui:  vmware-iso: Deleting: output-vmware-iso/vmware.log
2017/11/30 10:53:22 ui: ==> vmware-iso: Compacting the disk image
2017/11/30 10:53:22 packer: 2017/11/30 10:53:22 Executing: /usr/bin/qemu-img convert -f vmdk -O vmdk -o compat6 output-vmware-iso/disk.vmdk output-vmware-iso/disk.vmdk.new
2017/11/30 10:53:29 packer: 2017/11/30 10:53:29 stdout:
2017/11/30 10:53:29 packer: 2017/11/30 10:53:29 stderr:
2017/11/30 10:53:29 packer: 2017/11/30 10:53:29 Setting VMX: 'ethernet0.connectionType' = 'bridged'
2017/11/30 10:53:29 packer: 2017/11/30 10:53:29 Setting VMX: 'ethernet0.startConnected' = 'TRUE'
2017/11/30 10:53:29 packer: 2017/11/30 10:53:29 Writing VMX to: output-vmware-iso/packer-vm-base-7.4-x86_64.vmx
2017/11/30 10:53:29 ui: ==> vmware-iso: Cleaning VMX prior to finishing up...
2017/11/30 10:53:29 ui:  vmware-iso: Unmounting floppy from VMX...
2017/11/30 10:53:29 packer: 2017/11/30 10:53:29 Deleting key: floppy0.present
2017/11/30 10:53:29 ui:  vmware-iso: Detaching ISO from CD-ROM device...
2017/11/30 10:53:29 ui:  vmware-iso: Disabling VNC server...
2017/11/30 10:53:29 ui:  vmware-iso: Removing Ethernet Interfaces...
2017/11/30 10:53:29 packer: 2017/11/30 10:53:29 Deleting key: ethernet0.present
2017/11/30 10:53:29 packer: 2017/11/30 10:53:29 Deleting key: ethernet0.wakeonpcktrcv
2017/11/30 10:53:29 packer: 2017/11/30 10:53:29 Deleting key: ethernet0.linkstatepropagation.enable
2017/11/30 10:53:29 packer: 2017/11/30 10:53:29 Deleting key: ethernet0.displayname
2017/11/30 10:53:29 packer: 2017/11/30 10:53:29 Deleting key: ethernet0.networkname
2017/11/30 10:53:29 packer: 2017/11/30 10:53:29 Deleting key: ethernet0.virtualdev
2017/11/30 10:53:29 packer: 2017/11/30 10:53:29 Deleting key: ethernet0.addresstype
2017/11/30 10:53:29 packer: 2017/11/30 10:53:29 Deleting key: ethernet0.bsdname
2017/11/30 10:53:29 packer: 2017/11/30 10:53:29 Deleting key: ethernet0.pcislotnumber
2017/11/30 10:53:29 packer: 2017/11/30 10:53:29 Deleting key: ethernet0.connectiontype
2017/11/30 10:53:29 packer: 2017/11/30 10:53:29 Deleting key: ethernet0.startconnected
2017/11/30 10:53:29 packer: 2017/11/30 10:53:29 Writing VMX to: output-vmware-iso/packer-vm-base-7.4-x86_64.vmx
2017/11/30 10:53:29 ui: ==> vmware-iso: Skipping export of virtual machine (export is allowed only for ESXi and the format needs to be specified)...
2017/11/30 10:53:29 packer: 2017/11/30 10:53:29 Executing: /usr/local/bin/vmrun -T player list
2017/11/30 10:53:29 packer: 2017/11/30 10:53:29 stdout: Total running VMs: 0
2017/11/30 10:53:29 packer: 2017/11/30 10:53:29 stderr: logger: socket /dev/log: Protocol wrong type for socket
2017/11/30 10:53:29 [INFO] (telemetry) ending vmware-iso
2017/11/30 10:53:29 ui: ==> vmware-iso: Running post-processor: vsphere
2017/11/30 10:53:29 [INFO] (telemetry) Starting post-processor vsphere
2017/11/30 10:53:29 ui:  vmware-iso (vsphere): Uploading output-vmware-iso/packer-vm-base-7.4-x86_64.vmx to vSphere
2017/11/30 10:53:29 packer: 2017/11/30 10:53:29 Starting ovftool with parameters: --acceptAllEulas --name=packer-vm-template --datastore=fc_int_inf_vm_lt_LUN103 --noSSLVerify=true --diskMode=thin --vmFolder=template --overwrite output-vmware-iso/packer-vm-base-7.4-x86_64.vmx vi://Administrator%40int.vsphere.local:<password>@int-inf-vca-010.inf.int.COMPANY.services/int-inf-datacenter/host/DEV-PROD
2017/11/30 11:06:38 ui:  vmware-iso (vsphere): Opening VMX source: output-vmware-iso/packer-vm-base-7.4-x86_64.vmx
vmware-iso (vsphere): Opening VI target: vi://Administrator%40int.vsphere.local@int-inf-vca-010.inf.int.COMPANY.services:443/int-inf-datacenter/host/DEV-PROD
vmware-iso (vsphere): Deploying to VI: vi://Administrator%40int.vsphere.local@int-inf-vca-010.inf.int.COMPANY.services:443/int-inf-datacenter/host/DEV-PROD
vmware-iso (vsphere):
Disk progress: 1%
Disk progress: 2%
Disk progress: 3%
Disk progress: 4%
Disk progress: 5%
Disk progress: 6%
Disk progress: 7%
Disk progress: 8%
Disk progress: 9%
Disk progress: 10%
Disk progress: 11%
Disk progress: 12%
Disk progress: 13%
Disk progress: 14%
Disk progress: 15%
Disk progress: 16%
Disk progress: 17%
Disk progress: 18%
Disk progress: 19%
Disk progress: 20%
Disk progress: 21%
Disk progress: 22%
Disk progress: 23%
Disk progress: 24%
Disk progress: 25%
Disk progress: 26%
Disk progress: 27%
Disk progress: 28%
Disk progress: 29%
Disk progress: 30%
Disk progress: 31%
Disk progress: 32%
Disk progress: 33%
Disk progress: 34%
Disk progress: 35%
Disk progress: 36%
Disk progress: 37%
Disk progress: 38%
Disk progress: 39%
Disk progress: 40%
Disk progress: 41%
Disk progress: 42%
Disk progress: 43%
Disk progress: 44%
Disk progress: 45%
Disk progress: 46%
Disk progress: 47%
Disk progress: 48%
Disk progress: 49%
Disk progress: 50%
Disk progress: 51%
Disk progress: 52%
Disk progress: 53%
Disk progress: 54%
Disk progress: 55%
Disk progress: 56%
Disk progress: 57%
Disk progress: 58%
Disk progress: 59%
Disk progress: 60%
Disk progress: 61%
Disk progress: 62%
Disk progress: 63%
Disk progress: 64%
Disk progress: 65%
Disk progress: 66%
Disk progress: 67%
Disk progress: 68%
Disk progress: 69%
Disk progress: 70%
Disk progress: 71%
Disk progress: 72%
Disk progress: 73%
Disk progress: 74%
Disk progress: 75%
Disk progress: 76%
Disk progress: 77%
Disk progress: 78%
Disk progress: 79%
Disk progress: 80%
Disk progress: 81%
Disk progress: 82%
Disk progress: 83%
Disk progress: 84%
Disk progress: 85%
Disk progress: 86%
Disk progress: 87%
Disk progress: 88%
Disk progress: 89%
Disk progress: 90%
Disk progress: 91%
Disk progress: 92%
Disk progress: 93%
Disk progress: 94%
Disk progress: 95%
Disk progress: 96%
Disk progress: 97%
Disk progress: 98%
Disk progress: 99%
Transfer Completed
vmware-iso (vsphere): Completed successfully
vmware-iso (vsphere):
2017/11/30 11:06:38 [INFO] (telemetry) ending vsphere
2017/11/30 11:06:38 ui: ==> vmware-iso: Running post-processor: vsphere-template
2017/11/30 11:06:38 [INFO] (telemetry) Starting post-processor vsphere-template
2017/11/30 11:06:38 ui:  vmware-iso (vsphere-template): Waiting 10s for VMware vSphere to start
2017/11/30 11:06:48 ui:  vmware-iso (vsphere-template): Choosing datacenter...
2017/11/30 11:06:49 ui:  vmware-iso (vsphere-template): Creating or checking destination folders...
2017/11/30 11:06:49 ui:  vmware-iso (vsphere-template): Marking as a template...
2017/11/30 11:06:49 [INFO] (telemetry) ending vsphere-template
2017/11/30 11:06:49 ui: ==> vmware-iso: Running post-processor: vagrant
2017/11/30 11:06:49 [INFO] (telemetry) Starting post-processor vagrant
2017/11/30 11:06:49 ui: ==> vmware-iso (vagrant): Creating Vagrant box for 'vmware' provider
2017/11/30 11:06:49 ui:  vmware-iso (vagrant): Copying: output-vmware-iso/disk.vmdk
2017/11/30 11:06:50 ui:  vmware-iso (vagrant): Copying: output-vmware-iso/packer-vm-base-7.4-x86_64.nvram
2017/11/30 11:06:50 ui:  vmware-iso (vagrant): Copying: output-vmware-iso/packer-vm-base-7.4-x86_64.vmsd
2017/11/30 11:06:50 ui:  vmware-iso (vagrant): Copying: output-vmware-iso/packer-vm-base-7.4-x86_64.vmx
2017/11/30 11:06:50 ui:  vmware-iso (vagrant): Copying: output-vmware-iso/packer-vm-base-7.4-x86_64.vmxf
2017/11/30 11:06:50 packer: 2017/11/30 11:06:50 Turning dir into box: /tmp/packer857015835 => builds/vmware-centos7.box
2017/11/30 11:06:50 packer: 2017/11/30 11:06:50 Compressing with gzip compression level: -1
2017/11/30 11:06:50 packer: 2017/11/30 11:06:50 Skipping directory '/tmp/packer857015835' for box 'builds/vmware-centos7.box'
2017/11/30 11:06:50 packer: 2017/11/30 11:06:50 Box add: '/tmp/packer857015835/Vagrantfile' to 'builds/vmware-centos7.box'
2017/11/30 11:06:50 ui:  vmware-iso (vagrant): Compressing: Vagrantfile
2017/11/30 11:06:50 packer: 2017/11/30 11:06:50 Box add: '/tmp/packer857015835/disk.vmdk' to 'builds/vmware-centos7.box'
2017/11/30 11:06:50 ui:  vmware-iso (vagrant): Compressing: disk.vmdk
2017/11/30 11:07:08 packer: 2017/11/30 11:07:08 Box add: '/tmp/packer857015835/metadata.json' to 'builds/vmware-centos7.box'
2017/11/30 11:07:08 ui:  vmware-iso (vagrant): Compressing: metadata.json
2017/11/30 11:07:08 packer: 2017/11/30 11:07:08 Box add: '/tmp/packer857015835/packer-vm-base-7.4-x86_64.nvram' to 'builds/vmware-centos7.box'
2017/11/30 11:07:08 ui:  vmware-iso (vagrant): Compressing: packer-vm-base-7.4-x86_64.nvram
2017/11/30 11:07:08 ui:  vmware-iso (vagrant): Compressing: packer-vm-base-7.4-x86_64.vmsd
2017/11/30 11:07:08 packer: 2017/11/30 11:07:08 Box add: '/tmp/packer857015835/packer-vm-base-7.4-x86_64.vmsd' to 'builds/vmware-centos7.box'
2017/11/30 11:07:08 packer: 2017/11/30 11:07:08 Box add: '/tmp/packer857015835/packer-vm-base-7.4-x86_64.vmx' to 'builds/vmware-centos7.box'
2017/11/30 11:07:08 ui:  vmware-iso (vagrant): Compressing: packer-vm-base-7.4-x86_64.vmx
2017/11/30 11:07:08 packer: 2017/11/30 11:07:08 Box add: '/tmp/packer857015835/packer-vm-base-7.4-x86_64.vmxf' to 'builds/vmware-centos7.box'
2017/11/30 11:07:08 ui:  vmware-iso (vagrant): Compressing: packer-vm-base-7.4-x86_64.vmxf
2017/11/30 11:07:08 [INFO] (telemetry) ending vagrant
2017/11/30 11:07:08 Deleting original artifact for build 'vmware-iso'
2017/11/30 11:07:08 ui: Build 'vmware-iso' finished.
2017/11/30 11:07:08 Builds completed. Waiting on interrupt barrier...
2017/11/30 11:07:08 ui:
==> Builds finished. The artifacts of successful builds are:
2017/11/30 11:07:08 machine readable: vmware-iso,artifact-count []string{"3"}
2017/11/30 11:07:08 machine readable: vmware-iso,artifact []string{"0", "builder-id", "packer.post-processor.vsphere"}
2017/11/30 11:07:08 machine readable: vmware-iso,artifact []string{"0", "id", "fc_int_inf_vm_lt_LUN103::template::packer-vm-template"}
2017/11/30 11:07:08 machine readable: vmware-iso,artifact []string{"0", "string", "VM: packer-vm-template Folder: template Datastore: fc_int_inf_vm_lt_LUN103"}
2017/11/30 11:07:08 machine readable: vmware-iso,artifact []string{"0", "files-count", "5"}
2017/11/30 11:07:08 machine readable: vmware-iso,artifact []string{"0", "file", "0", "output-vmware-iso/disk.vmdk"}
2017/11/30 11:07:08 machine readable: vmware-iso,artifact []string{"0", "file", "1", "output-vmware-iso/packer-vm-base-7.4-x86_64.nvram"}
2017/11/30 11:07:08 machine readable: vmware-iso,artifact []string{"0", "file", "2", "output-vmware-iso/packer-vm-base-7.4-x86_64.vmsd"}
2017/11/30 11:07:08 machine readable: vmware-iso,artifact []string{"0", "file", "3", "output-vmware-iso/packer-vm-base-7.4-x86_64.vmx"}
2017/11/30 11:07:08 machine readable: vmware-iso,artifact []string{"0", "file", "4", "output-vmware-iso/packer-vm-base-7.4-x86_64.vmxf"}
2017/11/30 11:07:08 machine readable: vmware-iso,artifact []string{"0", "end"}
2017/11/30 11:07:08 ui: --> vmware-iso: VM: packer-vm-template Folder: template Datastore: fc_int_inf_vm_lt_LUN103
2017/11/30 11:07:08 machine readable: vmware-iso,artifact []string{"1", "builder-id", ""}
2017/11/30 11:07:08 machine readable: vmware-iso,artifact []string{"1", "id", ""}
2017/11/30 11:07:08 machine readable: vmware-iso,artifact []string{"1", "string", ""}
2017/11/30 11:07:08 machine readable: vmware-iso,artifact []string{"1", "files-count", "0"}
2017/11/30 11:07:08 machine readable: vmware-iso,artifact []string{"1", "end"}
2017/11/30 11:07:08 ui: --> vmware-iso:
2017/11/30 11:07:08 machine readable: vmware-iso,artifact []string{"2", "builder-id", "mitchellh.post-processor.vagrant"}
2017/11/30 11:07:08 machine readable: vmware-iso,artifact []string{"2", "id", "vmware"}
2017/11/30 11:07:08 machine readable: vmware-iso,artifact []string{"2", "string", "'vmware' provider box: builds/vmware-centos7.box"}
2017/11/30 11:07:08 machine readable: vmware-iso,artifact []string{"2", "files-count", "1"}
2017/11/30 11:07:08 machine readable: vmware-iso,artifact []string{"2", "file", "0", "builds/vmware-centos7.box"}
2017/11/30 11:07:08 machine readable: vmware-iso,artifact []string{"2", "end"}
2017/11/30 11:07:08 ui: --> vmware-iso: 'vmware' provider box: builds/vmware-centos7.box
2017/11/30 11:07:08 [INFO] (telemetry) Finalizing.
2017/11/30 11:07:09 waiting for all plugin processes to complete...
2017/11/30 11:07:09 /home/USERNAME/project/packer-terraform-eval/go-packer/bin/packer: plugin process exited
2017/11/30 11:07:09 /home/USERNAME/project/packer-terraform-eval/go-packer/bin/packer: plugin process exited
2017/11/30 11:07:09 /home/USERNAME/project/packer-terraform-eval/go-packer/bin/packer: plugin process exited
2017/11/30 11:07:09 /home/USERNAME/project/packer-terraform-eval/go-packer/bin/packer: plugin process exited
2017/11/30 11:07:09 /home/USERNAME/project/packer-terraform-eval/go-packer/bin/packer: plugin process exited
2017/11/30 11:07:09 /home/USERNAME/project/packer-terraform-eval/go-packer/bin/packer: plugin process exited
2017/11/30 11:07:09 /home/USERNAME/project/packer-terraform-eval/go-packer/bin/packer: plugin process exited
vCenter 6.0 update 2
in case you need the exact build numbers, I would have to get them for you. no problem, I would do that gladly, of course.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment