diff --git a/.gitignore b/.gitignore index c3dea6687..6ab3cdfb9 100644 --- a/.gitignore +++ b/.gitignore @@ -10,6 +10,7 @@ test/.env *~ *.received.* +*.swp website/.bundle website/vendor @@ -21,3 +22,5 @@ packer-test*.log .idea/ *.iml +Thumbs.db +/packer.exe \ No newline at end of file diff --git a/.travis.yml b/.travis.yml index 0133518e9..5e753eb01 100644 --- a/.travis.yml +++ b/.travis.yml @@ -8,6 +8,7 @@ language: go go: - 1.7.4 - 1.8.3 + - 1.9 install: - make deps @@ -21,5 +22,3 @@ branches: matrix: fast_finish: true - allow_failures: - - go: 1.4.3 diff --git a/CHANGELOG.md b/CHANGELOG.md index be9fcd0d3..dfdab519f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,192 @@ -## 1.0.3 (July 17, 2017) +## (UNRELEASED) ### IMRPOVEMENTS: -* builder/Azure: Update to latest Azure SDK, enabling support for managed + +* post-processor/docker-push: Add `aws_profile` option to control the aws profile for ECR. [GH-5470] +* builder/docker: Add `aws_profile` option to control the aws profile for ECR. [GH-5470] +* post-processor/vsphere: Properly capture `ovftool` output. [GH-5499] +* builder/hyper-v: Also disable automatic checkpoints for gen 2 VMs. [GH-5517] +* builder/hyper-v: Add `disk_additional_size` option to allow for up to 64 additional disks. [GH-5491] +* builder/amazon: correctly deregister AMIs when `force_deregister` is set. [GH-5525] +* builder/digitalocean: Add `ipv6` option to enable on droplet. [GH-5534] +* builder/triton: Add `source_machine_image_filter` option to select an image ID based on a variety of parameters. [GH-5538] +* communicator/ssh: Add socks 5 proxy support. [GH-5439] +* builder/lxc: Add new `publish_properties` field to set image properties. [GH-5475] +* builder/virtualbox-ovf: Retry while removing VM to solve for transient errors. [GH-5512] +* builder/google: Interpolate network and subnetwork values, rather than relying on an API call that packer may not have permission for. [GH-5343] +* builder/lxc: Add three new configuration option categories to LXC builder: create_options, start_options, and attach_options. [GH-5530] +* core: Rewrite vagrantfile code to make cross-platform development easier. [5539] +* builder/triton: Update triton-go sdk. [GH-5531] +* builder/google: Add clean_image_name template engine. [GH-5463] + +### BUG FIXES: + +* builder/docker: Remove `login_email`, which no longer exists in the docker client. [GH-5511] +* builder/triton: Fix a bug where partially created images can be reported as complete. [GH-5566] +* builder/amazon: region is set from profile, if profile is set, rather than being overridden by metadata. [GH-5562] +* provisioner/windows-restart: Wait for restart no longer endlessly loops if user specifies a custom restart check command. [GH-5563] +* post-processor/vsphere: Use the vm disk path information to re-create the vmx datastore path. [GH-5567] +* builder/amazon: Add a delay option to security group waiter. [GH-5536] +* builder/amazon: Fix regressions relating to spot instances and EBS volumes. [GH-5495] +* builder/hyperv: Fix admin check that was causing powershell failures. [GH-5510] +* builder/oracle: Defaulting of OCI builder region will first check the packer template and the OCI config file. [GH-5407] + +## 1.1.1 (October 13, 2017) + +### IMPROVEMENTS: + +* **New builder:** `hyperv-vmcx` for building images from existing VMs. + [GH-4944] [GH-5444] +* builder/amazon-instance: Add `.Token` as a variable in the + `BundleUploadCommand` template. [GH-5288] +* builder/amazon: Add `temporary_security_group_source_cidr` option to control + ingress to source instances. [GH-5384] +* builder/amazon: Output AMI Name during prevalidation. [GH-5389] +* builder/amazon: Support template functions in tag keys. [GH-5381] +* builder/amazon: Tag volumes on creation instead of as a separate step. + [GH-5417] +* builder/docker: Add option to set `--user` flag when running `exec`. + [GH-5406] +* builder/docker: Set file owner to container user when uploading. Can be + disabled by setting `fix_upload_owner` to `false`. [GH-5422] +* builder/googlecompute: Support setting labels on the resulting image. + [GH-5356] +* builder/hyper-v: Add `vhd_temp_path` option to control where the VHD resides + while it's being provisioned. [GH-5206] +* builder/hyper-v: Allow vhd or vhdx source images instead of just ISO. + [GH-4944] [GH-5444] +* builder/hyper-v: Disable automatic checkpoints. [GH-5374] +* builder/virtualbox-ovf: Add `keep_registered` option. [GH-5336] +* builder/vmware: Add `disable_vnc` option to prevent VNC connections from + being made. [GH-5436] +* core: Releases will now be built for ppc64le. +* post-processor/vagrant: When building from a builder/hyper-v artifact, link + instead of copy when available. [GH-5207] + + +### BUG FIXES: + +* builder/cloudstack: Fix panic if build is aborted. [GH-5388] +* builder/hyper-v: Respect `enable_dynamic_memory` flag. [GH-5363] +* builder/puppet-masterless: Make sure directories created with sudo are + writable by the packer user. [GH-5351] +* provisioner/chef-solo: Fix issue installing chef-solo on Windows. [GH-5357] +* provisioner/powershell: Fix issue setting environment variables by writing + them to a file, instead of the command line. [GH-5345] +* provisioner/powershell: Fix issue where powershell scripts could hang. + [GH-5082] +* provisioner/powershell: Fix Powershell progress stream leak to stderr for + normal and elevated commands. [GH-5365] +* provisioner/puppet-masterless: Fix bug where `puppet_bin_dir` wasn't being + respected. [GH-5340] +* provisioner/puppet: Fix setting facter vars on Windows. [GH-5341] + + +## 1.1.0 (September 12, 2017) + +### IMPROVEMENTS: + +* builder/alicloud: Update alicloud go sdk and enable multi sites support for + alicloud [GH-5219] +* builder/amazon: Upgrade aws-sdk-go to 1.10.14, add tags at instance run time. + [GH-5196] +* builder/azure: Add object_id to windows_custom_image.json. [GH-5285] +* builder/azure: Add support for storage account for managed images. [GH-5244] +* builder/azure: Update pkcs12 package. [GH-5301] +* builder/cloudstack: Add support for Security Groups. [GH-5175] +* builder/docker: Uploading files and directories now use docker cp. [GH-5273] + [GH-5333] +* builder/googlecompute: Add `labels` option for labeling launched instances. + [GH-5308] +* builder/googlecompute: Add support for accelerator api. [GH-5137] +* builder/profitbricks: added support for Cloud API v4. [GH-5233] +* builder/vmware-esxi: Remote builds now respect `output_directory` [GH-4592] +* builder/vmware: Set artifact ID to `VMName`. [GH-5187] +* core: Build solaris binary by default. [GH-5268] [GH-5248] +* core: Remove LGPL dependencies. [GH-5262] +* provisioner/puppet: Add `guest_os_type` option to add support for Windows. + [GH-5252] +* provisioner/salt-masterless: Also use sudo to clean up if we used sudo to + install. [GH-5240] + +### BACKWARDS INCOMPATIBILITIES: + +* builder/amazon: Changes way that AMI artifacts are printed out after build, + aligning them to builder. Could affect output parsing. [GH-5281] +* builder/amazon: Split `enhanced_networking` into `sriov_support` and + `ena_support` to support finer grained control. Use `packer fix + ` to automatically update your template to use `ena_support` + where previously there was only `enhanced_networking`. Make sure to also + add `sriov_support` if you need that feature, and to ensure `ena_support` + is what you intended to be in your template. [GH-5284] +* builder/cloudstack: Setup temporary SSH keypair; backwards incompatible in + the uncommon case that the source image allowed SSH auth with password but + not with keypair. [GH-5174] +* communicator/ssh: Renamed `ssh_disable_agent` to + `ssh_disable_agent_forwarding`. Need to run fixer on packer configs that + use `ssh_disable_agent`. [GH-5024] +* communicator: Preserve left-sided white-space in remote command output. Make + sure any scripts that parse this output can handle the new whitespace + before upgrading. [GH-5167] +* provisioner/shell: Set default for `ExpectDisconnect` to `false`. If your + script causes the connection to be reset, you should set this to `true` to + prevent errors. [GH-5283] + +### BUG FIXES: + +* builder/amazon: `force_deregister` works in all regions, not just original + region. [GH-5250] +* builder/docker: Directory uploads now use the same semantics as the rest of + the communicators. [GH-5333] +* builder/vmware: Fix timestamp in default VMName. [GH-5274] +* builder/winrm: WinRM now waits to make sure commands can run successfully + before considering itself connected. [GH-5300] +* core: Fix issue where some builders wouldn't respect `-on-error` behavior. + [GH-5297] +* provisioner/windows-restart: The first powershell provisioner after a restart + now works. [GH-5272] + +### FEATURES: + +* **New builder**: Oracle Cloud Infrastructure (OCI) builder for creating + custom images. [GH-4554] +* **New builder:** `lxc` for building lxc images. [GH-3523] +* **New builder:** `lxd` for building lxd images. [GH-3625] +* **New post-processor**: vSphere Template post-processor to be used with + vmware-iso builder enabling user to mark a VM as a template. [GH-5114] + +## 1.0.4 (August 11, 2017) + +### IMPROVEMENTS: + +* builder/alicloud: Increase polling timeout. [GH-5148] +* builder/azure: Add `private_virtual_network_with_public_ip` option to + optionally obtain a public IP. [GH-5222] +* builder/googlecompute: use a more portable method of obtaining zone. + [GH-5192] +* builder/hyperv: Properly interpolate user variables in template. [GH-5184] +* builder/parallels: Remove soon to be removed --vmtype flag in createvm. + [GH-5172] +* contrib: add json files to zsh completion. [GH-5195] + +### BUG FIXES: + +* builder/amazon: Don't delete snapshots we didn't create. [GH-5211] +* builder/amazon: fix builds when using the null communicator. [GH-5217] +* builder/docker: Correctly handle case when uploading an empty directory. + [GH-5234] +* command/push: Don't push variables if they are unspecified. Reverts to + behavior in 1.0.1. [GH-5235] +* command/push: fix handling of symlinks. [GH-5226] +* core: Strip query parameters from ISO URLs when checking against a checksum + file. [GH-5181] +* provisioner/ansible-remote: Fix issue where packer could hang communicating + with ansible-remote. [GH-5146] + +## 1.0.3 (July 17, 2017) + +### IMPROVEMENTS: +* builder/azure: Update to latest Azure SDK, enabling support for managed disks. [GH-4511] * builder/cloudstack: Add default cidr_list [ 0.0.0.0/0 ]. [GH-5125] * builder/cloudstack: Add support for ssh_agent_auth. [GH-5130] @@ -42,7 +227,7 @@ provisioner stdout [GH-4719] * post-processor/checksum: Fix interpolation of "output". [GH-5112] * push: Push vars in packer config, not just those set from command line and in - var-file. [GH-4992] + var-file. [GH-5101] ## 1.0.2 (June 21, 2017) diff --git a/CODEOWNERS b/CODEOWNERS new file mode 100644 index 000000000..c037a38d4 --- /dev/null +++ b/CODEOWNERS @@ -0,0 +1,26 @@ +* @hashicorp/packer + +# builders + +/builder/alicloud/ dongxiao.zzh@alibaba-inc.com +/builder/amazon/ebssurrogate/ @jen20 +/builder/amazon/ebsvolume/ @jen20 +/builder/azure/ @boumenot +/builder/hyperv/ @taliesins +/builder/lxc/ @ChrisLundquist +/builder/lxd/ @ChrisLundquist +/builder/oneandone/ @jasmingacic +/builder/oracle/ @prydie @owainlewis +/builder/profitbricks/ @jasmingacic +/builder/triton/ @jen20 @sean- + +# provisioners + +/provisioner/ansible/ @bhcleek +/provisioner/converge/ @stevendborrelli + +# post-processors +/post-processor/alicloud-import/ dongxiao.zzh@alibaba-inc.com +/post-processor/checksum/ v.tolstov@selfip.ru +/post-processor/googlecompute-export/ crunkleton@google.com +/post-processor/vsphere-template/ nelson@bennu.cl diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index b4025859e..acababe3f 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -54,7 +54,7 @@ If you have never worked with Go before, you will have to complete the following steps in order to be able to compile and test Packer. These instructions target POSIX-like environments (Mac OS X, Linux, Cygwin, etc.) so you may need to adjust them for Windows or other shells. 1. [Download](https://golang.org/dl) and install Go. The instructions below - are for go 1.6. Earlier versions of Go are no longer supported. + are for go 1.7. Earlier versions of Go are no longer supported. 2. Set and export the `GOPATH` environment variable and update your `PATH`. For example, you can add to your `.bash_profile`. diff --git a/Makefile b/Makefile index d7f3578ec..3a68f0ba5 100644 --- a/Makefile +++ b/Makefile @@ -51,8 +51,9 @@ dev: deps ## Build and install a development build exit 1; \ fi @mkdir -p pkg/$(GOOS)_$(GOARCH) + @mkdir -p bin @go install -ldflags '$(GOLDFLAGS)' - @cp $(GOPATH)/bin/packer bin + @cp $(GOPATH)/bin/packer bin/packer @cp $(GOPATH)/bin/packer pkg/$(GOOS)_$(GOARCH) fmt: ## Format Go code diff --git a/README.md b/README.md index 64b28076c..5249f515e 100644 --- a/README.md +++ b/README.md @@ -34,6 +34,7 @@ comes out of the box with support for the following platforms: * Hyper-V * 1&1 * OpenStack +* Oracle Cloud Infrastructure * Parallels * ProfitBricks * QEMU. Both KVM and Xen images. diff --git a/Vagrantfile b/Vagrantfile index b61b3d209..30b0437ba 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -1,50 +1,89 @@ # -*- mode: ruby -*- # vi: set ft=ruby : -$script = <` tags to enclose any commands +that you would normally run in a Command Prompt window. See +[Running Commands on Your Windows Instance at Launch]( +http://docs.aws.amazon.com/AWSEC2/latest/WindowsGuide/ec2-windows-user-data.html) +for more info about what's going on behind the scenes here. + +```powershell + +# Set administrator password +net user Administrator SuperS3cr3t! +wmic useraccount where "name='Administrator'" set PasswordExpires=FALSE + +# First, make sure WinRM can't be connected to +netsh advfirewall firewall set rule name="Windows Remote Management (HTTP-In)" new enable=yes action=block + +# Delete any existing WinRM listeners +winrm delete winrm/config/listener?Address=*+Transport=HTTP 2>$Null +winrm delete winrm/config/listener?Address=*+Transport=HTTPS 2>$Null + +# Create a new WinRM listener and configure +winrm create winrm/config/listener?Address=*+Transport=HTTP +winrm set winrm/config/winrs '@{MaxMemoryPerShellMB="0"}' +winrm set winrm/config '@{MaxTimeoutms="7200000"}' +winrm set winrm/config/service '@{AllowUnencrypted="true"}' +winrm set winrm/config/service '@{MaxConcurrentOperationsPerUser="12000"}' +winrm set winrm/config/service/auth '@{Basic="true"}' +winrm set winrm/config/client/auth '@{Basic="true"}' + +# Configure UAC to allow privilege elevation in remote shells +$Key = 'HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System' +$Setting = 'LocalAccountTokenFilterPolicy' +Set-ItemProperty -Path $Key -Name $Setting -Value 1 -Force + +# Configure and restart the WinRM Service; Enable the required firewall exception +Stop-Service -Name WinRM +Set-Service -Name WinRM -StartupType Automatic +netsh advfirewall firewall set rule name="Windows Remote Management (HTTP-In)" new action=allow localip=any remoteip=any +Start-Service -Name WinRM + +``` + +Save the above code in a file named `bootstrap_win.txt`. + +-> **A quick aside/warning:**
+Windows administrators in the know might be wondering why we haven't simply +used a `winrm quickconfig -q` command in the script above, as this would +*automatically* set up all of the required elements necessary for connecting +over WinRM. Why all the extra effort to configure things manually?
+Well, long and short, use of the `winrm quickconfig -q` command can sometimes +cause the Packer build to fail shortly after the WinRM connection is +established. How?
+1. Among other things, as well as setting up the listener for WinRM, the +quickconfig command also configures the firewall to allow management messages +to be sent over HTTP.
+2. This undoes the previous command in the script that configured the +firewall to prevent this access.
+3. The upshot is that the system is configured and ready to accept WinRM +connections earlier than intended.
+4. If Packer establishes its WinRM connection immediately after execution of +the 'winrm quickconfig -q' command, the later commands within the script that +restart the WinRM service will unceremoniously pull the rug out from under +the connection.
+5. While Packer does *a lot* to ensure the stability of its connection in to +your instance, this sort of abuse can prove to be too much and *may* cause +your Packer build to stall irrecoverably or fail! + +Now we've got the business of getting Packer connected to our instance +taken care of, let's get on with the *real* reason we're doing all this, +which is actually configuring and customizing the instance. Again, we do this +with [Provisioners](/docs/provisioners/index.html). + +The example config below shows the two different ways of using the [PowerShell +provisioner](/docs/provisioners/powershell.html): `inline` and `script`. +The first example, `inline`, allows you to provide short snippets of code, and +will create the script file for you. The second example allows you to run more +complex code by providing the path to a script to run on the guest VM. + +Here's an example of a `sample_script.ps1` that will work with the environment +variables we will set in our build template; copy the contents into your own +`sample_script.ps1` and provide the path to it in your build template: + +```powershell +Write-Host "PACKER_BUILD_NAME is automatically set for you, " -NoNewline +Write-Host "or you can set it in your builder variables; " -NoNewline +Write-Host "The default for this builder is:" $Env:PACKER_BUILD_NAME + +Write-Host "Use backticks as the escape character when required in powershell:" +Write-Host "For example, VAR1 from our config is:" $Env:VAR1 +Write-Host "Likewise, VAR2 is:" $Env:VAR2 +Write-Host "Finally, VAR3 is:" $Env:VAR3 +``` + +Finally, we need to create the actual [build template]( +/docs/templates/index.html). +Remember, this template is the core configuration file that Packer uses to +understand what you want to build, and how you want to build it. + +As mentioned earlier, the specific builder we are using in this example +is the [Amazon EBS builder](/docs/builders/amazon-ebs.html). +The template below demonstrates use of the [`source_ami_filter`]( +/docs/builders/amazon-ebs.html#source_ami_filter) configuration option +available within the builder for automatically selecting the *latest* +suitable source Windows AMI provided by Amazon. +We also use the `user_data_file` configuration option provided by the builder +to reference the bootstrap file we created earlier. As you will recall, our +bootstrap file contained all the commands we needed to supply in advance of +actually spinning up the instance, so that later on, our instance is +configured to allow Packer to connect in to it. + +The `"provisioners"` section of the template demonstrates use of the +[powershell](/docs/provisioners/powershell.html) and +[windows-restart](/docs/provisioners/windows-restart.html) provisioners to +customize and control the build process: + +```json +{ + "variables": { + "aws_access_key": "{{env `AWS_ACCESS_KEY_ID`}}", + "aws_secret_key": "{{env `AWS_SECRET_ACCESS_KEY`}}", + "region": "us-east-1" + }, + "builders": [ + { + "type": "amazon-ebs", + "access_key": "{{ user `aws_access_key` }}", + "secret_key": "{{ user `aws_secret_key` }}", + "region": "{{ user `region` }}", + "instance_type": "t2.micro", + "source_ami_filter": { + "filters": { + "virtualization-type": "hvm", + "name": "*Windows_Server-2012-R2*English-64Bit-Base*", + "root-device-type": "ebs" + }, + "most_recent": true, + "owners": "amazon" + }, + "ami_name": "packer-demo-{{timestamp}}", + "user_data_file": "./bootstrap_win.txt", + "communicator": "winrm", + "winrm_username": "Administrator", + "winrm_password": "SuperS3cr3t!" + } + ], + "provisioners": [ + { + "type": "powershell", + "environment_vars": ["DEVOPS_LIFE_IMPROVER=PACKER"], + "inline": "Write-Host \"HELLO NEW USER; WELCOME TO $Env:DEVOPS_LIFE_IMPROVER\"" + }, + { + "type": "windows-restart" + }, + { + "script": "./sample_script.ps1", + "type": "powershell", + "environment_vars": [ + "VAR1=A`$Dollar", + "VAR2=A``Backtick", + "VAR3=A`'SingleQuote" + ] + } + ] +} +``` + +Save the build template as `firstrun.json`. + +Next we need to set things up so that Packer is able to access and use our +AWS account. Set your access key and id as environment variables, so we +don't need to pass them in through the command line: + +``` +export AWS_ACCESS_KEY_ID=MYACCESSKEYID +export AWS_SECRET_ACCESS_KEY=MYSECRETACCESSKEY +``` + +Finally, we can create our new AMI by running `packer build firstrun.json` + +You should see output like this: + +``` +amazon-ebs output will be in this color. + +==> amazon-ebs: Prevalidating AMI Name: packer-demo-1507933843 + amazon-ebs: Found Image ID: ami-23d93c59 +==> amazon-ebs: Creating temporary keypair: packer_59e13e94-203a-1bca-5327-bebf0d5ad15a +==> amazon-ebs: Creating temporary security group for this instance: packer_59e13ea9-3220-8dab-29c0-ed7f71e221a1 +==> amazon-ebs: Authorizing access to port 5985 from 0.0.0.0/0 in the temporary security group... +==> amazon-ebs: Launching a source AWS instance... +==> amazon-ebs: Adding tags to source instance + amazon-ebs: Adding tag: "Name": "Packer Builder" + amazon-ebs: Instance ID: i-0349406ac85f02166 +==> amazon-ebs: Waiting for instance (i-0349406ac85f02166) to become ready... +==> amazon-ebs: Skipping waiting for password since WinRM password set... +==> amazon-ebs: Waiting for WinRM to become available... + amazon-ebs: WinRM connected. +==> amazon-ebs: Connected to WinRM! +==> amazon-ebs: Provisioning with Powershell... +==> amazon-ebs: Provisioning with powershell script: /var/folders/15/d0f7gdg13rnd1cxp7tgmr55c0000gn/T/packer-powershell-provisioner175214995 + amazon-ebs: HELLO NEW USER; WELCOME TO PACKER +==> amazon-ebs: Restarting Machine +==> amazon-ebs: Waiting for machine to restart... + amazon-ebs: WIN-TEM0TDL751M restarted. +==> amazon-ebs: Machine successfully restarted, moving on +==> amazon-ebs: Provisioning with Powershell... +==> amazon-ebs: Provisioning with powershell script: ./sample_script.ps1 + amazon-ebs: PACKER_BUILD_NAME is automatically set for you, or you can set it in your builder variables; The default for this builder is: amazon-ebs + amazon-ebs: Use backticks as the escape character when required in powershell: + amazon-ebs: For example, VAR1 from our config is: A$Dollar + amazon-ebs: Likewise, VAR2 is: A`Backtick + amazon-ebs: Finally, VAR3 is: A'SingleQuote +==> amazon-ebs: Stopping the source instance... + amazon-ebs: Stopping instance, attempt 1 +==> amazon-ebs: Waiting for the instance to stop... +==> amazon-ebs: Creating the AMI: packer-demo-1507933843 + amazon-ebs: AMI: ami-100fc56a +==> amazon-ebs: Waiting for AMI to become ready... +==> amazon-ebs: Terminating the source AWS instance... +==> amazon-ebs: Cleaning up any extra volumes... +==> amazon-ebs: No volumes to clean up, skipping +==> amazon-ebs: Deleting temporary security group... +==> amazon-ebs: Deleting temporary keypair... +Build 'amazon-ebs' finished. + +==> Builds finished. The artifacts of successful builds are: +--> amazon-ebs: AMIs were created: +us-east-1: ami-100fc56a +``` + +And if you navigate to your EC2 dashboard you should see your shiny new AMI +listed in the main window of the Images -> AMIs section. + +Why stop there though? + +As you'll see, with one simple change to the template above, it's +just as easy to create your own Windows 2008 or Windows 2016 AMIs. Just +set the value for the name field within `source_ami_filter` as required: + +For Windows 2008 SP2: + +``` + "name": "*Windows_Server-2008-SP2*English-64Bit-Base*", +``` + +For Windows 2016: + +``` + "name": "*Windows_Server-2016-English-Full-Base*", +``` + +The bootstrapping and sample provisioning should work the same across all +Windows server versions. + [platforms]: /docs/builders/index.html diff --git a/website/source/intro/getting-started/next.html.md b/website/source/intro/getting-started/next.html.md index 7ee314893..fcc355164 100644 --- a/website/source/intro/getting-started/next.html.md +++ b/website/source/intro/getting-started/next.html.md @@ -20,10 +20,6 @@ From this point forward, the most important reference for you will be the [documentation](/docs/index.html). The documentation is less of a guide and more of a reference of all the overall features and options of Packer. -If you're interested in learning more about how Packer fits into the HashiCorp -ecosystem of tools, read our [Atlas getting started -overview](https://atlas.hashicorp.com/help/intro/getting-started). - As you use Packer more, please voice your comments and concerns on the [mailing list or IRC](/community.html). Additionally, Packer is [open source](https://github.com/hashicorp/packer) so please contribute if you'd like diff --git a/website/source/intro/getting-started/remote-builds.html.md b/website/source/intro/getting-started/remote-builds.html.md deleted file mode 100644 index 593cd628a..000000000 --- a/website/source/intro/getting-started/remote-builds.html.md +++ /dev/null @@ -1,112 +0,0 @@ ---- -layout: intro -sidebar_current: intro-getting-started-remote-builds -page_title: Remote Builds and Storage - Getting Started -description: |- - Up to this point in the guide, you have been running Packer on your local - machine to build and provision images on AWS and DigitalOcean. However, you - can use Atlas by HashiCorp to both run Packer builds remotely and store the - output of builds. ---- - -# Remote Builds and Storage - -Up to this point in the guide, you have been running Packer on your local -machine to build and provision images on AWS and DigitalOcean. However, you can -use [Atlas by HashiCorp](https://atlas.hashicorp.com) to run Packer builds -remotely and store the output of builds. - -## Why Build Remotely? - -By building remotely, you can move access credentials off of developer machines, -release local machines from long-running Packer processes, and automatically -start Packer builds from trigger sources such as `vagrant push`, a version -control system, or CI tool. - -## Run Packer Builds Remotely - -To run Packer remotely, there are two changes that must be made to the Packer -template. The first is the addition of the `push` -[configuration](https://www.packer.io/docs/templates/push.html), which sends the -Packer template to Atlas so it can run Packer remotely. The second modification -is updating the variables section to read variables from the Atlas environment -rather than the local environment. Remove the `post-processors` section for now -if it is still in your template. - -```json -{ - "variables": { - "aws_access_key": "{{env `aws_access_key`}}", - "aws_secret_key": "{{env `aws_secret_key`}}" - }, - "builders": [{ - "type": "amazon-ebs", - "access_key": "{{user `aws_access_key`}}", - "secret_key": "{{user `aws_secret_key`}}", - "region": "us-east-1", - "source_ami": "ami-9eaa1cf6", - "instance_type": "t2.micro", - "ssh_username": "ubuntu", - "ami_name": "packer-example {{timestamp}}" - }], - "provisioners": [{ - "type": "shell", - "inline": [ - "sleep 30", - "sudo apt-get update", - "sudo apt-get install -y redis-server" - ] - }], - "push": { - "name": "ATLAS_USERNAME/packer-tutorial" - } -} -``` - -To get an Atlas username, [create an account -here](https://atlas.hashicorp.com/account/new?utm_source=oss&utm_medium=getting-started&utm_campaign=packer). Once you have an account, you will need to contact -sales@hashicorp.com to start a trial, if you haven't already done so. - -Replace "ATLAS\_USERNAME" with your username in the above config. Generate an -Atlas token by navigating to https://atlas.hashicorp.com/settings/tokens and set -that token as an environment variable: `ATLAS_TOKEN=YOURTOKENHERE`. - -Then run `packer push example.json` to send the configuration to Atlas, which -automatically starts the build. - -This build will fail since neither `aws_access_key` or `aws_secret_key` are set -in the Atlas environment. To set environment variables in Atlas, navigate to -the [Builds tab](https://atlas.hashicorp.com/builds), click the -"packer-tutorial" build configuration that was just created, and then click -'variables' in the left navigation. Set `aws_access_key` and `aws_secret_key` -with their respective values. Now restart the Packer build by either clicking -'rebuild' in the Atlas UI or by running `packer push example.json` again. Now -when you click on the active build, you can view the logs in real-time. - --> **Note:** Whenever a change is made to the Packer template, you must -`packer push` to update the configuration in Atlas. - -## Store Packer Outputs - -Now we have Atlas building an AMI with Redis pre-configured. This is great, but -it's even better to store and version the AMI output so it can be easily -deployed by a tool like [Terraform](https://www.terraform.io). The `atlas` -[post-processor](/docs/post-processors/atlas.html) makes this process easier: - -```json -{ - "variables": ["..."], - "builders": ["..."], - "provisioners": ["..."], - "push": ["..."], - "post-processors": [{ - "type": "atlas", - "artifact": "ATLAS_USERNAME/packer-tutorial", - "artifact_type": "amazon.image" - }] -} -``` - -Update the `post-processors` block with your Atlas username, then -`packer push example.json` and watch the build kick off in Atlas! When the build -completes, the resulting artifact will be saved and stored in Atlas. diff --git a/website/source/intro/hashicorp-ecosystem.html.md b/website/source/intro/hashicorp-ecosystem.html.md deleted file mode 100644 index 1fb7bbaff..000000000 --- a/website/source/intro/hashicorp-ecosystem.html.md +++ /dev/null @@ -1,68 +0,0 @@ ---- -layout: intro -sidebar_current: intro-ecosystem -page_title: Packer and the HashiCorp Ecosystem - Introduction -description: |- - Learn how Packer fits in with the rest of the HashiCorp ecosystem of tools ---- - -# Packer and the HashiCorp Ecosystem - -HashiCorp is the creator of the open source projects Vagrant, Packer, Terraform, -Serf, Consul, Nomad, and the commercial product Atlas. Packer is just one piece -of the ecosystem HashiCorp has built to make application delivery a versioned, -auditable, repeatable, and collaborative process. To learn more about our -beliefs on the qualities of the modern datacenter and responsible application -delivery, read [The Atlas Mindset: Version Control for -Infrastructure](https://www.hashicorp.com/blog/atlas-mindset.html?utm_source=packer&utm_campaign=HashicorpEcosystem). - -If you are using Packer to build machine images and deployable artifacts, it's -likely that you need a solution for deploying those artifacts. Terraform is our -tool for creating, combining, and modifying infrastructure. - -Below are summaries of HashiCorp's open source projects and a graphic showing -how Atlas connects them to create a full application delivery workflow. - -# HashiCorp Ecosystem - -![Atlas Workflow](docs/atlas-workflow.png) - -[Atlas](https://atlas.hashicorp.com/?utm_source=packer&utm_campaign=HashicorpEcosystem) -is HashiCorp's only commercial product. It unites Packer, Terraform, and Consul -to make application delivery a versioned, auditable, repeatable, and -collaborative process. - -[Packer](https://www.packer.io/?utm_source=packer&utm_campaign=HashicorpEcosystem) -is a HashiCorp tool for creating machine images and deployable artifacts such as -AMIs, OpenStack images, Docker containers, etc. - -[Terraform](https://www.terraform.io/?utm_source=packer&utm_campaign=HashicorpEcosystem) -is a HashiCorp tool for creating, combining, and modifying infrastructure. In -the Atlas workflow Terraform reads from the artifact registry and provisions -infrastructure. - -[Consul](https://www.consul.io/?utm_source=packer&utm_campaign=HashicorpEcosystem) -is a HashiCorp tool for service discovery, service registry, and health checks. -In the Atlas workflow Consul is configured at the Packer build stage and -identifies the service(s) contained in each artifact. Since Consul is configured -at the build phase with Packer, when the artifact is deployed with Terraform, it -is fully configured with dependencies and service discovery pre-baked. This -greatly reduces the risk of an unhealthy node in production due to configuration -failure at runtime. - -[Serf](https://www.serf.io/?utm_source=packer&utm_campaign=HashicorpEcosystem) is -a HashiCorp tool for cluster membership and failure detection. Consul uses -Serf's gossip protocol as the foundation for service discovery. - -[Vagrant](https://www.vagrantup.com/?utm_source=packer&utm_campaign=HashicorpEcosystem) -is a HashiCorp tool for managing development environments that mirror -production. Vagrant environments reduce the friction of developing a project and -reduce the risk of unexpected behavior appearing after deployment. Vagrant boxes -can be built in parallel with production artifacts with Packer to maintain -parity between development and production. - -[Nomad](https://www.nomadproject.io/?utm_source=packer&utm_campaign=HashicorpEcosystem) -is a HashiCorp tool for managing a cluster of machines and running applications -on them. Nomad abstracts away machines and the location of applications, and -instead enables users to declare what they want to run and Nomad handles where -they should run and how to run them. diff --git a/website/source/layouts/community.erb b/website/source/layouts/community.erb new file mode 100644 index 000000000..a5ab417c3 --- /dev/null +++ b/website/source/layouts/community.erb @@ -0,0 +1,19 @@ +<% wrap_layout :inner do %> + <% content_for :sidebar do %> + + <% end %> + + <%= yield %> +<% end %> diff --git a/website/source/layouts/docs.erb b/website/source/layouts/docs.erb index bb8b6fa71..9aa17ccc4 100644 --- a/website/source/layouts/docs.erb +++ b/website/source/layouts/docs.erb @@ -111,8 +111,17 @@ > ISO + > + VMCX + + > + LXC + + > + LXD + > Null @@ -122,6 +131,9 @@ > OpenStack + > + Oracle OCI + > Parallels diff --git a/website/source/layouts/downloads.erb b/website/source/layouts/downloads.erb index 9e9a79632..e6a328f41 100644 --- a/website/source/layouts/downloads.erb +++ b/website/source/layouts/downloads.erb @@ -6,10 +6,6 @@ Download Packer - > - Community Tools - -
  • Build from Source
  • diff --git a/website/source/layouts/intro.erb b/website/source/layouts/intro.erb index 1963d3f01..ef4e0ca2b 100644 --- a/website/source/layouts/intro.erb +++ b/website/source/layouts/intro.erb @@ -7,9 +7,6 @@ > Use Cases - > - Packer & HashiCorp - > Getting Started @@ -29,9 +26,6 @@ > Vagrant Boxes - > - Remote Builds - > Next Steps diff --git a/website/wgetlog b/website/wgetlog deleted file mode 100644 index 85b1cd6a2..000000000 --- a/website/wgetlog +++ /dev/null @@ -1,2782 +0,0 @@ ---2016-12-15 14:14:48-- https://www.packer.io/ ---2016-12-15 14:14:48-- https://www.packer.io/ -Resolving www.packer.io... Resolving www.packer.io... 151.101.53.176 -Connecting to www.packer.io|151.101.53.176|:443... 151.101.53.176 -Connecting to www.packer.io|151.101.53.176|:443... connected. -connected. -HTTP request sent, awaiting response... HTTP request sent, awaiting response... 200 OK -200 OK -Length: 17742Length: 17742 (17K) [text/html] - (17K) [text/html] -Saving to: ‘www.packer.io/index.html’ -Saving to: ‘www.packer.io/index.html’ - - 0K .. - 0K .................. .. .......... .. 100%100% 485K=0.04s 485K=0.04s - - - -2016-12-15 14:14:49 (485 KB/s) - ‘www.packer.io/index.html’ saved [17742/17742] - -2016-12-15 14:14:49 (485 KB/s) - ‘www.packer.io/index.html’ saved [17742/17742] - -Loading robots.txt; please ignore errors. -Loading robots.txt; please ignore errors. ---2016-12-15 14:14:49-- https://www.packer.io/robots.txt ---2016-12-15 14:14:49-- https://www.packer.io/robots.txt -Reusing existing connection to www.packer.io:443. -Reusing existing connection to www.packer.io:443. -HTTP request sent, awaiting response... HTTP request sent, awaiting response... 200 OK -200 OK -Length: 44 [text/plain] -Length: 44 [text/plain] -Saving to: ‘www.packer.io/robots.txt’ -Saving to: ‘www.packer.io/robots.txt’ - - 0K - 0K 100% 3.50M=0s - - 100% 3.50M=0s - -2016-12-15 14:14:49 (3.50 MB/s) - ‘www.packer.io/robots.txt’ saved [44/44] - -2016-12-15 14:14:49 (3.50 MB/s) - ‘www.packer.io/robots.txt’ saved [44/44] - ---2016-12-15 14:14:49-- https://www.packer.io/assets/stylesheets/application-c75a3c69.css -Reusing existing connection to www.packer.io:443. ---2016-12-15 14:14:49-- https://www.packer.io/assets/stylesheets/application-c75a3c69.css -Reusing existing connection to www.packer.io:443. -HTTP request sent, awaiting response... HTTP request sent, awaiting response... 200 OK -200 OK -Length: 147521Length: 147521 (144K) (144K) [text/css] - [text/css] -Saving to: ‘www.packer.io/assets/stylesheets/application-c75a3c69.css’ -Saving to: ‘www.packer.io/assets/stylesheets/application-c75a3c69.css’ - - 0K .. - 0K .................. .. .................. ... ............... ... .................. ........ ............. 34% 965K 0s - 50K . 34% 965K 0s - 50K ................... ... .......... ........ .................. ... ............... ... ............... 69% 1.55M..... 69% 1.55M 0s - 100K ... 0s - 100K .......... ........ .................. .. ................ ........ ............ ..... ..... 100% 1.52M=0.1s - -. 100% 1.52M=0.1s - -2016-12-15 14:14:49 (1.26 MB/s) - ‘www.packer.io/assets/stylesheets/application-c75a3c69.css’ saved [147521/147521] - -2016-12-15 14:14:49 (1.26 MB/s) - ‘www.packer.io/assets/stylesheets/application-c75a3c69.css’ saved [147521/147521] - ---2016-12-15 14:14:49-- https://www.packer.io/favicon.ico -Reusing existing connection to www.packer.io:443. ---2016-12-15 14:14:49-- https://www.packer.io/favicon.ico -Reusing existing connection to www.packer.io:443. -HTTP request sent, awaiting response... HTTP request sent, awaiting response... 200 OK -200 OK -Length: 3285 (3.2K)Length: 3285 (3.2K) [image/vnd.microsoft.icon] - [image/vnd.microsoft.icon] -Saving to: ‘www.packer.io/favicon.ico’ - - 0K ... 100% 20.6M=0s - -Saving to: ‘www.packer.io/favicon.ico’ - - 0K ... 100% 20.6M=0s - -2016-12-15 14:14:49 (20.6 MB/s) - ‘www.packer.io/favicon.ico’ saved [3285/3285] - ---2016-12-15 14:14:49-- https://www.packer.io/intro -Reusing existing connection to www.packer.io:443. -HTTP request sent, awaiting response... 2016-12-15 14:14:49 (20.6 MB/s) - ‘www.packer.io/favicon.ico’ saved [3285/3285] - ---2016-12-15 14:14:49-- https://www.packer.io/intro -Reusing existing connection to www.packer.io:443. -HTTP request sent, awaiting response... 302 Moved Temporarily -Location: /intro/ [following] -302 Moved Temporarily -Location: /intro/ [following] ---2016-12-15 14:14:49-- https://www.packer.io/intro/ -Reusing existing connection to www.packer.io:443. ---2016-12-15 14:14:49-- https://www.packer.io/intro/ -Reusing existing connection to www.packer.io:443. -HTTP request sent, awaiting response... HTTP request sent, awaiting response... 200 OK -200 OK -Length: 18724 (18K) [text/html] -Length: 18724 (18K) [text/html] -Saving to: ‘www.packer.io/intro.1’ -Saving to: ‘www.packer.io/intro.1’ - - 0K .. - 0K .................. .. .............. 100% 100% 19.3M 19.3M=0.001s - -=0.001s - -2016-12-15 14:14:50 (19.3 MB/s) - ‘www.packer.io/intro.1’ saved [18724/18724] - -2016-12-15 14:14:50 (19.3 MB/s) - ‘www.packer.io/intro.1’ saved [18724/18724] - ---2016-12-15 14:14:50-- https://www.packer.io/docs -Reusing existing connection to www.packer.io:443. ---2016-12-15 14:14:50-- https://www.packer.io/docs -Reusing existing connection to www.packer.io:443. -HTTP request sent, awaiting response... HTTP request sent, awaiting response... 302 Moved Temporarily -302 Moved Temporarily -Location: /docs/ [following] -Location: /docs/ [following] ---2016-12-15 14:14:50-- https://www.packer.io/docs/ ---2016-12-15 14:14:50-- https://www.packer.io/docs/ -Reusing existing connection to www.packer.io:443. -Reusing existing connection to www.packer.io:443. -HTTP request sent, awaiting response... HTTP request sent, awaiting response... 200 OK -200 OK -Length: 22068Length: 22068 (22K) [text/html] - (22K) [text/html] -Saving to: ‘www.packer.io/docs.1’ -Saving to: ‘www.packer.io/docs.1’ - - 0K .. - 0K .................. .. .................. . . 100%100% 570K=0.04s 570K=0.04s - - - -2016-12-15 14:14:50 (570 KB/s) - ‘www.packer.io/docs.1’ saved [22068/22068] - -2016-12-15 14:14:50 (570 KB/s) - ‘www.packer.io/docs.1’ saved [22068/22068] - ---2016-12-15 14:14:50-- https://www.packer.io/community -Reusing existing connection to www.packer.io:443. ---2016-12-15 14:14:50-- https://www.packer.io/community -Reusing existing connection to www.packer.io:443. -HTTP request sent, awaiting response... HTTP request sent, awaiting response... 302 Moved Temporarily -302 Moved Temporarily -Location: /community/ [following] -Location: /community/ [following] ---2016-12-15 14:14:51-- https://www.packer.io/community/ ---2016-12-15 14:14:51-- https://www.packer.io/community/ -Reusing existing connection to www.packer.io:443. -Reusing existing connection to www.packer.io:443. -HTTP request sent, awaiting response... HTTP request sent, awaiting response... 200 OK -Length: 200 OK -Length: 19293 (19K) [text/html] -19293 (19K) [text/html] -Saving to: ‘www.packer.io/community’ -Saving to: ‘www.packer.io/community’ - - 0K .. - 0K .................. .. .............. 100%100% 1.60M=0.01s - - 1.60M=0.01s - -2016-12-15 14:14:51 (1.60 MB/s) - ‘www.packer.io/community’ saved [19293/19293] - -2016-12-15 14:14:51 (1.60 MB/s) - ‘www.packer.io/community’ saved [19293/19293] - ---2016-12-15 14:14:51-- https://www.packer.io/downloads.html ---2016-12-15 14:14:51-- https://www.packer.io/downloads.html -Reusing existing connection to www.packer.io:443. -Reusing existing connection to www.packer.io:443. -HTTP request sent, awaiting response... HTTP request sent, awaiting response... 200 OK -200 OK -Length: 20967 (20K) [text/html] -Length: 20967 (20K) [text/html] -Saving to: ‘www.packer.io/downloads.html’ -Saving to: ‘www.packer.io/downloads.html’ - - 0K .. - 0K .................. .. ................ .. 100%100% 55.2M=0s - - 55.2M=0s - -2016-12-15 14:14:51 (55.2 MB/s) - ‘www.packer.io/downloads.html’ saved [20967/20967] - -2016-12-15 14:14:51 (55.2 MB/s) - ‘www.packer.io/downloads.html’ saved [20967/20967] - ---2016-12-15 14:14:51-- https://www.packer.io/assets/images/logo-header@2x-fa646202.png -Reusing existing connection to www.packer.io:443. ---2016-12-15 14:14:51-- https://www.packer.io/assets/images/logo-header@2x-fa646202.png -Reusing existing connection to www.packer.io:443. -HTTP request sent, awaiting response... HTTP request sent, awaiting response... 200 OK -200 OK -Length: 1714 (1.7K) [image/png] -Length: 1714 (1.7K) [image/png] -Saving to: ‘www.packer.io/assets/images/logo-header@2x-fa646202.png’ -Saving to: ‘www.packer.io/assets/images/logo-header@2x-fa646202.png’ - - 0K . - 0K . 100% 109M100% 109M=0s - -=0s - -2016-12-15 14:14:51 (109 MB/s) - ‘www.packer.io/assets/images/logo-header@2x-fa646202.png’ saved [1714/1714] - -2016-12-15 14:14:51 (109 MB/s) - ‘www.packer.io/assets/images/logo-header@2x-fa646202.png’ saved [1714/1714] - ---2016-12-15 14:14:51-- https://www.packer.io/assets/images/screenshots/vmware_and_virtualbox-7c37c65e.png ---2016-12-15 14:14:51-- https://www.packer.io/assets/images/screenshots/vmware_and_virtualbox-7c37c65e.png -Reusing existing connection to www.packer.io:443. -Reusing existing connection to www.packer.io:443. -HTTP request sent, awaiting response... HTTP request sent, awaiting response... 200 OK -200 OK -Length: 158767 (155K) [image/png] -Length: 158767 (155K) [image/png] -Saving to: ‘www.packer.io/assets/images/screenshots/vmware_and_virtualbox-7c37c65e.png’ -Saving to: ‘www.packer.io/assets/images/screenshots/vmware_and_virtualbox-7c37c65e.png’ - - 0K .. - 0K .................. .. .................. ... ............... ... .................. ........ .......... 32% 779K 0s - 50K ........ 32% 779K 0s - 50K .......... ........ .......... ........ .................. ........ .......... ........ ............... 64% 64% 1.73M 1.73M 0s - 100K . 0s - 100K ............ ........ .................. ........ .......... ........ .......... ........ .......... 96% 1.83M 0s....... 96% 1.83M 0s - 150K . - 150K ..... .... 100% 34.5M100% 34.5M=0.1s - -=0.1s - -2016-12-15 14:14:51 (1.27 MB/s) - ‘www.packer.io/assets/images/screenshots/vmware_and_virtualbox-7c37c65e.png’ saved [158767/158767] - -2016-12-15 14:14:51 (1.27 MB/s) - ‘www.packer.io/assets/images/screenshots/vmware_and_virtualbox-7c37c65e.png’ saved [158767/158767] - ---2016-12-15 14:14:51-- https://www.packer.io/assets/images/screenshots/works_with-bf434c0d.png ---2016-12-15 14:14:51-- https://www.packer.io/assets/images/screenshots/works_with-bf434c0d.png -Reusing existing connection to www.packer.io:443. -Reusing existing connection to www.packer.io:443. -HTTP request sent, awaiting response... HTTP request sent, awaiting response... 200 OK -200 OK -Length: 57028 (56K)Length: 57028 (56K) [image/png] - [image/png] -Saving to: ‘www.packer.io/assets/images/screenshots/works_with-bf434c0d.png’ -Saving to: ‘www.packer.io/assets/images/screenshots/works_with-bf434c0d.png’ - - 0K .... - 0K .............. .... ............. ........ .......... ........ .................. ........ .......... 89% 3.43M 0s - 50K ........ 89% 3.43M 0s - 50K ..... 100% 48.3M100% 48.3M=0.01s - -=0.01s - -2016-12-15 14:14:52 (3.79 MB/s) - ‘www.packer.io/assets/images/screenshots/works_with-bf434c0d.png’ saved [57028/57028] - -2016-12-15 14:14:52 (3.79 MB/s) - ‘www.packer.io/assets/images/screenshots/works_with-bf434c0d.png’ saved [57028/57028] - ---2016-12-15 14:14:52-- https://www.packer.io/security.html -Reusing existing connection to www.packer.io:443. ---2016-12-15 14:14:52-- https://www.packer.io/security.html -Reusing existing connection to www.packer.io:443. -HTTP request sent, awaiting response... HTTP request sent, awaiting response... 200 OK -Length: 200 OK -Length: 16690 (16K) [text/html] -16690 (16K) [text/html] -Saving to: ‘www.packer.io/security.html’ -Saving to: ‘www.packer.io/security.html’ - - 0K ........ - 0K .......... ....... ...... . 100% 100% 116M=0s - - 116M=0s - -2016-12-15 14:14:52 (116 MB/s) - ‘www.packer.io/security.html’ saved [16690/16690] - -2016-12-15 14:14:52 (116 MB/s) - ‘www.packer.io/security.html’ saved [16690/16690] - ---2016-12-15 14:14:52-- https://www.packer.io/assets/javascripts/application-9b09c209.js ---2016-12-15 14:14:52-- https://www.packer.io/assets/javascripts/application-9b09c209.js -Reusing existing connection to www.packer.io:443. -Reusing existing connection to www.packer.io:443. -HTTP request sent, awaiting response... HTTP request sent, awaiting response... 200 OK -Length: 200 OK -Length: 88349 (86K) [application/javascript] -88349 (86K) [application/javascript] -Saving to: ‘www.packer.io/assets/javascripts/application-9b09c209.js’ -Saving to: ‘www.packer.io/assets/javascripts/application-9b09c209.js’ - - 0K ........ - 0K .......... ....... .......... ........ .......... ........ .................. .. ................ 57% 2.36M 0s - 50K ..... 57% 2.36M 0s - 50K ............. ........ .......... ........ .................. ...... . ...... 100%100% 1.32M=0.05s 1.32M=0.05s - - - -2016-12-15 14:14:52 (1.77 MB/s) - ‘www.packer.io/assets/javascripts/application-9b09c209.js’ saved [88349/88349] - -2016-12-15 14:14:52 (1.77 MB/s) - ‘www.packer.io/assets/javascripts/application-9b09c209.js’ saved [88349/88349] - ---2016-12-15 14:14:52-- https://www.packer.io/assets/fonts/bootstrap/glyphicons-halflings-regular-86b6f62b.eot ---2016-12-15 14:14:52-- https://www.packer.io/assets/fonts/bootstrap/glyphicons-halflings-regular-86b6f62b.eot -Reusing existing connection to www.packer.io:443. -Reusing existing connection to www.packer.io:443. -HTTP request sent, awaiting response... HTTP request sent, awaiting response... 200 OK -200 OK -Length: 20127 (20K) [application/vnd.ms-fontobject] -Length: 20127 (20K) [application/vnd.ms-fontobject] -Saving to: ‘www.packer.io/assets/fonts/bootstrap/glyphicons-halflings-regular-86b6f62b.eot’ -Saving to: ‘www.packer.io/assets/fonts/bootstrap/glyphicons-halflings-regular-86b6f62b.eot’ - - 0K ....... - 0K ........... ....... ......... .... 100% 100% 9.95M 9.95M=0.002s - -=0.002s - -2016-12-15 14:14:53 (9.95 MB/s) - ‘www.packer.io/assets/fonts/bootstrap/glyphicons-halflings-regular-86b6f62b.eot’ saved [20127/20127] - -2016-12-15 14:14:53 (9.95 MB/s) - ‘www.packer.io/assets/fonts/bootstrap/glyphicons-halflings-regular-86b6f62b.eot’ saved [20127/20127] - ---2016-12-15 14:14:53-- https://www.packer.io/assets/fonts/bootstrap/glyphicons-halflings-regular-86b6f62b.eot? ---2016-12-15 14:14:53-- https://www.packer.io/assets/fonts/bootstrap/glyphicons-halflings-regular-86b6f62b.eot? -Reusing existing connection to www.packer.io:443. -Reusing existing connection to www.packer.io:443. -HTTP request sent, awaiting response... HTTP request sent, awaiting response... 200 OK -200 OK -Length: 20127 (20K) [application/vnd.ms-fontobject] -Length: 20127 (20K) [application/vnd.ms-fontobject] -Saving to: ‘www.packer.io/assets/fonts/bootstrap/glyphicons-halflings-regular-86b6f62b.eot?’ -Saving to: ‘www.packer.io/assets/fonts/bootstrap/glyphicons-halflings-regular-86b6f62b.eot?’ - - 0K ...... - 0K ............ ....... ......... .... 100% 106M100% 106M=0s - -=0s - -2016-12-15 14:14:53 (106 MB/s) - ‘www.packer.io/assets/fonts/bootstrap/glyphicons-halflings-regular-86b6f62b.eot?’ saved [20127/20127] - -2016-12-15 14:14:53 (106 MB/s) - ‘www.packer.io/assets/fonts/bootstrap/glyphicons-halflings-regular-86b6f62b.eot?’ saved [20127/20127] - ---2016-12-15 14:14:53-- https://www.packer.io/assets/fonts/bootstrap/glyphicons-halflings-regular-ca35b697.woff2 ---2016-12-15 14:14:53-- https://www.packer.io/assets/fonts/bootstrap/glyphicons-halflings-regular-ca35b697.woff2 -Reusing existing connection to www.packer.io:443. -Reusing existing connection to www.packer.io:443. -HTTP request sent, awaiting response... HTTP request sent, awaiting response... 200 OK -200 OK -Length: 18028Length: 18028 (18K) (18K) [binary/octet-stream] - [binary/octet-stream] -Saving to: ‘www.packer.io/assets/fonts/bootstrap/glyphicons-halflings-regular-ca35b697.woff2’ -Saving to: ‘www.packer.io/assets/fonts/bootstrap/glyphicons-halflings-regular-ca35b697.woff2’ - - 0K ... - 0K ............... .... .......... .. 100% 100% 115M=0s 115M=0s - - - -2016-12-15 14:14:53 (115 MB/s) - ‘www.packer.io/assets/fonts/bootstrap/glyphicons-halflings-regular-ca35b697.woff2’ saved [18028/18028] - -2016-12-15 14:14:53 (115 MB/s) - ‘www.packer.io/assets/fonts/bootstrap/glyphicons-halflings-regular-ca35b697.woff2’ saved [18028/18028] - ---2016-12-15 14:14:53-- https://www.packer.io/assets/fonts/bootstrap/glyphicons-halflings-regular-278e49a8.woff ---2016-12-15 14:14:53-- https://www.packer.io/assets/fonts/bootstrap/glyphicons-halflings-regular-278e49a8.woff -Reusing existing connection to www.packer.io:443. -Reusing existing connection to www.packer.io:443. -HTTP request sent, awaiting response... HTTP request sent, awaiting response... 200 OK -200 OK -Length: 23424 (23K) [application/font-woff] -Length: 23424 (23K) [application/font-woff] -Saving to: ‘www.packer.io/assets/fonts/bootstrap/glyphicons-halflings-regular-278e49a8.woff’ -Saving to: ‘www.packer.io/assets/fonts/bootstrap/glyphicons-halflings-regular-278e49a8.woff’ - - 0K .... - 0K .............. ....... .......... ....... .. 100% 100% 93.9M=0s 93.9M=0s - - - -2016-12-15 14:14:54 (93.9 MB/s) - ‘www.packer.io/assets/fonts/bootstrap/glyphicons-halflings-regular-278e49a8.woff’ saved [23424/23424] - -2016-12-15 14:14:54 (93.9 MB/s) - ‘www.packer.io/assets/fonts/bootstrap/glyphicons-halflings-regular-278e49a8.woff’ saved [23424/23424] - ---2016-12-15 14:14:54-- https://www.packer.io/assets/fonts/bootstrap/glyphicons-halflings-regular-44bc1850.ttf -Reusing existing connection to www.packer.io:443. ---2016-12-15 14:14:54-- https://www.packer.io/assets/fonts/bootstrap/glyphicons-halflings-regular-44bc1850.ttf -Reusing existing connection to www.packer.io:443. -HTTP request sent, awaiting response... HTTP request sent, awaiting response... 200 OK -200 OK -Length: 45404 (44K) [application/font-sfnt] -Length: 45404 (44K) [application/font-sfnt] -Saving to: ‘www.packer.io/assets/fonts/bootstrap/glyphicons-halflings-regular-44bc1850.ttf’ -Saving to: ‘www.packer.io/assets/fonts/bootstrap/glyphicons-halflings-regular-44bc1850.ttf’ - - 0K ........ - 0K .......... ..... ............ ........ .......... ........ ................... .... .... 100% 100% 21.5M 21.5M=0.002s - -=0.002s - -2016-12-15 14:14:54 (21.5 MB/s) - ‘www.packer.io/assets/fonts/bootstrap/glyphicons-halflings-regular-44bc1850.ttf’ saved [45404/45404] - -2016-12-15 14:14:54 (21.5 MB/s) - ‘www.packer.io/assets/fonts/bootstrap/glyphicons-halflings-regular-44bc1850.ttf’ saved [45404/45404] - ---2016-12-15 14:14:54-- https://www.packer.io/assets/fonts/bootstrap/glyphicons-halflings-regular-de51a849.svg -Reusing existing connection to www.packer.io:443. ---2016-12-15 14:14:54-- https://www.packer.io/assets/fonts/bootstrap/glyphicons-halflings-regular-de51a849.svg -Reusing existing connection to www.packer.io:443. -HTTP request sent, awaiting response... HTTP request sent, awaiting response... 200 OK -200 OK -Length: 108738 (106K) [image/svg+xml] -Length: 108738 (106K) [image/svg+xml] -Saving to: ‘www.packer.io/assets/fonts/bootstrap/glyphicons-halflings-regular-de51a849.svg’ -Saving to: ‘www.packer.io/assets/fonts/bootstrap/glyphicons-halflings-regular-de51a849.svg’ - - 0K ........ - 0K .......... ... .............. ........ .......... ........ .................. ...... ............... 47% 787K 47% 787K 0s - 50K . 0s - 50K .............. ..... .................... . .................. ........ .......... ........ .......... 94% 1.10M 0s - 100K ........ 94% 1.10M 0s - 100K ...... ... 100% 44.8M100% 44.8M=0.1s - -=0.1s - -2016-12-15 14:14:55 (981 KB/s) - ‘www.packer.io/assets/fonts/bootstrap/glyphicons-halflings-regular-de51a849.svg’ saved [108738/108738] - -2016-12-15 14:14:55 (981 KB/s) - ‘www.packer.io/assets/fonts/bootstrap/glyphicons-halflings-regular-de51a849.svg’ saved [108738/108738] - ---2016-12-15 14:14:55-- https://www.packer.io/assets/fonts/2772B2_0_0-496a5b0e.eot -Reusing existing connection to www.packer.io:443. ---2016-12-15 14:14:55-- https://www.packer.io/assets/fonts/2772B2_0_0-496a5b0e.eot -Reusing existing connection to www.packer.io:443. -HTTP request sent, awaiting response... HTTP request sent, awaiting response... 200 OK -Length: 45205200 OK -Length: 45205 (44K) [application/vnd.ms-fontobject] - (44K) [application/vnd.ms-fontobject] -Saving to: ‘www.packer.io/assets/fonts/2772B2_0_0-496a5b0e.eot’ -Saving to: ‘www.packer.io/assets/fonts/2772B2_0_0-496a5b0e.eot’ - - 0K ........ - 0K .......... ... .............. ........ .......... ........ .................. .... 100% 2.42M=0.02s - -. .... 100% 2.42M=0.02s - -2016-12-15 14:14:55 (2.42 MB/s) - ‘www.packer.io/assets/fonts/2772B2_0_0-496a5b0e.eot’ saved [45205/45205] - -2016-12-15 14:14:55 (2.42 MB/s) - ‘www.packer.io/assets/fonts/2772B2_0_0-496a5b0e.eot’ saved [45205/45205] - ---2016-12-15 14:14:55-- https://www.packer.io/assets/fonts/2772B2_0_0-43877736.woff ---2016-12-15 14:14:55-- https://www.packer.io/assets/fonts/2772B2_0_0-43877736.woff -Reusing existing connection to www.packer.io:443. -Reusing existing connection to www.packer.io:443. -HTTP request sent, awaiting response... HTTP request sent, awaiting response... 200 OK -200 OK -Length: 53183 (52K) [application/font-woff] -Length: 53183 (52K) [application/font-woff] -Saving to: ‘www.packer.io/assets/fonts/2772B2_0_0-43877736.woff’ -Saving to: ‘www.packer.io/assets/fonts/2772B2_0_0-43877736.woff’ - - 0K ...... - 0K ............ ....... .......... ........ .......... ........ .................. ........ .......... 96% 2.76M 0s - 50K . ... 96% 2.76M 0s - 50K . 100% 38.7K100% 38.7K=0.02s - -=0.02s - -2016-12-15 14:14:55 (2.87 MB/s) - ‘www.packer.io/assets/fonts/2772B2_0_0-43877736.woff’ saved [53183/53183] - -2016-12-15 14:14:55 (2.87 MB/s) - ‘www.packer.io/assets/fonts/2772B2_0_0-43877736.woff’ saved [53183/53183] - ---2016-12-15 14:14:55-- https://www.packer.io/assets/fonts/2772B2_0_0-7f0c4640.ttf -Reusing existing connection to www.packer.io:443. ---2016-12-15 14:14:55-- https://www.packer.io/assets/fonts/2772B2_0_0-7f0c4640.ttf -Reusing existing connection to www.packer.io:443. -HTTP request sent, awaiting response... HTTP request sent, awaiting response... 200 OK -Length: 200 OK -Length: 102912 (100K) [application/font-sfnt] -102912 (100K) [application/font-sfnt] -Saving to: ‘www.packer.io/assets/fonts/2772B2_0_0-7f0c4640.ttf’ -Saving to: ‘www.packer.io/assets/fonts/2772B2_0_0-7f0c4640.ttf’ - - 0K ...... - 0K ............ ....... .......... ........ .......... ........ .......... ................ .......... 49% 2.33M 0s - 50K ........ 49% 2.33M 0s - 50K .......... ........ .......... ........ .................. ........ .......... ........ .......... 99%..... 99% 2.35M 0s - 100K 2.35M 0s - 100K 100% 10.0K 100% 10.0K=0.04s - -=0.04s - -2016-12-15 14:14:56 (2.35 MB/s) - ‘www.packer.io/assets/fonts/2772B2_0_0-7f0c4640.ttf’ saved [102912/102912] - -2016-12-15 14:14:56 (2.35 MB/s) - ‘www.packer.io/assets/fonts/2772B2_0_0-7f0c4640.ttf’ saved [102912/102912] - ---2016-12-15 14:14:56-- https://www.packer.io/assets/images/divider-6be96677.png -Reusing existing connection to www.packer.io:443. ---2016-12-15 14:14:56-- https://www.packer.io/assets/images/divider-6be96677.png -Reusing existing connection to www.packer.io:443. -HTTP request sent, awaiting response... HTTP request sent, awaiting response... 200 OK -200 OK -Length: 596 [image/png] -Length: 596 [image/png] -Saving to: ‘www.packer.io/assets/images/divider-6be96677.png’ -Saving to: ‘www.packer.io/assets/images/divider-6be96677.png’ - - 0K - 0K 100%100% 51.7M=0s - - 51.7M=0s - -2016-12-15 14:14:56 (51.7 MB/s) - ‘www.packer.io/assets/images/divider-6be96677.png’ saved [596/596] - -2016-12-15 14:14:56 (51.7 MB/s) - ‘www.packer.io/assets/images/divider-6be96677.png’ saved [596/596] - ---2016-12-15 14:14:56-- https://www.packer.io/assets/images/logo-header.png ---2016-12-15 14:14:56-- https://www.packer.io/assets/images/logo-header.png -Reusing existing connection to www.packer.io:443. -Reusing existing connection to www.packer.io:443. -HTTP request sent, awaiting response... HTTP request sent, awaiting response... 404 OK -404 OK -Saving to: ‘www.packer.io/assets/images/logo-header.png’ -Saving to: ‘www.packer.io/assets/images/logo-header.png’ - - 0K ........ - 0K ............ .... ..... . 100% 100% 147M=0s 147M=0s - - - -2016-12-15 14:14:56 ERROR 404: OK. - -2016-12-15 14:14:56 ERROR 404: OK. - ---2016-12-15 14:14:56-- https://www.packer.io/assets/images/logo-header-330a8172.png -Reusing existing connection to www.packer.io:443. ---2016-12-15 14:14:56-- https://www.packer.io/assets/images/logo-header-330a8172.png -Reusing existing connection to www.packer.io:443. -HTTP request sent, awaiting response... HTTP request sent, awaiting response... 200 OK -200 OK -Length: 779 [image/png] -Length: 779 [image/png] -Saving to: ‘www.packer.io/assets/images/logo-header-330a8172.png’ -Saving to: ‘www.packer.io/assets/images/logo-header-330a8172.png’ - - 0K - 0K 100% 100% 49.5M 49.5M=0s - -=0s - -2016-12-15 14:14:56 (49.5 MB/s) - ‘www.packer.io/assets/images/logo-header-330a8172.png’ saved [779/779] - -2016-12-15 14:14:56 (49.5 MB/s) - ‘www.packer.io/assets/images/logo-header-330a8172.png’ saved [779/779] - ---2016-12-15 14:14:56-- https://www.packer.io/assets/images/hero_image-b46304d1.jpg ---2016-12-15 14:14:56-- https://www.packer.io/assets/images/hero_image-b46304d1.jpg -Reusing existing connection to www.packer.io:443. -Reusing existing connection to www.packer.io:443. -HTTP request sent, awaiting response... HTTP request sent, awaiting response... 200 OK -200 OK -Length: 98026 (96K) [image/jpeg] -Length: 98026 (96K) [image/jpeg] -Saving to: ‘www.packer.io/assets/images/hero_image-b46304d1.jpg’ -Saving to: ‘www.packer.io/assets/images/hero_image-b46304d1.jpg’ - - 0K .... - 0K .............. ... .............. ...... ............ ....... ................... .... .............. 52% 2.39M 0s - 50K ...... 52% 2.39M 0s - 50K ............ ....... ........... ........ .................. ........ .......... ... .......... 100% 100% 2.44M=0.04s - - 2.44M=0.04s - -2016-12-15 14:14:57 (2.42 MB/s) - ‘www.packer.io/assets/images/hero_image-b46304d1.jpg’ saved [98026/98026] - -2016-12-15 14:14:57 (2.42 MB/s) - ‘www.packer.io/assets/images/hero_image-b46304d1.jpg’ saved [98026/98026] - ---2016-12-15 14:14:57-- https://www.packer.io/assets/images/down_arrow-58051318.png -Reusing existing connection to www.packer.io:443. ---2016-12-15 14:14:57-- https://www.packer.io/assets/images/down_arrow-58051318.png -Reusing existing connection to www.packer.io:443. -HTTP request sent, awaiting response... HTTP request sent, awaiting response... 200 OK -200 OK -Length: 1201 (1.2K) [image/png] -Length: 1201 (1.2K) [image/png] -Saving to: ‘www.packer.io/assets/images/down_arrow-58051318.png’ -Saving to: ‘www.packer.io/assets/images/down_arrow-58051318.png’ - - 0K . - 0K . 100% 115M=0s - - 100% 115M=0s - -2016-12-15 14:14:57 (115 MB/s) - ‘www.packer.io/assets/images/down_arrow-58051318.png’ saved [1201/1201] - -2016-12-15 14:14:57 (115 MB/s) - ‘www.packer.io/assets/images/down_arrow-58051318.png’ saved [1201/1201] - ---2016-12-15 14:14:57-- https://www.packer.io/assets/images/arrow-left-e180d41b.png ---2016-12-15 14:14:57-- https://www.packer.io/assets/images/arrow-left-e180d41b.png -Reusing existing connection to www.packer.io:443. -Reusing existing connection to www.packer.io:443. -HTTP request sent, awaiting response... HTTP request sent, awaiting response... 200 OK -200 OK -Length: 346 [image/png] -Length: 346 [image/png] -Saving to: ‘www.packer.io/assets/images/arrow-left-e180d41b.png’ -Saving to: ‘www.packer.io/assets/images/arrow-left-e180d41b.png’ - - 0K - 0K 100% 100% 20.6M 20.6M=0s - -=0s - -2016-12-15 14:14:57 (20.6 MB/s) - ‘www.packer.io/assets/images/arrow-left-e180d41b.png’ saved [346/346] - -2016-12-15 14:14:57 (20.6 MB/s) - ‘www.packer.io/assets/images/arrow-left-e180d41b.png’ saved [346/346] - ---2016-12-15 14:14:57-- https://www.packer.io/assets/images/arrow-right-e343e6ed.png -Reusing existing connection to www.packer.io:443. ---2016-12-15 14:14:57-- https://www.packer.io/assets/images/arrow-right-e343e6ed.png -Reusing existing connection to www.packer.io:443. -HTTP request sent, awaiting response... HTTP request sent, awaiting response... 200 OK -Length: 338200 OK -Length: 338 [image/png] - [image/png] -Saving to: ‘www.packer.io/assets/images/arrow-right-e343e6ed.png’ -Saving to: ‘www.packer.io/assets/images/arrow-right-e343e6ed.png’ - - 0K - 0K 100% 100% 20.1M=0s - - 20.1M=0s - -2016-12-15 14:14:57 (20.1 MB/s) - ‘www.packer.io/assets/images/arrow-right-e343e6ed.png’ saved [338/338] - -2016-12-15 14:14:57 (20.1 MB/s) - ‘www.packer.io/assets/images/arrow-right-e343e6ed.png’ saved [338/338] - ---2016-12-15 14:14:57-- https://www.packer.io/intro/index.html -Reusing existing connection to www.packer.io:443. ---2016-12-15 14:14:57-- https://www.packer.io/intro/index.html -Reusing existing connection to www.packer.io:443. -HTTP request sent, awaiting response... HTTP request sent, awaiting response... 200 OK -200 OK -Length: 18724 (18K) [text/html] -Length: 18724 (18K) [text/html] -Saving to: ‘www.packer.io/intro/index.html’ -Saving to: ‘www.packer.io/intro/index.html’ - - 0K .. - 0K .................. .. .............. 100% 18.8M100% 18.8M=0.001s - -=0.001s - -2016-12-15 14:14:57 (18.8 MB/s) - ‘www.packer.io/intro/index.html’ saved [18724/18724] - -2016-12-15 14:14:57 (18.8 MB/s) - ‘www.packer.io/intro/index.html’ saved [18724/18724] - ---2016-12-15 14:14:57-- https://www.packer.io/intro/why.html ---2016-12-15 14:14:57-- https://www.packer.io/intro/why.html -Reusing existing connection to www.packer.io:443. -Reusing existing connection to www.packer.io:443. -HTTP request sent, awaiting response... HTTP request sent, awaiting response... 200 OK -200 OK -Length: 20070Length: 20070 (20K) [text/html] - (20K) [text/html] -Saving to: ‘www.packer.io/intro/why.html’ -Saving to: ‘www.packer.io/intro/why.html’ - - 0K .. - 0K ............... ..... ............... . 100% 100% 20.1M 20.1M=0.001s - -=0.001s - -2016-12-15 14:14:58 (20.1 MB/s) - ‘www.packer.io/intro/why.html’ saved [20070/20070] - -2016-12-15 14:14:58 (20.1 MB/s) - ‘www.packer.io/intro/why.html’ saved [20070/20070] - ---2016-12-15 14:14:58-- https://www.packer.io/intro/use-cases.html ---2016-12-15 14:14:58-- https://www.packer.io/intro/use-cases.html -Reusing existing connection to www.packer.io:443. -Reusing existing connection to www.packer.io:443. -HTTP request sent, awaiting response... HTTP request sent, awaiting response... 200 OK -200 OK -Length: 19805 (19K) [text/html] -Length: 19805 (19K) [text/html] -Saving to: ‘www.packer.io/intro/use-cases.html’ -Saving to: ‘www.packer.io/intro/use-cases.html’ - - 0K .. - 0K .................. .. ............... . 100% 100% 659K 659K=0.03s - -=0.03s - -2016-12-15 14:14:58 (659 KB/s) - ‘www.packer.io/intro/use-cases.html’ saved [19805/19805] - -2016-12-15 14:14:58 (659 KB/s) - ‘www.packer.io/intro/use-cases.html’ saved [19805/19805] - ---2016-12-15 14:14:58-- https://www.packer.io/intro/platforms.html ---2016-12-15 14:14:58-- https://www.packer.io/intro/platforms.html -Reusing existing connection to www.packer.io:443. -Reusing existing connection to www.packer.io:443. -HTTP request sent, awaiting response... HTTP request sent, awaiting response... 200 OK -200 OK -Length: 21214 (21K) [text/html] -Length: 21214 (21K) [text/html] -Saving to: ‘www.packer.io/intro/platforms.html’ -Saving to: ‘www.packer.io/intro/platforms.html’ - - 0K .. - 0K .................. .. ................ .. 100% 1.03M 100% 1.03M=0.02s - -=0.02s - -2016-12-15 14:14:59 (1.03 MB/s) - ‘www.packer.io/intro/platforms.html’ saved [21214/21214] - -2016-12-15 14:14:59 (1.03 MB/s) - ‘www.packer.io/intro/platforms.html’ saved [21214/21214] - ---2016-12-15 14:14:59-- https://www.packer.io/intro/hashicorp-ecosystem.html -Reusing existing connection to www.packer.io:443. ---2016-12-15 14:14:59-- https://www.packer.io/intro/hashicorp-ecosystem.html -Reusing existing connection to www.packer.io:443. -HTTP request sent, awaiting response... HTTP request sent, awaiting response... 200 OK -Length: 20666200 OK -Length: 20666 (20K) [text/html] - (20K) [text/html] -Saving to: ‘www.packer.io/intro/hashicorp-ecosystem.html’ -Saving to: ‘www.packer.io/intro/hashicorp-ecosystem.html’ - - 0K .. - 0K .................. .. ................ .. 100% 100% 1.33M 1.33M=0.01s - -=0.01s - -2016-12-15 14:14:59 (1.33 MB/s) - ‘www.packer.io/intro/hashicorp-ecosystem.html’ saved [20666/20666] - -2016-12-15 14:14:59 (1.33 MB/s) - ‘www.packer.io/intro/hashicorp-ecosystem.html’ saved [20666/20666] - ---2016-12-15 14:14:59-- https://www.packer.io/intro/getting-started/setup.html -Reusing existing connection to www.packer.io:443. ---2016-12-15 14:14:59-- https://www.packer.io/intro/getting-started/setup.html -Reusing existing connection to www.packer.io:443. -HTTP request sent, awaiting response... HTTP request sent, awaiting response... 200 OK -200 OK -Length: 21420 (21K) [text/html] -Length: 21420 (21K) [text/html] -Saving to: ‘www.packer.io/intro/getting-started/setup.html’ -Saving to: ‘www.packer.io/intro/getting-started/setup.html’ - - 0K .. - 0K .................. .. .................. 100%100% 18.9M 18.9M=0.001s - -=0.001s - -2016-12-15 14:14:59 (18.9 MB/s) - ‘www.packer.io/intro/getting-started/setup.html’ saved [21420/21420] - -2016-12-15 14:14:59 (18.9 MB/s) - ‘www.packer.io/intro/getting-started/setup.html’ saved [21420/21420] - ---2016-12-15 14:14:59-- https://www.packer.io/intro/getting-started/build-image.html ---2016-12-15 14:14:59-- https://www.packer.io/intro/getting-started/build-image.html -Reusing existing connection to www.packer.io:443. -Reusing existing connection to www.packer.io:443. -HTTP request sent, awaiting response... HTTP request sent, awaiting response... 200 OK -200 OK -Length: 26147 (26K) [text/html] -Length: 26147 (26K) [text/html] -Saving to: ‘www.packer.io/intro/getting-started/build-image.html’ -Saving to: ‘www.packer.io/intro/getting-started/build-image.html’ - - 0K .. - 0K .................. .. .................. ... ..... .. 100%100% 13.7M 13.7M=0.002s - -=0.002s - -2016-12-15 14:15:00 (13.7 MB/s) - ‘www.packer.io/intro/getting-started/build-image.html’ saved [26147/26147] - -2016-12-15 14:15:00 (13.7 MB/s) - ‘www.packer.io/intro/getting-started/build-image.html’ saved [26147/26147] - ---2016-12-15 14:15:00-- https://www.packer.io/intro/getting-started/provision.html -Reusing existing connection to www.packer.io:443. ---2016-12-15 14:15:00-- https://www.packer.io/intro/getting-started/provision.html -Reusing existing connection to www.packer.io:443. -HTTP request sent, awaiting response... HTTP request sent, awaiting response... 200 OK -200 OK -Length: 22253 (22K) [text/html] -Length: 22253 (22K) [text/html] -Saving to: ‘www.packer.io/intro/getting-started/provision.html’ -Saving to: ‘www.packer.io/intro/getting-started/provision.html’ - - 0K ........ - 0K .......... ...... ........... . ..... . 100%100% 2.75M=0.008s 2.75M=0.008s - - - -2016-12-15 14:15:00 (2.75 MB/s) - ‘www.packer.io/intro/getting-started/provision.html’ saved [22253/22253] - -2016-12-15 14:15:00 (2.75 MB/s) - ‘www.packer.io/intro/getting-started/provision.html’ saved [22253/22253] - ---2016-12-15 14:15:00-- https://www.packer.io/intro/getting-started/parallel-builds.html -Reusing existing connection to www.packer.io:443. ---2016-12-15 14:15:00-- https://www.packer.io/intro/getting-started/parallel-builds.html -Reusing existing connection to www.packer.io:443. -HTTP request sent, awaiting response... HTTP request sent, awaiting response... 200 OK -200 OK -Length: 24256 (24K) [text/html] -Length: 24256 (24K) [text/html] -Saving to: ‘www.packer.io/intro/getting-started/parallel-builds.html’ -Saving to: ‘www.packer.io/intro/getting-started/parallel-builds.html’ - - 0K ........ - 0K ............ ... ............ ........ ... 100% 6.84M 100% 6.84M=0.003s - -=0.003s - -2016-12-15 14:15:00 (6.84 MB/s) - ‘www.packer.io/intro/getting-started/parallel-builds.html’ saved [24256/24256] - -2016-12-15 14:15:00 (6.84 MB/s) - ‘www.packer.io/intro/getting-started/parallel-builds.html’ saved [24256/24256] - ---2016-12-15 14:15:00-- https://www.packer.io/intro/getting-started/vagrant.html -Reusing existing connection to www.packer.io:443. ---2016-12-15 14:15:00-- https://www.packer.io/intro/getting-started/vagrant.html -Reusing existing connection to www.packer.io:443. -HTTP request sent, awaiting response... HTTP request sent, awaiting response... 200 OK -200 OK -Length: Length: 20893 (20K) [text/html] -20893 (20K) [text/html] -Saving to: ‘www.packer.io/intro/getting-started/vagrant.html’ -Saving to: ‘www.packer.io/intro/getting-started/vagrant.html’ - - 0K . - 0K ................. ....... .............. . 100% 100% 75.2M=0s - - 75.2M=0s - -2016-12-15 14:15:01 (75.2 MB/s) - ‘www.packer.io/intro/getting-started/vagrant.html’ saved [20893/20893] - -2016-12-15 14:15:01 (75.2 MB/s) - ‘www.packer.io/intro/getting-started/vagrant.html’ saved [20893/20893] - ---2016-12-15 14:15:01-- https://www.packer.io/intro/getting-started/remote-builds.html -Reusing existing connection to www.packer.io:443. -HTTP request sent, awaiting response... --2016-12-15 14:15:01-- https://www.packer.io/intro/getting-started/remote-builds.html -Reusing existing connection to www.packer.io:443. -HTTP request sent, awaiting response... 200 OK -200 OK -Length: 21699 (21K) [text/html] -Length: 21699 (21K) [text/html] -Saving to: ‘www.packer.io/intro/getting-started/remote-builds.html’ -Saving to: ‘www.packer.io/intro/getting-started/remote-builds.html’ - - 0K ....... - 0K ........... ....... .......... . ..... . 100% 2.08M=0.01s - - 100% 2.08M=0.01s - -2016-12-15 14:15:01 (2.08 MB/s) - ‘www.packer.io/intro/getting-started/remote-builds.html’ saved [21699/21699] - -2016-12-15 14:15:01 (2.08 MB/s) - ‘www.packer.io/intro/getting-started/remote-builds.html’ saved [21699/21699] - ---2016-12-15 14:15:01-- https://www.packer.io/intro/getting-started/next.html -Reusing existing connection to www.packer.io:443. ---2016-12-15 14:15:01-- https://www.packer.io/intro/getting-started/next.html -Reusing existing connection to www.packer.io:443. -HTTP request sent, awaiting response... HTTP request sent, awaiting response... 200 OK -200 OK -Length: 18124 (18K) [text/html] -Length: 18124 (18K) [text/html] -Saving to: ‘www.packer.io/intro/getting-started/next.html’ -Saving to: ‘www.packer.io/intro/getting-started/next.html’ - - 0K ........ - 0K .......... ....... ....... .. 100%100% 8.70M 8.70M=0.002s - -=0.002s - -2016-12-15 14:15:02 (8.70 MB/s) - ‘www.packer.io/intro/getting-started/next.html’ saved [18124/18124] - -2016-12-15 14:15:02 (8.70 MB/s) - ‘www.packer.io/intro/getting-started/next.html’ saved [18124/18124] - ---2016-12-15 14:15:02-- https://www.packer.io/docs/installation.html -Reusing existing connection to www.packer.io:443. ---2016-12-15 14:15:02-- https://www.packer.io/docs/installation.html -Reusing existing connection to www.packer.io:443. -HTTP request sent, awaiting response... HTTP request sent, awaiting response... 200 OK -Length: 200 OK -Length: 25458 (25K) [text/html] -25458 (25K) [text/html] -Saving to: ‘www.packer.io/docs/installation.html’ -Saving to: ‘www.packer.io/docs/installation.html’ - - 0K ..... - 0K ............. ....... .......... ........ ..... 100% 100% 5.36M 5.36M=0.005s - -=0.005s - -2016-12-15 14:15:02 (5.36 MB/s) - ‘www.packer.io/docs/installation.html’ saved [25458/25458] - -2016-12-15 14:15:02 (5.36 MB/s) - ‘www.packer.io/docs/installation.html’ saved [25458/25458] - ---2016-12-15 14:15:02-- https://www.packer.io/docs/basics/terminology.html -Reusing existing connection to www.packer.io:443. ---2016-12-15 14:15:02-- https://www.packer.io/docs/basics/terminology.html -Reusing existing connection to www.packer.io:443. -HTTP request sent, awaiting response... HTTP request sent, awaiting response... 200 OK -200 OK -Length: 24848 (24K) [text/html] -Length: 24848 (24K) [text/html] -Saving to: ‘www.packer.io/docs/basics/terminology.html’ -Saving to: ‘www.packer.io/docs/basics/terminology.html’ - - 0K .... - 0K .............. ....... .......... ........ .... . 100%100% 35.6M=0.001s - - 35.6M=0.001s - -2016-12-15 14:15:03 (35.6 MB/s) - ‘www.packer.io/docs/basics/terminology.html’ saved [24848/24848] - -2016-12-15 14:15:03 (35.6 MB/s) - ‘www.packer.io/docs/basics/terminology.html’ saved [24848/24848] - ---2016-12-15 14:15:03-- https://www.packer.io/docs/command-line/introduction.html -Reusing existing connection to www.packer.io:443. ---2016-12-15 14:15:03-- https://www.packer.io/docs/command-line/introduction.html -Reusing existing connection to www.packer.io:443. -HTTP request sent, awaiting response... HTTP request sent, awaiting response... 200 OK -200 OK -Length: 22838 (22K) [text/html] -Length: 22838 (22K) [text/html] -Saving to: ‘www.packer.io/docs/command-line/introduction.html’ -Saving to: ‘www.packer.io/docs/command-line/introduction.html’ - - 0K ........ - 0K .......... ...... ........... .. ..... .. 100%100% 12.8M=0.002s 12.8M=0.002s - - - -2016-12-15 14:15:03 (12.8 MB/s) - ‘www.packer.io/docs/command-line/introduction.html’ saved [22838/22838] - -2016-12-15 14:15:03 (12.8 MB/s) - ‘www.packer.io/docs/command-line/introduction.html’ saved [22838/22838] - ---2016-12-15 14:15:03-- https://www.packer.io/docs/command-line/build.html ---2016-12-15 14:15:03-- https://www.packer.io/docs/command-line/build.html -Reusing existing connection to www.packer.io:443. -Reusing existing connection to www.packer.io:443. -HTTP request sent, awaiting response... HTTP request sent, awaiting response... 200 OK -200 OK -Length: 24584 (24K) [text/html] -Length: 24584 (24K) [text/html] -Saving to: ‘www.packer.io/docs/command-line/build.html’ -Saving to: ‘www.packer.io/docs/command-line/build.html’ - - 0K ..... - 0K ............. ....... .......... ........ .... . 100% 100% 16.7M 16.7M=0.001s - -=0.001s - -2016-12-15 14:15:03 (16.7 MB/s) - ‘www.packer.io/docs/command-line/build.html’ saved [24584/24584] - -2016-12-15 14:15:03 (16.7 MB/s) - ‘www.packer.io/docs/command-line/build.html’ saved [24584/24584] - ---2016-12-15 14:15:03-- https://www.packer.io/docs/command-line/fix.html -Reusing existing connection to www.packer.io:443. ---2016-12-15 14:15:03-- https://www.packer.io/docs/command-line/fix.html -Reusing existing connection to www.packer.io:443. -HTTP request sent, awaiting response... HTTP request sent, awaiting response... 200 OK -Length: 200 OK -Length: 23152 (23K) [text/html] -23152 (23K) [text/html] -Saving to: ‘www.packer.io/docs/command-line/fix.html’ -Saving to: ‘www.packer.io/docs/command-line/fix.html’ - - 0K ........ - 0K ............ .... ........... .. ..... .. 100%100% 98.6M=0s - - 98.6M=0s - -2016-12-15 14:15:04 (98.6 MB/s) - ‘www.packer.io/docs/command-line/fix.html’ saved [23152/23152] - -2016-12-15 14:15:04 (98.6 MB/s) - ‘www.packer.io/docs/command-line/fix.html’ saved [23152/23152] - ---2016-12-15 14:15:04-- https://www.packer.io/docs/command-line/inspect.html -Reusing existing connection to www.packer.io:443. ---2016-12-15 14:15:04-- https://www.packer.io/docs/command-line/inspect.html -Reusing existing connection to www.packer.io:443. -HTTP request sent, awaiting response... HTTP request sent, awaiting response... 200 OK -200 OK -Length: 23102 (23K) [text/html] -Length: 23102 (23K) [text/html] -Saving to: ‘www.packer.io/docs/command-line/inspect.html’ -Saving to: ‘www.packer.io/docs/command-line/inspect.html’ - - 0K ..... - 0K ............. ....... .......... .. ..... .. 100% 100% 24.2M 24.2M=0.001s - -=0.001s - -2016-12-15 14:15:04 (24.2 MB/s) - ‘www.packer.io/docs/command-line/inspect.html’ saved [23102/23102] - -2016-12-15 14:15:04 (24.2 MB/s) - ‘www.packer.io/docs/command-line/inspect.html’ saved [23102/23102] - ---2016-12-15 14:15:04-- https://www.packer.io/docs/command-line/push.html ---2016-12-15 14:15:04-- https://www.packer.io/docs/command-line/push.html -Reusing existing connection to www.packer.io:443. -Reusing existing connection to www.packer.io:443. -HTTP request sent, awaiting response... HTTP request sent, awaiting response... 200 OK -Length: 200 OK -Length: 26835 (26K) [text/html] -26835 (26K) [text/html] -Saving to: ‘www.packer.io/docs/command-line/push.html’ -Saving to: ‘www.packer.io/docs/command-line/push.html’ - - 0K ........ - 0K .......... .... ............. ........ ...... ... 100%100% 2.43M 2.43M=0.01s - -=0.01s - -2016-12-15 14:15:04 (2.43 MB/s) - ‘www.packer.io/docs/command-line/push.html’ saved [26835/26835] - -2016-12-15 14:15:04 (2.43 MB/s) - ‘www.packer.io/docs/command-line/push.html’ saved [26835/26835] - ---2016-12-15 14:15:04-- https://www.packer.io/docs/command-line/validate.html -Reusing existing connection to www.packer.io:443. ---2016-12-15 14:15:04-- https://www.packer.io/docs/command-line/validate.html -Reusing existing connection to www.packer.io:443. -HTTP request sent, awaiting response... HTTP request sent, awaiting response... 200 OK -200 OK -Length: 22680 (22K) [text/html] -Length: 22680 (22K) [text/html] -Saving to: ‘www.packer.io/docs/command-line/validate.html’ -Saving to: ‘www.packer.io/docs/command-line/validate.html’ - - 0K ....... - 0K ........... ....... .......... .. ..... .. 100%100% 17.3M=0.001s 17.3M=0.001s - - - -2016-12-15 14:15:05 (17.3 MB/s) - ‘www.packer.io/docs/command-line/validate.html’ saved [22680/22680] - -2016-12-15 14:15:05 (17.3 MB/s) - ‘www.packer.io/docs/command-line/validate.html’ saved [22680/22680] - ---2016-12-15 14:15:05-- https://www.packer.io/docs/command-line/machine-readable.html ---2016-12-15 14:15:05-- https://www.packer.io/docs/command-line/machine-readable.html -Reusing existing connection to www.packer.io:443. -Reusing existing connection to www.packer.io:443. -HTTP request sent, awaiting response... HTTP request sent, awaiting response... 200 OK -200 OK -Length: 25569 (25K) [text/html] -Length: 25569 (25K) [text/html] -Saving to: ‘www.packer.io/docs/command-line/machine-readable.html’ -Saving to: ‘www.packer.io/docs/command-line/machine-readable.html’ - - 0K ........ - 0K .......... ..... ............ ........ .... . 100%100% 17.3M 17.3M=0.001s - -=0.001s - -2016-12-15 14:15:05 (17.3 MB/s) - ‘www.packer.io/docs/command-line/machine-readable.html’ saved [25569/25569] - -2016-12-15 14:15:05 (17.3 MB/s) - ‘www.packer.io/docs/command-line/machine-readable.html’ saved [25569/25569] - ---2016-12-15 14:15:05-- https://www.packer.io/docs/templates/introduction.html -Reusing existing connection to www.packer.io:443. ---2016-12-15 14:15:05-- https://www.packer.io/docs/templates/introduction.html -Reusing existing connection to www.packer.io:443. -HTTP request sent, awaiting response... HTTP request sent, awaiting response... 200 OK -Length: 26769200 OK -Length: 26769 (26K) [text/html] - (26K) [text/html] -Saving to: ‘www.packer.io/docs/templates/introduction.html’ -Saving to: ‘www.packer.io/docs/templates/introduction.html’ - - 0K .. - 0K ................ ....... .......... ........ ...... ... 100% 100% 34.4M 34.4M=0.001s - -=0.001s - -2016-12-15 14:15:06 (34.4 MB/s) - ‘www.packer.io/docs/templates/introduction.html’ saved [26769/26769] - -2016-12-15 14:15:06 (34.4 MB/s) - ‘www.packer.io/docs/templates/introduction.html’ saved [26769/26769] - ---2016-12-15 14:15:06-- https://www.packer.io/docs/templates/builders.html -Reusing existing connection to www.packer.io:443. ---2016-12-15 14:15:06-- https://www.packer.io/docs/templates/builders.html -Reusing existing connection to www.packer.io:443. -HTTP request sent, awaiting response... HTTP request sent, awaiting response... 200 OK -200 OK -Length: 24483 (24K) [text/html] -Length: 24483 (24K) [text/html] -Saving to: ‘www.packer.io/docs/templates/builders.html’ -Saving to: ‘www.packer.io/docs/templates/builders.html’ - - 0K ..... - 0K ............. ....... .......... ........ ... 100%100% 1.10M 1.10M=0.02s - -=0.02s - -2016-12-15 14:15:06 (1.10 MB/s) - ‘www.packer.io/docs/templates/builders.html’ saved [24483/24483] - -2016-12-15 14:15:06 (1.10 MB/s) - ‘www.packer.io/docs/templates/builders.html’ saved [24483/24483] - ---2016-12-15 14:15:06-- https://www.packer.io/docs/templates/provisioners.html ---2016-12-15 14:15:06-- https://www.packer.io/docs/templates/provisioners.html -Reusing existing connection to www.packer.io:443. -Reusing existing connection to www.packer.io:443. -HTTP request sent, awaiting response... HTTP request sent, awaiting response... 200 OK -200 OK -Length: 27000 (26K) [text/html] -Length: 27000 (26K) [text/html] -Saving to: ‘www.packer.io/docs/templates/provisioners.html’ -Saving to: ‘www.packer.io/docs/templates/provisioners.html’ - - 0K ........ - 0K .......... ..... ............ ........ ....... .. 100% 100% 51.0M 51.0M=0.001s - -=0.001s - -2016-12-15 14:15:07 (51.0 MB/s) - ‘www.packer.io/docs/templates/provisioners.html’ saved [27000/27000] - -2016-12-15 14:15:07 (51.0 MB/s) - ‘www.packer.io/docs/templates/provisioners.html’ saved [27000/27000] - ---2016-12-15 14:15:07-- https://www.packer.io/docs/templates/post-processors.html ---2016-12-15 14:15:07-- https://www.packer.io/docs/templates/post-processors.html -Reusing existing connection to www.packer.io:443. -Reusing existing connection to www.packer.io:443. -HTTP request sent, awaiting response... HTTP request sent, awaiting response... 200 OK -200 OK -Length: 29049 (28K) [text/html] -Length: 29049 (28K) [text/html] -Saving to: ‘www.packer.io/docs/templates/post-processors.html’ -Saving to: ‘www.packer.io/docs/templates/post-processors.html’ - - 0K ........ - 0K ............ ... ............ ........ ........ ..... 100%100% 47.8M=0.001s 47.8M=0.001s - - - -2016-12-15 14:15:07 (47.8 MB/s) - ‘www.packer.io/docs/templates/post-processors.html’ saved [29049/29049] - -2016-12-15 14:15:07 (47.8 MB/s) - ‘www.packer.io/docs/templates/post-processors.html’ saved [29049/29049] - ---2016-12-15 14:15:07-- https://www.packer.io/docs/templates/push.html -Reusing existing connection to www.packer.io:443. ---2016-12-15 14:15:07-- https://www.packer.io/docs/templates/push.html -Reusing existing connection to www.packer.io:443. -HTTP request sent, awaiting response... HTTP request sent, awaiting response... 200 OK -200 OK -Length: 24759 (24K) [text/html] -Length: 24759 (24K) [text/html] -Saving to: ‘www.packer.io/docs/templates/push.html’ -Saving to: ‘www.packer.io/docs/templates/push.html’ - - 0K ........ - 0K .......... ....... .......... ........ .... . 100%100% 1.21M 1.21M=0.02s - -=0.02s - -2016-12-15 14:15:08 (1.21 MB/s) - ‘www.packer.io/docs/templates/push.html’ saved [24759/24759] - -2016-12-15 14:15:08 (1.21 MB/s) - ‘www.packer.io/docs/templates/push.html’ saved [24759/24759] - ---2016-12-15 14:15:08-- https://www.packer.io/docs/templates/communicator.html -Reusing existing connection to www.packer.io:443. ---2016-12-15 14:15:08-- https://www.packer.io/docs/templates/communicator.html -Reusing existing connection to www.packer.io:443. -HTTP request sent, awaiting response... HTTP request sent, awaiting response... 200 OK -200 OK -Length: 28271 (28K) [text/html] -Length: 28271 (28K) [text/html] -Saving to: ‘www.packer.io/docs/templates/communicator.html’ -Saving to: ‘www.packer.io/docs/templates/communicator.html’ - - 0K ........ - 0K .......... .... ............. ...... ......... .... 100% 100% 1.41M=0.02s 1.41M=0.02s - - - -2016-12-15 14:15:08 (1.41 MB/s) - ‘www.packer.io/docs/templates/communicator.html’ saved [28271/28271] - -2016-12-15 14:15:08 (1.41 MB/s) - ‘www.packer.io/docs/templates/communicator.html’ saved [28271/28271] - ---2016-12-15 14:15:08-- https://www.packer.io/docs/templates/configuration-templates.html -Reusing existing connection to www.packer.io:443. ---2016-12-15 14:15:08-- https://www.packer.io/docs/templates/configuration-templates.html -Reusing existing connection to www.packer.io:443. -HTTP request sent, awaiting response... HTTP request sent, awaiting response... 200 OK -200 OK -Length: 27963 (27K) [text/html] -Length: 27963 (27K) [text/html] -Saving to: ‘www.packer.io/docs/templates/configuration-templates.html’ -Saving to: ‘www.packer.io/docs/templates/configuration-templates.html’ - - 0K ........ - 0K .......... ....... .......... ....... ..... ....... 100%100% 153M=0s 153M=0s - - - -2016-12-15 14:15:08 (153 MB/s) - ‘www.packer.io/docs/templates/configuration-templates.html’ saved [27963/27963] - -2016-12-15 14:15:08 (153 MB/s) - ‘www.packer.io/docs/templates/configuration-templates.html’ saved [27963/27963] - ---2016-12-15 14:15:08-- https://www.packer.io/docs/templates/user-variables.html ---2016-12-15 14:15:08-- https://www.packer.io/docs/templates/user-variables.html -Reusing existing connection to www.packer.io:443. -Reusing existing connection to www.packer.io:443. -HTTP request sent, awaiting response... HTTP request sent, awaiting response... 200 OK -Length: 29467200 OK -Length: 29467 (29K) [text/html] - (29K) [text/html] -Saving to: ‘www.packer.io/docs/templates/user-variables.html’ -Saving to: ‘www.packer.io/docs/templates/user-variables.html’ - - 0K ...... - 0K ............ ....... .......... ........ ........ ..... 100%100% 32.6M=0.001s - - 32.6M=0.001s - -2016-12-15 14:15:09 (32.6 MB/s) - ‘www.packer.io/docs/templates/user-variables.html’ saved [29467/29467] - -2016-12-15 14:15:09 (32.6 MB/s) - ‘www.packer.io/docs/templates/user-variables.html’ saved [29467/29467] - ---2016-12-15 14:15:09-- https://www.packer.io/docs/templates/veewee-to-packer.html ---2016-12-15 14:15:09-- https://www.packer.io/docs/templates/veewee-to-packer.html -Reusing existing connection to www.packer.io:443. -Reusing existing connection to www.packer.io:443. -HTTP request sent, awaiting response... HTTP request sent, awaiting response... 200 OK -200 OK -Length: 24510 (24K) [text/html] -Length: 24510 (24K) [text/html] -Saving to: ‘www.packer.io/docs/templates/veewee-to-packer.html’ -Saving to: ‘www.packer.io/docs/templates/veewee-to-packer.html’ - - 0K ........ - 0K .......... ....... .......... ........ ... 100%100% 1.03M=0.02s 1.03M=0.02s - - - -2016-12-15 14:15:10 (1.03 MB/s) - ‘www.packer.io/docs/templates/veewee-to-packer.html’ saved [24510/24510] - -2016-12-15 14:15:10 (1.03 MB/s) - ‘www.packer.io/docs/templates/veewee-to-packer.html’ saved [24510/24510] - ---2016-12-15 14:15:10-- https://www.packer.io/docs/builders/amazon.html -Reusing existing connection to www.packer.io:443. ---2016-12-15 14:15:10-- https://www.packer.io/docs/builders/amazon.html -Reusing existing connection to www.packer.io:443. -HTTP request sent, awaiting response... HTTP request sent, awaiting response... 200 OK -Length: 29810200 OK -Length: 29810 (29K) [text/html] - (29K) [text/html] -Saving to: ‘www.packer.io/docs/builders/amazon.html’ -Saving to: ‘www.packer.io/docs/builders/amazon.html’ - - 0K ....... - 0K ........... ....... .......... ........ ............. .. 100%100% 1.28M 1.28M=0.02s - -=0.02s - -2016-12-15 14:15:10 (1.28 MB/s) - ‘www.packer.io/docs/builders/amazon.html’ saved [29810/29810] - -2016-12-15 14:15:10 (1.28 MB/s) - ‘www.packer.io/docs/builders/amazon.html’ saved [29810/29810] - ---2016-12-15 14:15:10-- https://www.packer.io/docs/builders/azure.html -Reusing existing connection to www.packer.io:443. ---2016-12-15 14:15:10-- https://www.packer.io/docs/builders/azure.html -Reusing existing connection to www.packer.io:443. -HTTP request sent, awaiting response... HTTP request sent, awaiting response... 200 OK -Length: 36170200 OK -Length: 36170 (35K) [text/html] - (35K) [text/html] -Saving to: ‘www.packer.io/docs/builders/azure.html’ -Saving to: ‘www.packer.io/docs/builders/azure.html’ - - 0K ......... - 0K .......... ...... .......... ........ ................. . ..... .... 100% 42.7M=0.001s - - 100% 42.7M=0.001s - -2016-12-15 14:15:11 (42.7 MB/s) - ‘www.packer.io/docs/builders/azure.html’ saved [36170/36170] - -2016-12-15 14:15:11 (42.7 MB/s) - ‘www.packer.io/docs/builders/azure.html’ saved [36170/36170] - ---2016-12-15 14:15:11-- https://www.packer.io/docs/builders/cloudstack.html ---2016-12-15 14:15:11-- https://www.packer.io/docs/builders/cloudstack.html -Reusing existing connection to www.packer.io:443. -Reusing existing connection to www.packer.io:443. -HTTP request sent, awaiting response... HTTP request sent, awaiting response... 200 OK -Length: 200 OK -Length: 29917 (29K) [text/html] -29917 (29K) [text/html] -Saving to: ‘www.packer.io/docs/builders/cloudstack.html’ -Saving to: ‘www.packer.io/docs/builders/cloudstack.html’ - - 0K ........ - 0K .......... ..... ............ ........ ......... ...... 100%100% 1.15M 1.15M=0.02s - -=0.02s - -2016-12-15 14:15:11 (1.15 MB/s) - ‘www.packer.io/docs/builders/cloudstack.html’ saved [29917/29917] - -2016-12-15 14:15:11 (1.15 MB/s) - ‘www.packer.io/docs/builders/cloudstack.html’ saved [29917/29917] - ---2016-12-15 14:15:11-- https://www.packer.io/docs/builders/digitalocean.html ---2016-12-15 14:15:11-- https://www.packer.io/docs/builders/digitalocean.html -Reusing existing connection to www.packer.io:443. -Reusing existing connection to www.packer.io:443. -HTTP request sent, awaiting response... HTTP request sent, awaiting response... 200 OK -200 OK -Length: 26438 (26K) [text/html] -Length: 26438 (26K) [text/html] -Saving to: ‘www.packer.io/docs/builders/digitalocean.html’ -Saving to: ‘www.packer.io/docs/builders/digitalocean.html’ - - 0K .... - 0K .............. ....... .......... ........ ..... .. 100% 962K=0.03s - -100% 962K=0.03s - -2016-12-15 14:15:11 (962 KB/s) - ‘www.packer.io/docs/builders/digitalocean.html’ saved [26438/26438] - -2016-12-15 14:15:11 (962 KB/s) - ‘www.packer.io/docs/builders/digitalocean.html’ saved [26438/26438] - ---2016-12-15 14:15:11-- https://www.packer.io/docs/builders/docker.html -Reusing existing connection to www.packer.io:443. ---2016-12-15 14:15:11-- https://www.packer.io/docs/builders/docker.html -Reusing existing connection to www.packer.io:443. -HTTP request sent, awaiting response... HTTP request sent, awaiting response... 200 OK -200 OK -Length: 35083 (34K) [text/html] -Length: 35083 (34K) [text/html] -Saving to: ‘www.packer.io/docs/builders/docker.html’ -Saving to: ‘www.packer.io/docs/builders/docker.html’ - - 0K ........ - 0K .......... ....... .......... ........ .......... ........ .... 100% 2.81M... 100% 2.81M=0.01s - -=0.01s - -2016-12-15 14:15:12 (2.81 MB/s) - ‘www.packer.io/docs/builders/docker.html’ saved [35083/35083] - -2016-12-15 14:15:12 (2.81 MB/s) - ‘www.packer.io/docs/builders/docker.html’ saved [35083/35083] - ---2016-12-15 14:15:12-- https://www.packer.io/docs/builders/file.html -Reusing existing connection to www.packer.io:443. ---2016-12-15 14:15:12-- https://www.packer.io/docs/builders/file.html -Reusing existing connection to www.packer.io:443. -HTTP request sent, awaiting response... HTTP request sent, awaiting response... 200 OK -200 OK -Length: 23310 (23K) [text/html] -Length: 23310 (23K) [text/html] -Saving to: ‘www.packer.io/docs/builders/file.html’ -Saving to: ‘www.packer.io/docs/builders/file.html’ - - 0K ........ - 0K .......... .... ............. .. ..... .. 100%100% 9.49M=0.002s 9.49M=0.002s - - - -2016-12-15 14:15:12 (9.49 MB/s) - ‘www.packer.io/docs/builders/file.html’ saved [23310/23310] - -2016-12-15 14:15:12 (9.49 MB/s) - ‘www.packer.io/docs/builders/file.html’ saved [23310/23310] - ---2016-12-15 14:15:12-- https://www.packer.io/docs/builders/googlecompute.html ---2016-12-15 14:15:12-- https://www.packer.io/docs/builders/googlecompute.html -Reusing existing connection to www.packer.io:443. -Reusing existing connection to www.packer.io:443. -HTTP request sent, awaiting response... HTTP request sent, awaiting response... 200 OK -200 OK -Length: 35168 (34K) [text/html] -Length: 35168 (34K) [text/html] -Saving to: ‘www.packer.io/docs/builders/googlecompute.html’ -Saving to: ‘www.packer.io/docs/builders/googlecompute.html’ - - 0K ........ - 0K .......... ..... ............ ........ .......... ........ .... ... 100% 12.9M=0.003s - -100% 12.9M=0.003s - -2016-12-15 14:15:13 (12.9 MB/s) - ‘www.packer.io/docs/builders/googlecompute.html’ saved [35168/35168] - -2016-12-15 14:15:13 (12.9 MB/s) - ‘www.packer.io/docs/builders/googlecompute.html’ saved [35168/35168] - ---2016-12-15 14:15:13-- https://www.packer.io/docs/builders/null.html ---2016-12-15 14:15:13-- https://www.packer.io/docs/builders/null.html -Reusing existing connection to www.packer.io:443. -Reusing existing connection to www.packer.io:443. -HTTP request sent, awaiting response... HTTP request sent, awaiting response... 200 OK -200 OK -Length: 22599 (22K)Length: 22599 (22K) [text/html] - [text/html] -Saving to: ‘www.packer.io/docs/builders/null.html’ -Saving to: ‘www.packer.io/docs/builders/null.html’ - - 0K ........ - 0K .......... ....... .......... .. ..... .. 100% 100% 11.4M 11.4M=0.002s - -=0.002s - -2016-12-15 14:15:13 (11.4 MB/s) - ‘www.packer.io/docs/builders/null.html’ saved [22599/22599] - -2016-12-15 14:15:13 (11.4 MB/s) - ‘www.packer.io/docs/builders/null.html’ saved [22599/22599] - ---2016-12-15 14:15:13-- https://www.packer.io/docs/builders/openstack.html -Reusing existing connection to www.packer.io:443. ---2016-12-15 14:15:13-- https://www.packer.io/docs/builders/openstack.html -Reusing existing connection to www.packer.io:443. -HTTP request sent, awaiting response... HTTP request sent, awaiting response... 200 OK -200 OK -Length: 35310 (34K) [text/html] -Length: 35310 (34K) [text/html] -Saving to: ‘www.packer.io/docs/builders/openstack.html’ -Saving to: ‘www.packer.io/docs/builders/openstack.html’ - - 0K ........ - 0K ............ .... ........... ....... ................. . ..... ... 100% 10.2M100% 10.2M=0.003s - -=0.003s - -2016-12-15 14:15:14 (10.2 MB/s) - ‘www.packer.io/docs/builders/openstack.html’ saved [35310/35310] - -2016-12-15 14:15:14 (10.2 MB/s) - ‘www.packer.io/docs/builders/openstack.html’ saved [35310/35310] - ---2016-12-15 14:15:14-- https://www.packer.io/docs/builders/parallels.html ---2016-12-15 14:15:14-- https://www.packer.io/docs/builders/parallels.html -Reusing existing connection to www.packer.io:443. -Reusing existing connection to www.packer.io:443. -HTTP request sent, awaiting response... HTTP request sent, awaiting response... 200 OK -200 OK -Length: 23210 (23K) [text/html] -Length: 23210 (23K) [text/html] -Saving to: ‘www.packer.io/docs/builders/parallels.html’ -Saving to: ‘www.packer.io/docs/builders/parallels.html’ - - 0K ........ - 0K .......... ....... .......... .. ..... .. 100% 79.1M100% 79.1M=0s - -=0s - -2016-12-15 14:15:14 (79.1 MB/s) - ‘www.packer.io/docs/builders/parallels.html’ saved [23210/23210] - -2016-12-15 14:15:14 (79.1 MB/s) - ‘www.packer.io/docs/builders/parallels.html’ saved [23210/23210] - ---2016-12-15 14:15:14-- https://www.packer.io/docs/builders/qemu.html -Reusing existing connection to www.packer.io:443. ---2016-12-15 14:15:14-- https://www.packer.io/docs/builders/qemu.html -Reusing existing connection to www.packer.io:443. -HTTP request sent, awaiting response... HTTP request sent, awaiting response... 200 OK -200 OK -Length: 46889 (46K) [text/html] -Length: 46889 (46K) [text/html] -Saving to: ‘www.packer.io/docs/builders/qemu.html’ -Saving to: ‘www.packer.io/docs/builders/qemu.html’ - - 0K ....... - 0K ........... ....... .......... ........ .......... ........ .................. ..... . ..... 100% 100% 22.3M 22.3M=0.002s - -=0.002s - -2016-12-15 14:15:15 (22.3 MB/s) - ‘www.packer.io/docs/builders/qemu.html’ saved [46889/46889] - -2016-12-15 14:15:15 (22.3 MB/s) - ‘www.packer.io/docs/builders/qemu.html’ saved [46889/46889] - ---2016-12-15 14:15:15-- https://www.packer.io/docs/builders/virtualbox.html -Reusing existing connection to www.packer.io:443. ---2016-12-15 14:15:15-- https://www.packer.io/docs/builders/virtualbox.html -Reusing existing connection to www.packer.io:443. -HTTP request sent, awaiting response... HTTP request sent, awaiting response... 200 OK -200 OK -Length: 22746 (22K) [text/html] -Length: 22746 (22K) [text/html] -Saving to: ‘www.packer.io/docs/builders/virtualbox.html’ -Saving to: ‘www.packer.io/docs/builders/virtualbox.html’ - - 0K ........ - 0K .......... ...... ........... .. ..... .. 100% 100% 21.0M 21.0M=0.001s - -=0.001s - -2016-12-15 14:15:15 (21.0 MB/s) - ‘www.packer.io/docs/builders/virtualbox.html’ saved [22746/22746] - -2016-12-15 14:15:15 (21.0 MB/s) - ‘www.packer.io/docs/builders/virtualbox.html’ saved [22746/22746] - ---2016-12-15 14:15:15-- https://www.packer.io/docs/builders/vmware.html -Reusing existing connection to www.packer.io:443. ---2016-12-15 14:15:15-- https://www.packer.io/docs/builders/vmware.html -Reusing existing connection to www.packer.io:443. -HTTP request sent, awaiting response... HTTP request sent, awaiting response... 200 OK -Length: 200 OK -Length: 22628 (22K) [text/html] -22628 (22K) [text/html] -Saving to: ‘www.packer.io/docs/builders/vmware.html’ -Saving to: ‘www.packer.io/docs/builders/vmware.html’ - - 0K ........ - 0K .......... ..... ............ .. ..... .. 100% 25.7M=0.001s - -100% 25.7M=0.001s - -2016-12-15 14:15:15 (25.7 MB/s) - ‘www.packer.io/docs/builders/vmware.html’ saved [22628/22628] - -2016-12-15 14:15:15 (25.7 MB/s) - ‘www.packer.io/docs/builders/vmware.html’ saved [22628/22628] - ---2016-12-15 14:15:15-- https://www.packer.io/docs/builders/custom.html ---2016-12-15 14:15:15-- https://www.packer.io/docs/builders/custom.html -Reusing existing connection to www.packer.io:443. -Reusing existing connection to www.packer.io:443. -HTTP request sent, awaiting response... HTTP request sent, awaiting response... 200 OK -200 OK -Length: 22025 (22K) [text/html] -Length: 22025 (22K) [text/html] -Saving to: ‘www.packer.io/docs/builders/custom.html’ -Saving to: ‘www.packer.io/docs/builders/custom.html’ - - 0K ....... - 0K ........... ....... .......... . ..... . 100% 11.8M100% 11.8M=0.002s - -=0.002s - -2016-12-15 14:15:15 (11.8 MB/s) - ‘www.packer.io/docs/builders/custom.html’ saved [22025/22025] - -2016-12-15 14:15:15 (11.8 MB/s) - ‘www.packer.io/docs/builders/custom.html’ saved [22025/22025] - ---2016-12-15 14:15:15-- https://www.packer.io/docs/provisioners/shell.html -Reusing existing connection to www.packer.io:443. ---2016-12-15 14:15:15-- https://www.packer.io/docs/provisioners/shell.html -Reusing existing connection to www.packer.io:443. -HTTP request sent, awaiting response... HTTP request sent, awaiting response... 200 OK -200 OK -Length: 33876 (33K) [text/html] -Length: 33876 (33K) [text/html] -Saving to: ‘www.packer.io/docs/provisioners/shell.html’ -Saving to: ‘www.packer.io/docs/provisioners/shell.html’ - - 0K ....... - 0K ........... ....... .......... ........ ................ .. ... 100%.. 100% 46.9M 46.9M=0.001s - -=0.001s - -2016-12-15 14:15:16 (46.9 MB/s) - ‘www.packer.io/docs/provisioners/shell.html’ saved [33876/33876] - -2016-12-15 14:15:16 (46.9 MB/s) - ‘www.packer.io/docs/provisioners/shell.html’ saved [33876/33876] - ---2016-12-15 14:15:16-- https://www.packer.io/docs/provisioners/shell-local.html -Reusing existing connection to www.packer.io:443. ---2016-12-15 14:15:16-- https://www.packer.io/docs/provisioners/shell-local.html -Reusing existing connection to www.packer.io:443. -HTTP request sent, awaiting response... HTTP request sent, awaiting response... 200 OK -Length: 200 OK -Length: 23184 (23K) [text/html] -23184 (23K) [text/html] -Saving to: ‘www.packer.io/docs/provisioners/shell-local.html’ -Saving to: ‘www.packer.io/docs/provisioners/shell-local.html’ - - 0K ........ - 0K .......... .. ............... .. ..... .. 100%100% 5.74M=0.004s 5.74M=0.004s - - - -2016-12-15 14:15:16 (5.74 MB/s) - ‘www.packer.io/docs/provisioners/shell-local.html’ saved [23184/23184] - -2016-12-15 14:15:16 (5.74 MB/s) - ‘www.packer.io/docs/provisioners/shell-local.html’ saved [23184/23184] - ---2016-12-15 14:15:16-- https://www.packer.io/docs/provisioners/file.html -Reusing existing connection to www.packer.io:443. ---2016-12-15 14:15:16-- https://www.packer.io/docs/provisioners/file.html -Reusing existing connection to www.packer.io:443. -HTTP request sent, awaiting response... HTTP request sent, awaiting response... 200 OK -200 OK -Length: 24728 (24K) [text/html] -Length: 24728 (24K) [text/html] -Saving to: ‘www.packer.io/docs/provisioners/file.html’ -Saving to: ‘www.packer.io/docs/provisioners/file.html’ - - 0K ........ - 0K .......... ....... .......... ........ .... . 100%100% 2.25M 2.25M=0.01s - -=0.01s - -2016-12-15 14:15:16 (2.25 MB/s) - ‘www.packer.io/docs/provisioners/file.html’ saved [24728/24728] - -2016-12-15 14:15:16 (2.25 MB/s) - ‘www.packer.io/docs/provisioners/file.html’ saved [24728/24728] - ---2016-12-15 14:15:16-- https://www.packer.io/docs/provisioners/powershell.html ---2016-12-15 14:15:16-- https://www.packer.io/docs/provisioners/powershell.html -Reusing existing connection to www.packer.io:443. -Reusing existing connection to www.packer.io:443. -HTTP request sent, awaiting response... HTTP request sent, awaiting response... 200 OK -Length: 25858 (25K) [text/html] -200 OK -Length: 25858 (25K) [text/html] -Saving to: ‘www.packer.io/docs/provisioners/powershell.html’ -Saving to: ‘www.packer.io/docs/provisioners/powershell.html’ - - 0K ........ - 0K .......... ....... .......... ........ ..... .. 100% 3.66M=0.007s - -100% 3.66M=0.007s - -2016-12-15 14:15:16 (3.66 MB/s) - ‘www.packer.io/docs/provisioners/powershell.html’ saved [25858/25858] - -2016-12-15 14:15:16 (3.66 MB/s) - ‘www.packer.io/docs/provisioners/powershell.html’ saved [25858/25858] - ---2016-12-15 14:15:16-- https://www.packer.io/docs/provisioners/windows-shell.html -Reusing existing connection to www.packer.io:443. ---2016-12-15 14:15:16-- https://www.packer.io/docs/provisioners/windows-shell.html -Reusing existing connection to www.packer.io:443. -HTTP request sent, awaiting response... HTTP request sent, awaiting response... 200 OK -200 OK -Length: 25321 (25K) [text/html] -Length: 25321 (25K) [text/html] -Saving to: ‘www.packer.io/docs/provisioners/windows-shell.html’ -Saving to: ‘www.packer.io/docs/provisioners/windows-shell.html’ - - 0K ..... - 0K ............. ....... .......... ........ .... . 100%100% 15.7M 15.7M=0.002s - -=0.002s - -2016-12-15 14:15:17 (15.7 MB/s) - ‘www.packer.io/docs/provisioners/windows-shell.html’ saved [25321/25321] - -2016-12-15 14:15:17 (15.7 MB/s) - ‘www.packer.io/docs/provisioners/windows-shell.html’ saved [25321/25321] - ---2016-12-15 14:15:17-- https://www.packer.io/docs/provisioners/ansible-local.html ---2016-12-15 14:15:17-- https://www.packer.io/docs/provisioners/ansible-local.html -Reusing existing connection to www.packer.io:443. -Reusing existing connection to www.packer.io:443. -HTTP request sent, awaiting response... HTTP request sent, awaiting response... 200 OK -200 OK -Length: 27346 (27K) [text/html] -Length: 27346 (27K) [text/html] -Saving to: ‘www.packer.io/docs/provisioners/ansible-local.html’ -Saving to: ‘www.packer.io/docs/provisioners/ansible-local.html’ - - 0K ........ - 0K .......... ....... .......... ........ ...... ... 100%100% 13.2M=0.002s 13.2M=0.002s - - - -2016-12-15 14:15:17 (13.2 MB/s) - ‘www.packer.io/docs/provisioners/ansible-local.html’ saved [27346/27346] - -2016-12-15 14:15:17 (13.2 MB/s) - ‘www.packer.io/docs/provisioners/ansible-local.html’ saved [27346/27346] - ---2016-12-15 14:15:17-- https://www.packer.io/docs/provisioners/ansible.html -Reusing existing connection to www.packer.io:443. ---2016-12-15 14:15:17-- https://www.packer.io/docs/provisioners/ansible.html -Reusing existing connection to www.packer.io:443. -HTTP request sent, awaiting response... HTTP request sent, awaiting response... 200 OK -200 OK -Length: 33419 (33K) [text/html] -Length: 33419 (33K) [text/html] -Saving to: ‘www.packer.io/docs/provisioners/ansible.html’ -Saving to: ‘www.packer.io/docs/provisioners/ansible.html’ - - 0K ........ - 0K ........... .... ............ ........ .......... ........ .. . 100%100% 9.05M 9.05M=0.004s - -=0.004s - -2016-12-15 14:15:17 (9.05 MB/s) - ‘www.packer.io/docs/provisioners/ansible.html’ saved [33419/33419] - -2016-12-15 14:15:17 (9.05 MB/s) - ‘www.packer.io/docs/provisioners/ansible.html’ saved [33419/33419] - ---2016-12-15 14:15:17-- https://www.packer.io/docs/provisioners/chef-client.html -Reusing existing connection to www.packer.io:443. ---2016-12-15 14:15:17-- https://www.packer.io/docs/provisioners/chef-client.html -Reusing existing connection to www.packer.io:443. -HTTP request sent, awaiting response... HTTP request sent, awaiting response... 200 OK -200 OK -Length: 37183 (36K) [text/html] -Length: 37183 (36K) [text/html] -Saving to: ‘www.packer.io/docs/provisioners/chef-client.html’ -Saving to: ‘www.packer.io/docs/provisioners/chef-client.html’ - - 0K ........ - 0K .......... ....... .......... ...... ............ ........ ...... ..... 100%100% 11.7M 11.7M=0.003s - -=0.003s - -2016-12-15 14:15:18 (11.7 MB/s) - ‘www.packer.io/docs/provisioners/chef-client.html’ saved [37183/37183] - -2016-12-15 14:15:18 (11.7 MB/s) - ‘www.packer.io/docs/provisioners/chef-client.html’ saved [37183/37183] - ---2016-12-15 14:15:18-- https://www.packer.io/docs/provisioners/chef-solo.html -Reusing existing connection to www.packer.io:443. ---2016-12-15 14:15:18-- https://www.packer.io/docs/provisioners/chef-solo.html -Reusing existing connection to www.packer.io:443. -HTTP request sent, awaiting response... HTTP request sent, awaiting response... 200 OK -200 OK -Length: 31817 (31K) [text/html] -Length: 31817 (31K) [text/html] -Saving to: ‘www.packer.io/docs/provisioners/chef-solo.html’ -Saving to: ‘www.packer.io/docs/provisioners/chef-solo.html’ - - 0K .......... ..... - 0K .......... .......... ........ .......... . ....... . 100% 4.06M100% 4.06M=0.007s - -=0.007s - -2016-12-15 14:15:18 (4.06 MB/s) - ‘www.packer.io/docs/provisioners/chef-solo.html’ saved [31817/31817] - -2016-12-15 14:15:18 (4.06 MB/s) - ‘www.packer.io/docs/provisioners/chef-solo.html’ saved [31817/31817] - ---2016-12-15 14:15:18-- https://www.packer.io/docs/provisioners/puppet-masterless.html -Reusing existing connection to www.packer.io:443. ---2016-12-15 14:15:18-- https://www.packer.io/docs/provisioners/puppet-masterless.html -Reusing existing connection to www.packer.io:443. -HTTP request sent, awaiting response... HTTP request sent, awaiting response... 200 OK -200 OK -Length: 30444 (30K) [text/html] -Length: 30444 (30K) [text/html] -Saving to: ‘www.packer.io/docs/provisioners/puppet-masterless.html’ -Saving to: ‘www.packer.io/docs/provisioners/puppet-masterless.html’ - - 0K .. - 0K .................. .. .................. ... .............. . 100%100% 2.15M 2.15M=0.01s - -=0.01s - -2016-12-15 14:15:19 (2.15 MB/s) - ‘www.packer.io/docs/provisioners/puppet-masterless.html’ saved [30444/30444] - -2016-12-15 14:15:19 (2.15 MB/s) - ‘www.packer.io/docs/provisioners/puppet-masterless.html’ saved [30444/30444] - ---2016-12-15 14:15:19-- https://www.packer.io/docs/provisioners/puppet-server.html ---2016-12-15 14:15:19-- https://www.packer.io/docs/provisioners/puppet-server.html -Reusing existing connection to www.packer.io:443. -Reusing existing connection to www.packer.io:443. -HTTP request sent, awaiting response... HTTP request sent, awaiting response... 200 OK -200 OK -Length: 26449 (26K) [text/html] -Length: 26449 (26K) [text/html] -Saving to: ‘www.packer.io/docs/provisioners/puppet-server.html’ -Saving to: ‘www.packer.io/docs/provisioners/puppet-server.html’ - - 0K ........ - 0K .......... .. ............... ....... ...... 100% 109M=0s - -.. 100% 109M=0s - -2016-12-15 14:15:20 (109 MB/s) - ‘www.packer.io/docs/provisioners/puppet-server.html’ saved [26449/26449] - -2016-12-15 14:15:20 (109 MB/s) - ‘www.packer.io/docs/provisioners/puppet-server.html’ saved [26449/26449] - ---2016-12-15 14:15:20-- https://www.packer.io/docs/provisioners/salt-masterless.html ---2016-12-15 14:15:20-- https://www.packer.io/docs/provisioners/salt-masterless.html -Reusing existing connection to www.packer.io:443. -Reusing existing connection to www.packer.io:443. -HTTP request sent, awaiting response... HTTP request sent, awaiting response... 200 OK -200 OK -Length: 26447Length: 26447 (26K) (26K) [text/html] - [text/html] -Saving to: ‘www.packer.io/docs/provisioners/salt-masterless.html’ -Saving to: ‘www.packer.io/docs/provisioners/salt-masterless.html’ - - 0K ........ - 0K .......... ....... .......... ........ ..... .. 100%100% 3.47M 3.47M=0.007s - -=0.007s - -2016-12-15 14:15:21 (3.47 MB/s) - ‘www.packer.io/docs/provisioners/salt-masterless.html’ saved [26447/26447] - -2016-12-15 14:15:21 (3.47 MB/s) - ‘www.packer.io/docs/provisioners/salt-masterless.html’ saved [26447/26447] - ---2016-12-15 14:15:21-- https://www.packer.io/docs/provisioners/windows-restart.html -Reusing existing connection to www.packer.io:443. ---2016-12-15 14:15:21-- https://www.packer.io/docs/provisioners/windows-restart.html -Reusing existing connection to www.packer.io:443. -HTTP request sent, awaiting response... HTTP request sent, awaiting response... 200 OK -Length: 23521200 OK -Length: 23521 (23K) [text/html] - (23K) [text/html] -Saving to: ‘www.packer.io/docs/provisioners/windows-restart.html’ -Saving to: ‘www.packer.io/docs/provisioners/windows-restart.html’ - - 0K ........ - 0K .......... .... .................. . ... 100%100% 4.52M 4.52M=0.005s - -=0.005s - -2016-12-15 14:15:21 (4.52 MB/s) - ‘www.packer.io/docs/provisioners/windows-restart.html’ saved [23521/23521] - -2016-12-15 14:15:21 (4.52 MB/s) - ‘www.packer.io/docs/provisioners/windows-restart.html’ saved [23521/23521] - ---2016-12-15 14:15:21-- https://www.packer.io/docs/provisioners/custom.html -Reusing existing connection to www.packer.io:443. ---2016-12-15 14:15:21-- https://www.packer.io/docs/provisioners/custom.html -Reusing existing connection to www.packer.io:443. -HTTP request sent, awaiting response... HTTP request sent, awaiting response... 200 OK -200 OK -Length: 22077Length: 22077 (22K) [text/html] - (22K) [text/html] -Saving to: ‘www.packer.io/docs/provisioners/custom.html’ -Saving to: ‘www.packer.io/docs/provisioners/custom.html’ - - 0K ........ - 0K .......... ... .............. . ..... . 100% 100% 146M=0s 146M=0s - - - -2016-12-15 14:15:22 (146 MB/s) - ‘www.packer.io/docs/provisioners/custom.html’ saved [22077/22077] - -2016-12-15 14:15:22 (146 MB/s) - ‘www.packer.io/docs/provisioners/custom.html’ saved [22077/22077] - ---2016-12-15 14:15:22-- https://www.packer.io/docs/post-processors/amazon-import.html -Reusing existing connection to www.packer.io:443. ---2016-12-15 14:15:22-- https://www.packer.io/docs/post-processors/amazon-import.html -Reusing existing connection to www.packer.io:443. -HTTP request sent, awaiting response... HTTP request sent, awaiting response... 200 OK -200 OK -Length: 27414Length: 27414 (27K) [text/html] - (27K) [text/html] -Saving to: ‘www.packer.io/docs/post-processors/amazon-import.html’ -Saving to: ‘www.packer.io/docs/post-processors/amazon-import.html’ - - 0K . - 0K ................. ....... .......... ...... ........ ... 100% 1.84M=0.01s - -100% 1.84M=0.01s - -2016-12-15 14:15:22 (1.84 MB/s) - ‘www.packer.io/docs/post-processors/amazon-import.html’ saved [27414/27414] - -2016-12-15 14:15:22 (1.84 MB/s) - ‘www.packer.io/docs/post-processors/amazon-import.html’ saved [27414/27414] - ---2016-12-15 14:15:22-- https://www.packer.io/docs/post-processors/artifice.html -Reusing existing connection to www.packer.io:443. ---2016-12-15 14:15:22-- https://www.packer.io/docs/post-processors/artifice.html -Reusing existing connection to www.packer.io:443. -HTTP request sent, awaiting response... HTTP request sent, awaiting response... 200 OK -200 OK -Length: 26710 (26K) [text/html] -Length: 26710 (26K) [text/html] -Saving to: ‘www.packer.io/docs/post-processors/artifice.html’ -Saving to: ‘www.packer.io/docs/post-processors/artifice.html’ - - 0K ........ - 0K .......... .. ............... ........ ...... ... 100%100% 64.3M=0s 64.3M=0s - - - -2016-12-15 14:15:22 (64.3 MB/s) - ‘www.packer.io/docs/post-processors/artifice.html’ saved [26710/26710] - -2016-12-15 14:15:22 (64.3 MB/s) - ‘www.packer.io/docs/post-processors/artifice.html’ saved [26710/26710] - ---2016-12-15 14:15:22-- https://www.packer.io/docs/post-processors/atlas.html -Reusing existing connection to www.packer.io:443. ---2016-12-15 14:15:22-- https://www.packer.io/docs/post-processors/atlas.html -Reusing existing connection to www.packer.io:443. -HTTP request sent, awaiting response... HTTP request sent, awaiting response... 200 OK -Length: 28026 (27K) [text/html] -200 OK -Length: 28026 (27K) [text/html] -Saving to: ‘www.packer.io/docs/post-processors/atlas.html’ -Saving to: ‘www.packer.io/docs/post-processors/atlas.html’ - - 0K ...... - 0K ............ ....... .......... ........ ....... .... 100% 3.14M=0.009s - -100% 3.14M=0.009s - -2016-12-15 14:15:23 (3.14 MB/s) - ‘www.packer.io/docs/post-processors/atlas.html’ saved [28026/28026] - -2016-12-15 14:15:23 (3.14 MB/s) - ‘www.packer.io/docs/post-processors/atlas.html’ saved [28026/28026] - ---2016-12-15 14:15:23-- https://www.packer.io/docs/post-processors/compress.html ---2016-12-15 14:15:23-- https://www.packer.io/docs/post-processors/compress.html -Reusing existing connection to www.packer.io:443. -Reusing existing connection to www.packer.io:443. -HTTP request sent, awaiting response... HTTP request sent, awaiting response... 200 OK -200 OK -Length: 24363 (24K) [text/html] -Length: 24363 (24K) [text/html] -Saving to: ‘www.packer.io/docs/post-processors/compress.html’ -Saving to: ‘www.packer.io/docs/post-processors/compress.html’ - - 0K ........ - 0K .......... ....... .......... ........ ... 100%100% 41.9M 41.9M=0.001s - -=0.001s - -2016-12-15 14:15:23 (41.9 MB/s) - ‘www.packer.io/docs/post-processors/compress.html’ saved [24363/24363] - -2016-12-15 14:15:23 (41.9 MB/s) - ‘www.packer.io/docs/post-processors/compress.html’ saved [24363/24363] - ---2016-12-15 14:15:23-- https://www.packer.io/docs/post-processors/checksum.html ---2016-12-15 14:15:23-- https://www.packer.io/docs/post-processors/checksum.html -Reusing existing connection to www.packer.io:443. -Reusing existing connection to www.packer.io:443. -HTTP request sent, awaiting response... HTTP request sent, awaiting response... 200 OK -200 OK -Length: 23347Length: 23347 (23K) [text/html] - (23K) [text/html] -Saving to: ‘www.packer.io/docs/post-processors/checksum.html’ -Saving to: ‘www.packer.io/docs/post-processors/checksum.html’ - - 0K ..... - 0K ............. ..... ............ .. ..... .. 100% 105M100% 105M=0s - -=0s - -2016-12-15 14:15:24 (105 MB/s) - ‘www.packer.io/docs/post-processors/checksum.html’ saved [23347/23347] - -2016-12-15 14:15:24 (105 MB/s) - ‘www.packer.io/docs/post-processors/checksum.html’ saved [23347/23347] - ---2016-12-15 14:15:24-- https://www.packer.io/docs/post-processors/docker-import.html -Reusing existing connection to www.packer.io:443. ---2016-12-15 14:15:24-- https://www.packer.io/docs/post-processors/docker-import.html -Reusing existing connection to www.packer.io:443. -HTTP request sent, awaiting response... HTTP request sent, awaiting response... 200 OK -200 OK -Length: 23311 (23K) [text/html] -Length: 23311 (23K) [text/html] -Saving to: ‘www.packer.io/docs/post-processors/docker-import.html’ -Saving to: ‘www.packer.io/docs/post-processors/docker-import.html’ - - 0K ........ - 0K .......... .... ............. .. ..... .. 100%100% 69.5M 69.5M=0s - -=0s - -2016-12-15 14:15:24 (69.5 MB/s) - ‘www.packer.io/docs/post-processors/docker-import.html’ saved [23311/23311] - -2016-12-15 14:15:24 (69.5 MB/s) - ‘www.packer.io/docs/post-processors/docker-import.html’ saved [23311/23311] - ---2016-12-15 14:15:24-- https://www.packer.io/docs/post-processors/docker-push.html -Reusing existing connection to www.packer.io:443. ---2016-12-15 14:15:24-- https://www.packer.io/docs/post-processors/docker-push.html -Reusing existing connection to www.packer.io:443. -HTTP request sent, awaiting response... HTTP request sent, awaiting response... 200 OK -200 OK -Length: 24958Length: 24958 (24K) (24K) [text/html] - [text/html] -Saving to: ‘www.packer.io/docs/post-processors/docker-push.html’ -Saving to: ‘www.packer.io/docs/post-processors/docker-push.html’ - - 0K ........ - 0K .......... ....... .......... ........ .... . 100%100% 1.32M 1.32M=0.02s - -=0.02s - -2016-12-15 14:15:24 (1.32 MB/s) - ‘www.packer.io/docs/post-processors/docker-push.html’ saved [24958/24958] - -2016-12-15 14:15:24 (1.32 MB/s) - ‘www.packer.io/docs/post-processors/docker-push.html’ saved [24958/24958] - ---2016-12-15 14:15:24-- https://www.packer.io/docs/post-processors/docker-save.html ---2016-12-15 14:15:24-- https://www.packer.io/docs/post-processors/docker-save.html -Reusing existing connection to www.packer.io:443. -Reusing existing connection to www.packer.io:443. -HTTP request sent, awaiting response... HTTP request sent, awaiting response... 200 OK -200 OK -Length: 22841Length: 22841 (22K) [text/html] - (22K) [text/html] -Saving to: ‘www.packer.io/docs/post-processors/docker-save.html’ -Saving to: ‘www.packer.io/docs/post-processors/docker-save.html’ - - 0K ........ - 0K .......... .. ............... .. ..... .. 100% 100% 3.77M 3.77M=0.006s - -=0.006s - -2016-12-15 14:15:25 (3.77 MB/s) - ‘www.packer.io/docs/post-processors/docker-save.html’ saved [22841/22841] - -2016-12-15 14:15:25 (3.77 MB/s) - ‘www.packer.io/docs/post-processors/docker-save.html’ saved [22841/22841] - ---2016-12-15 14:15:25-- https://www.packer.io/docs/post-processors/docker-tag.html ---2016-12-15 14:15:25-- https://www.packer.io/docs/post-processors/docker-tag.html -Reusing existing connection to www.packer.io:443. -Reusing existing connection to www.packer.io:443. -HTTP request sent, awaiting response... HTTP request sent, awaiting response... 200 OK -Length: 23572 (23K) [text/html] -200 OK -Length: 23572 (23K) [text/html] -Saving to: ‘www.packer.io/docs/post-processors/docker-tag.html’ -Saving to: ‘www.packer.io/docs/post-processors/docker-tag.html’ - - 0K ........ - 0K .......... ....... .......... ... ..... ... 100% 12.2M 100% 12.2M=0.002s - -=0.002s - -2016-12-15 14:15:25 (12.2 MB/s) - ‘www.packer.io/docs/post-processors/docker-tag.html’ saved [23572/23572] - -2016-12-15 14:15:25 (12.2 MB/s) - ‘www.packer.io/docs/post-processors/docker-tag.html’ saved [23572/23572] - ---2016-12-15 14:15:25-- https://www.packer.io/docs/post-processors/googlecompute-export.html ---2016-12-15 14:15:25-- https://www.packer.io/docs/post-processors/googlecompute-export.html -Reusing existing connection to www.packer.io:443. -Reusing existing connection to www.packer.io:443. -HTTP request sent, awaiting response... HTTP request sent, awaiting response... 200 OK -Length: 200 OK -Length: 24369 (24K) [text/html] -24369 (24K) [text/html] -Saving to: ‘www.packer.io/docs/post-processors/googlecompute-export.html’ -Saving to: ‘www.packer.io/docs/post-processors/googlecompute-export.html’ - - 0K ...... - 0K ............ ....... ........... .... ...... 100%100% 4.46M=0.005s 4.46M=0.005s - - - -2016-12-15 14:15:25 (4.46 MB/s) - ‘www.packer.io/docs/post-processors/googlecompute-export.html’ saved [24369/24369] - -2016-12-15 14:15:25 (4.46 MB/s) - ‘www.packer.io/docs/post-processors/googlecompute-export.html’ saved [24369/24369] - ---2016-12-15 14:15:25-- https://www.packer.io/docs/post-processors/shell-local.html -Reusing existing connection to www.packer.io:443. ---2016-12-15 14:15:25-- https://www.packer.io/docs/post-processors/shell-local.html -Reusing existing connection to www.packer.io:443. -HTTP request sent, awaiting response... HTTP request sent, awaiting response... 200 OK -200 OK -Length: 30636 (30K)Length: 30636 (30K) [text/html] - [text/html] -Saving to: ‘www.packer.io/docs/post-processors/shell-local.html’ -Saving to: ‘www.packer.io/docs/post-processors/shell-local.html’ - - 0K ... - 0K ............... ....... .......... ........ ......... ...... 100%100% 66.6M=0s - - 66.6M=0s - -2016-12-15 14:15:26 (66.6 MB/s) - ‘www.packer.io/docs/post-processors/shell-local.html’ saved [30636/30636] - -2016-12-15 14:15:26 (66.6 MB/s) - ‘www.packer.io/docs/post-processors/shell-local.html’ saved [30636/30636] - ---2016-12-15 14:15:26-- https://www.packer.io/docs/post-processors/manifest.html -Reusing existing connection to www.packer.io:443. ---2016-12-15 14:15:26-- https://www.packer.io/docs/post-processors/manifest.html -Reusing existing connection to www.packer.io:443. -HTTP request sent, awaiting response... HTTP request sent, awaiting response... 200 OK -200 OK -Length: 23576 (23K) [text/html] -Length: 23576 (23K) [text/html] -Saving to: ‘www.packer.io/docs/post-processors/manifest.html’ -Saving to: ‘www.packer.io/docs/post-processors/manifest.html’ - - 0K ...... - 0K ............ ..... ................. . ..... 100% 2.49M100% 2.49M=0.009s - -=0.009s - -2016-12-15 14:15:26 (2.49 MB/s) - ‘www.packer.io/docs/post-processors/manifest.html’ saved [23576/23576] - -2016-12-15 14:15:26 (2.49 MB/s) - ‘www.packer.io/docs/post-processors/manifest.html’ saved [23576/23576] - ---2016-12-15 14:15:26-- https://www.packer.io/docs/post-processors/vagrant.html ---2016-12-15 14:15:26-- https://www.packer.io/docs/post-processors/vagrant.html -Reusing existing connection to www.packer.io:443. -Reusing existing connection to www.packer.io:443. -HTTP request sent, awaiting response... HTTP request sent, awaiting response... 200 OK -200 OK -Length: 26794 (26K) [text/html] -Length: 26794 (26K) [text/html] -Saving to: ‘www.packer.io/docs/post-processors/vagrant.html’ -Saving to: ‘www.packer.io/docs/post-processors/vagrant.html’ - - 0K ........ - 0K ............ .... ........... ........ ...... ... 100% 54.7M100% 54.7M=0s - -=0s - -2016-12-15 14:15:27 (54.7 MB/s) - ‘www.packer.io/docs/post-processors/vagrant.html’ saved [26794/26794] - -2016-12-15 14:15:27 (54.7 MB/s) - ‘www.packer.io/docs/post-processors/vagrant.html’ saved [26794/26794] - ---2016-12-15 14:15:27-- https://www.packer.io/docs/post-processors/vagrant-cloud.html -Reusing existing connection to www.packer.io:443. ---2016-12-15 14:15:27-- https://www.packer.io/docs/post-processors/vagrant-cloud.html -Reusing existing connection to www.packer.io:443. -HTTP request sent, awaiting response... HTTP request sent, awaiting response... 200 OK -200 OK -Length: 27089 (26K) [text/html] -Length: 27089 (26K) [text/html] -Saving to: ‘www.packer.io/docs/post-processors/vagrant-cloud.html’ -Saving to: ‘www.packer.io/docs/post-processors/vagrant-cloud.html’ - - 0K ........ - 0K .......... ....... .......... ........ ...... ... 100%100% 29.6M 29.6M=0.001s - -=0.001s - -2016-12-15 14:15:27 (29.6 MB/s) - ‘www.packer.io/docs/post-processors/vagrant-cloud.html’ saved [27089/27089] - -2016-12-15 14:15:27 (29.6 MB/s) - ‘www.packer.io/docs/post-processors/vagrant-cloud.html’ saved [27089/27089] - ---2016-12-15 14:15:27-- https://www.packer.io/docs/post-processors/vsphere.html ---2016-12-15 14:15:27-- https://www.packer.io/docs/post-processors/vsphere.html -Reusing existing connection to www.packer.io:443. -Reusing existing connection to www.packer.io:443. -HTTP request sent, awaiting response... HTTP request sent, awaiting response... 200 OK -200 OK -Length: 24559 (24K) [text/html] -Length: 24559 (24K) [text/html] -Saving to: ‘www.packer.io/docs/post-processors/vsphere.html’ -Saving to: ‘www.packer.io/docs/post-processors/vsphere.html’ - - 0K ..... - 0K ............. ....... .......... ........ ... 100% 45.3M100% 45.3M=0.001s - -=0.001s - -2016-12-15 14:15:28 (45.3 MB/s) - ‘www.packer.io/docs/post-processors/vsphere.html’ saved [24559/24559] - -2016-12-15 14:15:28 (45.3 MB/s) - ‘www.packer.io/docs/post-processors/vsphere.html’ saved [24559/24559] - ---2016-12-15 14:15:28-- https://www.packer.io/docs/other/core-configuration.html ---2016-12-15 14:15:28-- https://www.packer.io/docs/other/core-configuration.html -Reusing existing connection to www.packer.io:443. -HTTP request sent, awaiting response... Reusing existing connection to www.packer.io:443. -HTTP request sent, awaiting response... 200 OK -200 OK -Length: 23837 (23K) [text/html] -Length: 23837 (23K) [text/html] -Saving to: ‘www.packer.io/docs/other/core-configuration.html’ -Saving to: ‘www.packer.io/docs/other/core-configuration.html’ - - 0K ........ - 0K ............ ..... .......... ... ..... ... 100% 100% 1.21M 1.21M=0.02s - -=0.02s - -2016-12-15 14:15:28 (1.21 MB/s) - ‘www.packer.io/docs/other/core-configuration.html’ saved [23837/23837] - -2016-12-15 14:15:28 (1.21 MB/s) - ‘www.packer.io/docs/other/core-configuration.html’ saved [23837/23837] - ---2016-12-15 14:15:28-- https://www.packer.io/docs/other/debugging.html -Reusing existing connection to www.packer.io:443. ---2016-12-15 14:15:28-- https://www.packer.io/docs/other/debugging.html -Reusing existing connection to www.packer.io:443. -HTTP request sent, awaiting response... HTTP request sent, awaiting response... 200 OK -200 OK -Length: 26773 (26K) [text/html] -Length: 26773 (26K) [text/html] -Saving to: ‘www.packer.io/docs/other/debugging.html’ -Saving to: ‘www.packer.io/docs/other/debugging.html’ - - 0K ....... - 0K ........... ....... .......... ........ ...... ... 100%100% 99.7M=0s - - 99.7M=0s - -2016-12-15 14:15:29 (99.7 MB/s) - ‘www.packer.io/docs/other/debugging.html’ saved [26773/26773] - -2016-12-15 14:15:29 (99.7 MB/s) - ‘www.packer.io/docs/other/debugging.html’ saved [26773/26773] - ---2016-12-15 14:15:29-- https://www.packer.io/docs/other/environmental-variables.html -Reusing existing connection to www.packer.io:443. ---2016-12-15 14:15:29-- https://www.packer.io/docs/other/environmental-variables.html -Reusing existing connection to www.packer.io:443. -HTTP request sent, awaiting response... HTTP request sent, awaiting response... 200 OK -200 OK -Length: 24075 (24K) [text/html] -Length: 24075 (24K) [text/html] -Saving to: ‘www.packer.io/docs/other/environmental-variables.html’ -Saving to: ‘www.packer.io/docs/other/environmental-variables.html’ - - 0K ........ - 0K .......... ....... .......... ........ ... 100% 100% 2.79M 2.79M=0.008s - -=0.008s - -2016-12-15 14:15:29 (2.79 MB/s) - ‘www.packer.io/docs/other/environmental-variables.html’ saved [24075/24075] - -2016-12-15 14:15:29 (2.79 MB/s) - ‘www.packer.io/docs/other/environmental-variables.html’ saved [24075/24075] - ---2016-12-15 14:15:29-- https://www.packer.io/docs/extend/plugins.html -Reusing existing connection to www.packer.io:443. ---2016-12-15 14:15:29-- https://www.packer.io/docs/extend/plugins.html -Reusing existing connection to www.packer.io:443. -HTTP request sent, awaiting response... HTTP request sent, awaiting response... 200 OK -200 OK -Length: 25311 (25K) [text/html] -Length: 25311 (25K) [text/html] -Saving to: ‘www.packer.io/docs/extend/plugins.html’ -Saving to: ‘www.packer.io/docs/extend/plugins.html’ - - 0K ........ - 0K .......... ....... .......... ........ .... . 100% 100% 2.04M 2.04M=0.01s - -=0.01s - -2016-12-15 14:15:29 (2.04 MB/s) - ‘www.packer.io/docs/extend/plugins.html’ saved [25311/25311] - -2016-12-15 14:15:29 (2.04 MB/s) - ‘www.packer.io/docs/extend/plugins.html’ saved [25311/25311] - ---2016-12-15 14:15:29-- https://www.packer.io/docs/extend/developing-plugins.html ---2016-12-15 14:15:29-- https://www.packer.io/docs/extend/developing-plugins.html -Reusing existing connection to www.packer.io:443. -Reusing existing connection to www.packer.io:443. -HTTP request sent, awaiting response... HTTP request sent, awaiting response... 200 OK -200 OK -Length: 29277 (29K) [text/html] -Length: 29277 (29K) [text/html] -Saving to: ‘www.packer.io/docs/extend/developing-plugins.html’ -Saving to: ‘www.packer.io/docs/extend/developing-plugins.html’ - - 0K ...... - 0K ............ ....... .......... ........ ............. 100% 41.5M=0.001s - -100% 41.5M=0.001s - -2016-12-15 14:15:30 (41.5 MB/s) - ‘www.packer.io/docs/extend/developing-plugins.html’ saved [29277/29277] - -2016-12-15 14:15:30 (41.5 MB/s) - ‘www.packer.io/docs/extend/developing-plugins.html’ saved [29277/29277] - ---2016-12-15 14:15:30-- https://www.packer.io/docs/extend/builder.html -Reusing existing connection to www.packer.io:443. ---2016-12-15 14:15:30-- https://www.packer.io/docs/extend/builder.html -Reusing existing connection to www.packer.io:443. -HTTP request sent, awaiting response... HTTP request sent, awaiting response... 200 OK -Length: 30643 (30K) [text/html] -200 OK -Length: 30643 (30K) [text/html] -Saving to: ‘www.packer.io/docs/extend/builder.html’ -Saving to: ‘www.packer.io/docs/extend/builder.html’ - - 0K ....... - 0K .......... ........ .......... ....... .......... 100%...... 100% 2.29M=0.01s - - 2.29M=0.01s - -2016-12-15 14:15:30 (2.29 MB/s) - ‘www.packer.io/docs/extend/builder.html’ saved [30643/30643] - -2016-12-15 14:15:30 (2.29 MB/s) - ‘www.packer.io/docs/extend/builder.html’ saved [30643/30643] - ---2016-12-15 14:15:30-- https://www.packer.io/docs/extend/post-processor.html -Reusing existing connection to www.packer.io:443. ---2016-12-15 14:15:30-- https://www.packer.io/docs/extend/post-processor.html -Reusing existing connection to www.packer.io:443. -HTTP request sent, awaiting response... HTTP request sent, awaiting response... 200 OK -200 OK -Length: 26381 (26K) [text/html] -Length: 26381 (26K) [text/html] -Saving to: ‘www.packer.io/docs/extend/post-processor.html’ -Saving to: ‘www.packer.io/docs/extend/post-processor.html’ - - 0K ..... - 0K ............. ....... .......... ........ ..... .. 100%100% 94.6M=0s 94.6M=0s - - - -2016-12-15 14:15:31 (94.6 MB/s) - ‘www.packer.io/docs/extend/post-processor.html’ saved [26381/26381] - -2016-12-15 14:15:31 (94.6 MB/s) - ‘www.packer.io/docs/extend/post-processor.html’ saved [26381/26381] - ---2016-12-15 14:15:31-- https://www.packer.io/docs/extend/provisioner.html -Reusing existing connection to www.packer.io:443. ---2016-12-15 14:15:31-- https://www.packer.io/docs/extend/provisioner.html -Reusing existing connection to www.packer.io:443. -HTTP request sent, awaiting response... HTTP request sent, awaiting response... 200 OK -Length: 26462200 OK -Length: 26462 (26K) [text/html] - (26K) [text/html] -Saving to: ‘www.packer.io/docs/extend/provisioner.html’ -Saving to: ‘www.packer.io/docs/extend/provisioner.html’ - - 0K ........ - 0K .......... ....... .......... ........ ..... .. 100%100% 100M=0s - - 100M=0s - -2016-12-15 14:15:31 (100 MB/s) - ‘www.packer.io/docs/extend/provisioner.html’ saved [26462/26462] - -2016-12-15 14:15:31 (100 MB/s) - ‘www.packer.io/docs/extend/provisioner.html’ saved [26462/26462] - ---2016-12-15 14:15:31-- https://www.packer.io/assets/images/icons/icon_darwin-c019f8c4.png -Reusing existing connection to www.packer.io:443. ---2016-12-15 14:15:31-- https://www.packer.io/assets/images/icons/icon_darwin-c019f8c4.png -Reusing existing connection to www.packer.io:443. -HTTP request sent, awaiting response... HTTP request sent, awaiting response... 200 OK -200 OK -Length: 1850 (1.8K) [image/png] -Length: 1850 (1.8K) [image/png] -Saving to: ‘www.packer.io/assets/images/icons/icon_darwin-c019f8c4.png’ -Saving to: ‘www.packer.io/assets/images/icons/icon_darwin-c019f8c4.png’ - - 0K . - 0K . 100% 100% 118M=0s - - 118M=0s - -2016-12-15 14:15:31 (118 MB/s) - ‘www.packer.io/assets/images/icons/icon_darwin-c019f8c4.png’ saved [1850/1850] - -2016-12-15 14:15:31 (118 MB/s) - ‘www.packer.io/assets/images/icons/icon_darwin-c019f8c4.png’ saved [1850/1850] - ---2016-12-15 14:15:31-- https://www.packer.io/assets/images/icons/icon_freebsd-36cde04f.png -Reusing existing connection to www.packer.io:443. ---2016-12-15 14:15:31-- https://www.packer.io/assets/images/icons/icon_freebsd-36cde04f.png -Reusing existing connection to www.packer.io:443. -HTTP request sent, awaiting response... HTTP request sent, awaiting response... 200 OK -Length: 200 OK -Length: 5852 (5.7K) [image/png] -5852 (5.7K) [image/png] -Saving to: ‘www.packer.io/assets/images/icons/icon_freebsd-36cde04f.png’ -Saving to: ‘www.packer.io/assets/images/icons/icon_freebsd-36cde04f.png’ - - 0K - 0K .......... 100% 100% 558M=0s - - 558M=0s - -2016-12-15 14:15:31 (558 MB/s) - ‘www.packer.io/assets/images/icons/icon_freebsd-36cde04f.png’ saved [5852/5852] - -2016-12-15 14:15:31 (558 MB/s) - ‘www.packer.io/assets/images/icons/icon_freebsd-36cde04f.png’ saved [5852/5852] - ---2016-12-15 14:15:31-- https://www.packer.io/assets/images/icons/icon_linux-3568fb8e.png -Reusing existing connection to www.packer.io:443. ---2016-12-15 14:15:31-- https://www.packer.io/assets/images/icons/icon_linux-3568fb8e.png -Reusing existing connection to www.packer.io:443. -HTTP request sent, awaiting response... HTTP request sent, awaiting response... 200 OK -Length: 200 OK -Length: 4229 (4.1K) [image/png] -4229 (4.1K) [image/png] -Saving to: ‘www.packer.io/assets/images/icons/icon_linux-3568fb8e.png’ -Saving to: ‘www.packer.io/assets/images/icons/icon_linux-3568fb8e.png’ - - 0K .. - 0K ..... . 100%100% 517K 517K=0.008s - -=0.008s - -2016-12-15 14:15:31 (517 KB/s) - ‘www.packer.io/assets/images/icons/icon_linux-3568fb8e.png’ saved [4229/4229] - -2016-12-15 14:15:31 (517 KB/s) - ‘www.packer.io/assets/images/icons/icon_linux-3568fb8e.png’ saved [4229/4229] - ---2016-12-15 14:15:31-- https://www.packer.io/assets/images/icons/icon_openbsd-a48a02d5.png -Reusing existing connection to www.packer.io:443. ---2016-12-15 14:15:31-- https://www.packer.io/assets/images/icons/icon_openbsd-a48a02d5.png -Reusing existing connection to www.packer.io:443. -HTTP request sent, awaiting response... HTTP request sent, awaiting response... 200 OK -200 OK -Length: 10634 (10K) [image/png] -Length: 10634 (10K) [image/png] -Saving to: ‘www.packer.io/assets/images/icons/icon_openbsd-a48a02d5.png’ -Saving to: ‘www.packer.io/assets/images/icons/icon_openbsd-a48a02d5.png’ - - 0K - 0K .................... 100%100% 1.96M 1.96M=0.005s - -=0.005s - -2016-12-15 14:15:31 (1.96 MB/s) - ‘www.packer.io/assets/images/icons/icon_openbsd-a48a02d5.png’ saved [10634/10634] - -2016-12-15 14:15:31 (1.96 MB/s) - ‘www.packer.io/assets/images/icons/icon_openbsd-a48a02d5.png’ saved [10634/10634] - ---2016-12-15 14:15:31-- https://www.packer.io/assets/images/icons/icon_windows-9aefff0f.png -Reusing existing connection to www.packer.io:443. ---2016-12-15 14:15:31-- https://www.packer.io/assets/images/icons/icon_windows-9aefff0f.png -Reusing existing connection to www.packer.io:443. -HTTP request sent, awaiting response... HTTP request sent, awaiting response... 200 OK -Length: 200 OK -Length: 3292 (3.2K) [image/png] -3292 (3.2K) [image/png] -Saving to: ‘www.packer.io/assets/images/icons/icon_windows-9aefff0f.png’ -Saving to: ‘www.packer.io/assets/images/icons/icon_windows-9aefff0f.png’ - - 0K .. - 0K ... . 100% 3.59M 100% 3.59M=0.001s - -=0.001s - -2016-12-15 14:15:31 (3.59 MB/s) - ‘www.packer.io/assets/images/icons/icon_windows-9aefff0f.png’ saved [3292/3292] - -2016-12-15 14:15:31 (3.59 MB/s) - ‘www.packer.io/assets/images/icons/icon_windows-9aefff0f.png’ saved [3292/3292] - ---2016-12-15 14:15:31-- https://www.packer.io/assets/images/fastly_logo-00afb3d4.png -Reusing existing connection to www.packer.io:443. ---2016-12-15 14:15:31-- https://www.packer.io/assets/images/fastly_logo-00afb3d4.png -Reusing existing connection to www.packer.io:443. -HTTP request sent, awaiting response... HTTP request sent, awaiting response... 200 OK -200 OK -Length: 3995 (3.9K) [image/png] -Length: 3995 (3.9K) [image/png] -Saving to: ‘www.packer.io/assets/images/fastly_logo-00afb3d4.png’ -Saving to: ‘www.packer.io/assets/images/fastly_logo-00afb3d4.png’ - - 0K .. - 0K .... 100% 100% 47.6M=0s - - 47.6M=0s - -2016-12-15 14:15:31 (47.6 MB/s) - ‘www.packer.io/assets/images/fastly_logo-00afb3d4.png’ saved [3995/3995] - -2016-12-15 14:15:31 (47.6 MB/s) - ‘www.packer.io/assets/images/fastly_logo-00afb3d4.png’ saved [3995/3995] - ---2016-12-15 14:15:31-- https://www.packer.io/assets/images/docs/atlas-workflow-f583af75.png ---2016-12-15 14:15:31-- https://www.packer.io/assets/images/docs/atlas-workflow-f583af75.png -Reusing existing connection to www.packer.io:443. -Reusing existing connection to www.packer.io:443. -HTTP request sent, awaiting response... HTTP request sent, awaiting response... 200 OK -200 OK -Length: 87148Length: 87148 (85K) [image/png] - (85K) [image/png] -Saving to: ‘www.packer.io/assets/images/docs/atlas-workflow-f583af75.png’ -Saving to: ‘www.packer.io/assets/images/docs/atlas-workflow-f583af75.png’ - - 0K .. - 0K .................. .. .................. ... ............... ... .................. ........ .......... 58% 1.93M 0s - 50K ........ 58% 1.93M 0s - 50K .......... ........ .......... ........ .................. ..... . ..... 100%100% 4.20M 4.20M=0.03s - -=0.03s - -2016-12-15 14:15:31 (2.48 MB/s) - ‘www.packer.io/assets/images/docs/atlas-workflow-f583af75.png’ saved [87148/87148] - -2016-12-15 14:15:31 (2.48 MB/s) - ‘www.packer.io/assets/images/docs/atlas-workflow-f583af75.png’ saved [87148/87148] - ---2016-12-15 14:15:31-- https://www.packer.io/?utm_source=packer&utm_campaign=HashicorpEcosystem ---2016-12-15 14:15:31-- https://www.packer.io/?utm_source=packer&utm_campaign=HashicorpEcosystem -Reusing existing connection to www.packer.io:443. -Reusing existing connection to www.packer.io:443. -HTTP request sent, awaiting response... HTTP request sent, awaiting response... 200 OK -Length: 17742200 OK -Length: 17742 (17K) [text/html] - (17K) [text/html] -Saving to: ‘www.packer.io/index.html?utm_source=packer&utm_campaign=HashicorpEcosystem’ - - 0K .......... ....... 100% 56.2M=0s - -Saving to: ‘www.packer.io/index.html?utm_source=packer&utm_campaign=HashicorpEcosystem’ - - 0K .......... ....... 100% 56.2M=0s - -2016-12-15 14:15:32 (56.2 MB/s) - ‘www.packer.io/index.html?utm_source=packer&utm_campaign=HashicorpEcosystem’ saved [17742/17742] - -2016-12-15 14:15:32 (56.2 MB/s) - ‘www.packer.io/index.html?utm_source=packer&utm_campaign=HashicorpEcosystem’ saved [17742/17742] - ---2016-12-15 14:15:32-- https://www.packer.io/assets/images/packer-signed-urls-9acd0852.png -Reusing existing connection to www.packer.io:443. -HTTP request sent, awaiting response... --2016-12-15 14:15:32-- https://www.packer.io/assets/images/packer-signed-urls-9acd0852.png -Reusing existing connection to www.packer.io:443. -HTTP request sent, awaiting response... 200 OK -Length: 200 OK -Length: 22578 (22K) [image/png] -22578 (22K) [image/png] -Saving to: ‘www.packer.io/assets/images/packer-signed-urls-9acd0852.png’ -Saving to: ‘www.packer.io/assets/images/packer-signed-urls-9acd0852.png’ - - 0K ........ - 0K ........... .... ............ .. ..... .. 100% 100% 19.6M 19.6M=0.001s - -=0.001s - -2016-12-15 14:15:32 (19.6 MB/s) - ‘www.packer.io/assets/images/packer-signed-urls-9acd0852.png’ saved [22578/22578] - -2016-12-15 14:15:32 (19.6 MB/s) - ‘www.packer.io/assets/images/packer-signed-urls-9acd0852.png’ saved [22578/22578] - ---2016-12-15 14:15:32-- https://www.packer.io/docs/machine-readable/index.html -Reusing existing connection to www.packer.io:443. ---2016-12-15 14:15:32-- https://www.packer.io/docs/machine-readable/index.html -Reusing existing connection to www.packer.io:443. -HTTP request sent, awaiting response... HTTP request sent, awaiting response... 200 OK -Length: 200 OK -Length: 17374 (17K) [text/html] -17374 (17K) [text/html] -Saving to: ‘www.packer.io/docs/machine-readable/index.html’ -Saving to: ‘www.packer.io/docs/machine-readable/index.html’ - - 0K ...... - 0K ............ ....... ...... . 100% 101M100% 101M=0s - -=0s - -2016-12-15 14:15:32 (101 MB/s) - ‘www.packer.io/docs/machine-readable/index.html’ saved [17374/17374] - -2016-12-15 14:15:32 (101 MB/s) - ‘www.packer.io/docs/machine-readable/index.html’ saved [17374/17374] - ---2016-12-15 14:15:32-- https://www.packer.io/docs/builders/amazon-ebs.html ---2016-12-15 14:15:32-- https://www.packer.io/docs/builders/amazon-ebs.html -Reusing existing connection to www.packer.io:443. -Reusing existing connection to www.packer.io:443. -HTTP request sent, awaiting response... HTTP request sent, awaiting response... 200 OK -Length: 200 OK -Length: 45231 (44K) [text/html] -45231 (44K) [text/html] -Saving to: ‘www.packer.io/docs/builders/amazon-ebs.html’ -Saving to: ‘www.packer.io/docs/builders/amazon-ebs.html’ - - 0K ........ - 0K .......... ....... .......... ........ .......... ........ .................. .... . .... 100% 4.26M 100% 4.26M=0.01s - -=0.01s - -2016-12-15 14:15:32 (4.26 MB/s) - ‘www.packer.io/docs/builders/amazon-ebs.html’ saved [45231/45231] - -2016-12-15 14:15:32 (4.26 MB/s) - ‘www.packer.io/docs/builders/amazon-ebs.html’ saved [45231/45231] - ---2016-12-15 14:15:32-- https://www.packer.io/docs/builders/amazon-instance.html ---2016-12-15 14:15:32-- https://www.packer.io/docs/builders/amazon-instance.html -Reusing existing connection to www.packer.io:443. -Reusing existing connection to www.packer.io:443. -HTTP request sent, awaiting response... HTTP request sent, awaiting response... 200 OK -200 OK -Length: 46272 (45K) [text/html] -Length: 46272 (45K) [text/html] -Saving to: ‘www.packer.io/docs/builders/amazon-instance.html’ -Saving to: ‘www.packer.io/docs/builders/amazon-instance.html’ - - 0K ..... - 0K ............. ....... .......... ........ .......... ........ .................. ..... 100% 4.16M=0.01s - -. ..... 100% 4.16M=0.01s - -2016-12-15 14:15:33 (4.16 MB/s) - ‘www.packer.io/docs/builders/amazon-instance.html’ saved [46272/46272] - -2016-12-15 14:15:33 (4.16 MB/s) - ‘www.packer.io/docs/builders/amazon-instance.html’ saved [46272/46272] - ---2016-12-15 14:15:33-- https://www.packer.io/docs/builders/amazon-chroot.html -Reusing existing connection to www.packer.io:443. ---2016-12-15 14:15:33-- https://www.packer.io/docs/builders/amazon-chroot.html -Reusing existing connection to www.packer.io:443. -HTTP request sent, awaiting response... HTTP request sent, awaiting response... 200 OK -200 OK -Length: 41652 (41K) [text/html] -Length: 41652 (41K) [text/html] -Saving to: ‘www.packer.io/docs/builders/amazon-chroot.html’ -Saving to: ‘www.packer.io/docs/builders/amazon-chroot.html’ - - 0K ........ - 0K .......... ....... .......... ........ .......... ........ .................. . 100% 4.18M100% 4.18M=0.01s - -=0.01s - -2016-12-15 14:15:33 (4.18 MB/s) - ‘www.packer.io/docs/builders/amazon-chroot.html’ saved [41652/41652] - -2016-12-15 14:15:33 (4.18 MB/s) - ‘www.packer.io/docs/builders/amazon-chroot.html’ saved [41652/41652] - ---2016-12-15 14:15:33-- https://www.packer.io/docs/builders/amazon-ebs-volume.html -Reusing existing connection to www.packer.io:443. ---2016-12-15 14:15:33-- https://www.packer.io/docs/builders/amazon-ebs-volume.html -Reusing existing connection to www.packer.io:443. -HTTP request sent, awaiting response... HTTP request sent, awaiting response... 200 OK -200 OK -Length: 42755 (42K) [text/html] -Length: 42755 (42K) [text/html] -Saving to: ‘www.packer.io/docs/builders/amazon-ebs-volume.html’ -Saving to: ‘www.packer.io/docs/builders/amazon-ebs-volume.html’ - - 0K .. - 0K ................ ... .............. ........ .......... ........ .................. . 100% 40.2M. . 100% 40.2M=0.001s - -=0.001s - -2016-12-15 14:15:34 (40.2 MB/s) - ‘www.packer.io/docs/builders/amazon-ebs-volume.html’ saved [42755/42755] - -2016-12-15 14:15:34 (40.2 MB/s) - ‘www.packer.io/docs/builders/amazon-ebs-volume.html’ saved [42755/42755] - ---2016-12-15 14:15:34-- https://www.packer.io/docs/builders/azure-setup.html -Reusing existing connection to www.packer.io:443. ---2016-12-15 14:15:34-- https://www.packer.io/docs/builders/azure-setup.html -Reusing existing connection to www.packer.io:443. -HTTP request sent, awaiting response... HTTP request sent, awaiting response... 200 OK -Length: 31228200 OK -Length: 31228 (30K) [text/html] - (30K) [text/html] -Saving to: ‘www.packer.io/docs/builders/azure-setup.html’ -Saving to: ‘www.packer.io/docs/builders/azure-setup.html’ - - 0K .. - 0K ................. ... ............. ........ .............. ... 100% 32.0M100% 32.0M=0.001s - -=0.001s - -2016-12-15 14:15:35 (32.0 MB/s) - ‘www.packer.io/docs/builders/azure-setup.html’ saved [31228/31228] - -2016-12-15 14:15:35 (32.0 MB/s) - ‘www.packer.io/docs/builders/azure-setup.html’ saved [31228/31228] - ---2016-12-15 14:15:35-- https://www.packer.io/docs/builders/parallels-iso.html -Reusing existing connection to www.packer.io:443. ---2016-12-15 14:15:35-- https://www.packer.io/docs/builders/parallels-iso.html -Reusing existing connection to www.packer.io:443. -HTTP request sent, awaiting response... HTTP request sent, awaiting response... 200 OK -200 OK -Length: 43388 (42K) [text/html] -Length: 43388 (42K) [text/html] -Saving to: ‘www.packer.io/docs/builders/parallels-iso.html’ -Saving to: ‘www.packer.io/docs/builders/parallels-iso.html’ - - 0K ........ - 0K .......... ..... ............ ........ .......... ........ .................. .. . .. 100% 100% 1.11M 1.11M=0.04s - -=0.04s - -2016-12-15 14:15:35 (1.11 MB/s) - ‘www.packer.io/docs/builders/parallels-iso.html’ saved [43388/43388] - -2016-12-15 14:15:35 (1.11 MB/s) - ‘www.packer.io/docs/builders/parallels-iso.html’ saved [43388/43388] - ---2016-12-15 14:15:35-- https://www.packer.io/docs/builders/parallels-pvm.html -Reusing existing connection to www.packer.io:443. ---2016-12-15 14:15:35-- https://www.packer.io/docs/builders/parallels-pvm.html -Reusing existing connection to www.packer.io:443. -HTTP request sent, awaiting response... HTTP request sent, awaiting response... 200 OK -200 OK -Length: 37604Length: 37604 (37K) (37K) [text/html] - [text/html] -Saving to: ‘www.packer.io/docs/builders/parallels-pvm.html’ -Saving to: ‘www.packer.io/docs/builders/parallels-pvm.html’ - - 0K .. - 0K ................ ... ................... ... ................ .. ........... 100% 100% 1.81M 1.81M=0.02s - -=0.02s - -2016-12-15 14:15:35 (1.81 MB/s) - ‘www.packer.io/docs/builders/parallels-pvm.html’ saved [37604/37604] - -2016-12-15 14:15:35 (1.81 MB/s) - ‘www.packer.io/docs/builders/parallels-pvm.html’ saved [37604/37604] - ---2016-12-15 14:15:35-- https://www.packer.io/docs/builders/virtualbox-iso.html ---2016-12-15 14:15:35-- https://www.packer.io/docs/builders/virtualbox-iso.html -Reusing existing connection to www.packer.io:443. -Reusing existing connection to www.packer.io:443. -HTTP request sent, awaiting response... HTTP request sent, awaiting response... 200 OK -200 OK -Length: 48850 (48K) [text/html] -Length: 48850 (48K) [text/html] -Saving to: ‘www.packer.io/docs/builders/virtualbox-iso.html’ -Saving to: ‘www.packer.io/docs/builders/virtualbox-iso.html’ - - 0K ....... - 0K ........... ....... .......... ........ .......... ........ .................. ........ ....... 100% 23.7M100% 23.7M=0.002s - -=0.002s - -2016-12-15 14:15:36 (23.7 MB/s) - ‘www.packer.io/docs/builders/virtualbox-iso.html’ saved [48850/48850] - -2016-12-15 14:15:36 (23.7 MB/s) - ‘www.packer.io/docs/builders/virtualbox-iso.html’ saved [48850/48850] - ---2016-12-15 14:15:36-- https://www.packer.io/docs/builders/virtualbox-ovf.html ---2016-12-15 14:15:36-- https://www.packer.io/docs/builders/virtualbox-ovf.html -Reusing existing connection to www.packer.io:443. -Reusing existing connection to www.packer.io:443. -HTTP request sent, awaiting response... HTTP request sent, awaiting response... 200 OK -200 OK -Length: 45595 (45K) [text/html] -Length: 45595 (45K) [text/html] -Saving to: ‘www.packer.io/docs/builders/virtualbox-ovf.html’ -Saving to: ‘www.packer.io/docs/builders/virtualbox-ovf.html’ - - 0K ........ - 0K .......... ....... .......... ........ .......... ........ .................. ... ..... . 100%100% 1.39M 1.39M=0.03s - -=0.03s - -2016-12-15 14:15:36 (1.39 MB/s) - ‘www.packer.io/docs/builders/virtualbox-ovf.html’ saved [45595/45595] - -2016-12-15 14:15:36 (1.39 MB/s) - ‘www.packer.io/docs/builders/virtualbox-ovf.html’ saved [45595/45595] - ---2016-12-15 14:15:36-- https://www.packer.io/docs/builders/vmware-iso.html -Reusing existing connection to www.packer.io:443. ---2016-12-15 14:15:36-- https://www.packer.io/docs/builders/vmware-iso.html -Reusing existing connection to www.packer.io:443. -HTTP request sent, awaiting response... HTTP request sent, awaiting response... 200 OK -200 OK -Length: 52652 (51K) [text/html] -Length: 52652 (51K) [text/html] -Saving to: ‘www.packer.io/docs/builders/vmware-iso.html’ -Saving to: ‘www.packer.io/docs/builders/vmware-iso.html’ - - 0K .. - 0K .................. .. .................. ... ............... ... .................. ...... ............ 97% 1.25M 0s - 50K ... 97% 1.25M 0s - 50K . . 100% 28.4K100% 28.4K=0.04s - -=0.04s - -2016-12-15 14:15:39 (1.29 MB/s) - ‘www.packer.io/docs/builders/vmware-iso.html’ saved [52652/52652] - -2016-12-15 14:15:39 (1.29 MB/s) - ‘www.packer.io/docs/builders/vmware-iso.html’ saved [52652/52652] - ---2016-12-15 14:15:39-- https://www.packer.io/docs/builders/vmware-vmx.html ---2016-12-15 14:15:39-- https://www.packer.io/docs/builders/vmware-vmx.html -Reusing existing connection to www.packer.io:443. -Reusing existing connection to www.packer.io:443. -HTTP request sent, awaiting response... HTTP request sent, awaiting response... 200 OK -Length: 200 OK -Length: 37848 (37K) [text/html] -37848 (37K) [text/html] -Saving to: ‘www.packer.io/docs/builders/vmware-vmx.html’ -Saving to: ‘www.packer.io/docs/builders/vmware-vmx.html’ - - 0K ....... - 0K ........... ....... .......... ........ .......... ........ ...... ..... 100% 100% 2.94M=0.01s 2.94M=0.01s - - - -2016-12-15 14:15:39 (2.94 MB/s) - ‘www.packer.io/docs/builders/vmware-vmx.html’ saved [37848/37848] - -2016-12-15 14:15:39 (2.94 MB/s) - ‘www.packer.io/docs/builders/vmware-vmx.html’ saved [37848/37848] - ---2016-12-15 14:15:39-- https://www.packer.io/docs/index.html -Reusing existing connection to www.packer.io:443. ---2016-12-15 14:15:39-- https://www.packer.io/docs/index.html -Reusing existing connection to www.packer.io:443. -HTTP request sent, awaiting response... HTTP request sent, awaiting response... 200 OK -200 OK -Length: 22068 (22K) [text/html] -Length: 22068 (22K) [text/html] -Saving to: ‘www.packer.io/docs/index.html’ -Saving to: ‘www.packer.io/docs/index.html’ - - 0K ........ - 0K .......... ....... .......... . ..... . 100% 14.3M100% 14.3M=0.001s - -=0.001s - -2016-12-15 14:15:39 (14.3 MB/s) - ‘www.packer.io/docs/index.html’ saved [22068/22068] - -2016-12-15 14:15:39 (14.3 MB/s) - ‘www.packer.io/docs/index.html’ saved [22068/22068] - ---2016-12-15 14:15:39-- https://www.packer.io/docs/machine-readable/general.html -Reusing existing connection to www.packer.io:443. ---2016-12-15 14:15:39-- https://www.packer.io/docs/machine-readable/general.html -Reusing existing connection to www.packer.io:443. -HTTP request sent, awaiting response... HTTP request sent, awaiting response... 200 OK -200 OK -Length: 17161 (17K) [text/html] -Length: 17161 (17K) [text/html] -Saving to: ‘www.packer.io/docs/machine-readable/general.html’ -Saving to: ‘www.packer.io/docs/machine-readable/general.html’ - - 0K - 0K .... .............. ....... ...... . 100% 136M=0s - - 100% 136M=0s - -2016-12-15 14:15:40 (136 MB/s) - ‘www.packer.io/docs/machine-readable/general.html’ saved [17161/17161] - -2016-12-15 14:15:40 (136 MB/s) - ‘www.packer.io/docs/machine-readable/general.html’ saved [17161/17161] - ---2016-12-15 14:15:40-- https://www.packer.io/docs/machine-readable/command-build.html -Reusing existing connection to www.packer.io:443. ---2016-12-15 14:15:40-- https://www.packer.io/docs/machine-readable/command-build.html -Reusing existing connection to www.packer.io:443. -HTTP request sent, awaiting response... HTTP request sent, awaiting response... 200 OK -200 OK -Length: 20314 (20K) [text/html] -Length: 20314 (20K) [text/html] -Saving to: ‘www.packer.io/docs/machine-readable/command-build.html’ -Saving to: ‘www.packer.io/docs/machine-readable/command-build.html’ - - 0K ... - 0K ............... ....... ......... .... 100%100% 6.00M 6.00M=0.003s - -=0.003s - -2016-12-15 14:15:40 (6.00 MB/s) - ‘www.packer.io/docs/machine-readable/command-build.html’ saved [20314/20314] - -2016-12-15 14:15:40 (6.00 MB/s) - ‘www.packer.io/docs/machine-readable/command-build.html’ saved [20314/20314] - ---2016-12-15 14:15:40-- https://www.packer.io/docs/machine-readable/command-inspect.html -Reusing existing connection to www.packer.io:443. ---2016-12-15 14:15:40-- https://www.packer.io/docs/machine-readable/command-inspect.html -Reusing existing connection to www.packer.io:443. -HTTP request sent, awaiting response... HTTP request sent, awaiting response... 200 OK -200 OK -Length: 17681 (17K) [text/html] -Length: 17681 (17K) [text/html] -Saving to: ‘www.packer.io/docs/machine-readable/command-inspect.html’ -Saving to: ‘www.packer.io/docs/machine-readable/command-inspect.html’ - - 0K ...... - 0K ............ ....... ....... .. 100% 100% 128M=0s 128M=0s - - - -2016-12-15 14:15:41 (128 MB/s) - ‘www.packer.io/docs/machine-readable/command-inspect.html’ saved [17681/17681] - -2016-12-15 14:15:41 (128 MB/s) - ‘www.packer.io/docs/machine-readable/command-inspect.html’ saved [17681/17681] - ---2016-12-15 14:15:41-- https://www.packer.io/docs/machine-readable/command-version.html -Reusing existing connection to www.packer.io:443. ---2016-12-15 14:15:41-- https://www.packer.io/docs/machine-readable/command-version.html -Reusing existing connection to www.packer.io:443. -HTTP request sent, awaiting response... HTTP request sent, awaiting response... 200 OK -200 OK -Length: 17473 (17K) [text/html] -Length: 17473 (17K) [text/html] -Saving to: ‘www.packer.io/docs/machine-readable/command-version.html’ -Saving to: ‘www.packer.io/docs/machine-readable/command-version.html’ - - 0K ........ - 0K .......... ....... ....... .. 100%100% 8.48M=0.002s 8.48M=0.002s - - - -2016-12-15 14:15:41 (8.48 MB/s) - ‘www.packer.io/docs/machine-readable/command-version.html’ saved [17473/17473] - -2016-12-15 14:15:41 (8.48 MB/s) - ‘www.packer.io/docs/machine-readable/command-version.html’ saved [17473/17473] - -FINISHED --2016-12-15 14:15:41-- -Total wall clock time: 53s -Downloaded: 135 files, 3.8M in 1.3s (2.85 MB/s) -FINISHED --2016-12-15 14:15:41-- -Total wall clock time: 53s -Downloaded: 135 files, 3.8M in 1.3s (2.85 MB/s)