From 3d0ab090b0a698caaa3846f5e78e8a7daf12f25d Mon Sep 17 00:00:00 2001
From: Seth Vargo
Date: Wed, 2 Aug 2017 14:12:01 -0400
Subject: [PATCH 1/2] Remove people from community section
This is going to be replaced with dynamic content from our CMS in the
future, but we agreed to remove it in the interim.
---
website/source/community.html.erb | 93 -------------------------------
1 file changed, 93 deletions(-)
diff --git a/website/source/community.html.erb b/website/source/community.html.erb
index 0dd8a7c0c..ca4200f9b 100644
--- a/website/source/community.html.erb
+++ b/website/source/community.html.erb
@@ -32,96 +32,3 @@ description: |-
Paid HashiCorp training courses
are also available in a city near you. Private training courses are also available.
-People
-
- The following people are some of the faces behind Packer. They each
- contribute to Packer in some core way. Over time, faces may appear and
- disappear from this list as contributors come and go. In addition to
- the faces below, Packer is a project by
- HashiCorp, so many HashiCorp
- employees actively contribute to Packer.
-
-
-
-
-
-
Mitchell Hashimoto (@mitchellh)
-
- Mitchell Hashimoto is the creator of Packer. He developed the
- core of Packer as well as the Amazon, VirtualBox, and VMware
- builders. In addition to Packer, Mitchell is the creator of
- Vagrant. He is self
- described as "automation obsessed."
-
-
-
-
-
-
-
-
- Jack Pearkes created and maintains the DigitalOcean builder
- for Packer. Outside of Packer, Jack is an avid open source
- contributor and software consultant.
-
-
-
-
-
-
-
-
-
-
-
Ross Smith II (@rasa)
-
- Ross Smith maintains our
- VMware builder on Windows, and provides other valuable assistance. Ross is an
- open source enthusiast, published author, and freelance consultant.
-
-
-
-
-
-
-
-
- Rickard von Essen maintains our Parallels Desktop builder. Rickard is an
- polyglot programmer and consults on Continuous Delivery.
-
-
-
-
-
-
-
-
Matt maintains Packer for HashiCorp. After
- picking up Chef for a job, he decided that continually provisioning the
- same machine was bound for trouble. Luckily Packer had just been created,
- and was the answer to his prayers. Now he works on it professionally, and
- couldn't be happier.
-
-
-
-
-
-
-
-
Megan maintains Packer for HashiCorp; in her past life she used Packer and Vagrant in her work as a cloud infrastructure developer.
-
-
-
-
-
-
From c0e32695ca65908cf5d160232d91eef5453c84f7 Mon Sep 17 00:00:00 2001
From: Seth Vargo
Date: Wed, 2 Aug 2017 14:25:13 -0400
Subject: [PATCH 2/2] Update deploy process
---
website/packer.json | 11 +-
website/redirects.txt | 55 +
website/scripts/deploy.sh | 83 +-
website/wgetlog | 2782 -------------------------------------
4 files changed, 138 insertions(+), 2793 deletions(-)
create mode 100644 website/redirects.txt
delete mode 100644 website/wgetlog
diff --git a/website/packer.json b/website/packer.json
index 72b288ed0..fd2618f17 100644
--- a/website/packer.json
+++ b/website/packer.json
@@ -10,15 +10,12 @@
"type": "docker",
"image": "hashicorp/middleman-hashicorp:0.3.28",
"discard": "true",
- "run_command": ["-d", "-i", "-t", "{{ .Image }}", "/bin/sh"]
+ "volumes": {
+ "{{ pwd }}": "/website"
+ }
}
],
"provisioners": [
- {
- "type": "file",
- "source": ".",
- "destination": "/website"
- },
{
"type": "shell",
"environment_vars": [
@@ -30,7 +27,7 @@
"inline": [
"bundle check || bundle install",
"bundle exec middleman build",
- "/bin/sh ./scripts/deploy.sh"
+ "/bin/bash ./scripts/deploy.sh"
]
}
]
diff --git a/website/redirects.txt b/website/redirects.txt
new file mode 100644
index 000000000..62475c71c
--- /dev/null
+++ b/website/redirects.txt
@@ -0,0 +1,55 @@
+#
+# REDIRECTS FILE
+#
+# This is a sample redirect file. Redirects allow individual projects to add
+# their own redirect rules in a declarative manner using Fastly edge
+# dictionaries.
+#
+# FORMAT
+#
+# Redirects are in the format. There must be at least one space between the
+# original path and the new path, and there must be exactly two entries per
+# line.
+#
+# /original-path /new-path
+#
+# GLOB MATCHING
+#
+# Because of the way lookup tables work, there is no support for glob matching.
+# Fastly does not provide a way to iterate through the lookup table, so it is
+# not possible to run through the table and find anything that matches. As such
+# URLs must match directly.
+#
+# More complex redirects are possible, but must be added directly to the
+# configuration. Please contact the release engineering team for assistance.
+#
+# DELETING
+#
+# Deleting items is not supported at this time. To delete an item, contact the
+# release engineering team and they will delete the dictionary item.
+#
+# MISC
+#
+# - Blank lines are ignored
+# - Comments are hash-style
+# - URLs are limited to 256 characters
+# - Items are case-sensitive (please use all lowercase)
+#
+
+/docs/installation.html /docs/install/index.html
+/docs/command-line/machine-readable.html /docs/commands/index.html
+/docs/command-line/introduction.html /docs/commands/index.html
+/docs/templates/introduction.html /docs/templates/index.html
+/docs/builders/azure-arm.html /docs/builders/azure.html
+/docs/templates/veewee-to-packer.html /guides/veewee-to-packer.html
+/docs/extend/developing-plugins.html /docs/extending/plugins.html
+/docs/extending/developing-plugins.html /docs/extending/plugins.html
+/docs/extend/builder.html /docs/extending/custom-builders.html
+/docs/getting-started/setup.html /docs/getting-started/install.html
+/docs/other/community.html /downloads-community.html
+/community /community.html
+/community/index.html /community.html
+/docs/other/environmental-variables.html /docs/other/environment-variables.html
+/docs/platforms.html /docs/builders/index.html
+/intro/platforms.html /docs/builders/index.html
+/docs/templates/configuration-templates.html /docs/templates/engine.html
diff --git a/website/scripts/deploy.sh b/website/scripts/deploy.sh
index 96856842a..c3592e155 100755
--- a/website/scripts/deploy.sh
+++ b/website/scripts/deploy.sh
@@ -1,9 +1,10 @@
-#!/bin/bash
+#!/usr/bin/env bash
set -e
PROJECT="packer"
PROJECT_URL="www.packer.io"
FASTLY_SERVICE_ID="7GrxRJP3PVBuqQbyxYQ0MV"
+FASTLY_DICTIONARY_ID="7CE9Ko06dSFrv8XqDgMZvo"
# Ensure the proper AWS environment variables are set
if [ -z "$AWS_ACCESS_KEY_ID" ]; then
@@ -93,7 +94,76 @@ if [ -z "$NO_UPLOAD" ]; then
modify "s3://hc-sites/$PROJECT/latest/"
fi
-# Perform a soft-purge of the surrogate key.
+# Add redirects if they exist
+if [ -z "$NO_REDIRECTS" ] || [ ! test -f "./redirects.txt" ]; then
+ echo "Adding redirects..."
+ fields=()
+ while read -r line; do
+ [[ "$line" =~ ^#.* ]] && continue
+ [[ -z "$line" ]] && continue
+
+ # Read fields
+ IFS=" " read -ra parts <<<"$line"
+ fields+=("${parts[@]}")
+ done < "./redirects.txt"
+
+ # Check we have pairs
+ if [ $((${#fields[@]} % 2)) -ne 0 ]; then
+ echo "Bad redirects (not an even number)!"
+ exit 1
+ fi
+
+ # Check we don't have more than 1000 entries (yes, it says 2000 below, but that
+ # is because we've split into multiple lines).
+ if [ "${#fields}" -gt 2000 ]; then
+ echo "More than 1000 entries!"
+ exit 1
+ fi
+
+ # Validations
+ for field in "${fields[@]}"; do
+ if [ "${#field}" -gt 256 ]; then
+ echo "'$field' is > 256 characters!"
+ exit 1
+ fi
+
+ if [ "${field:0:1}" != "/" ]; then
+ echo "'$field' does not start with /!"
+ exit 1
+ fi
+ done
+
+ # Build the payload for single-request updates.
+ jq_args=()
+ jq_query="."
+ for (( i=0; i<${#fields[@]}; i+=2 )); do
+ original="${fields[i]}"
+ redirect="${fields[i+1]}"
+ echo "Redirecting ${original} -> ${redirect}"
+ jq_args+=(--arg "key$((i/2))" "${original}")
+ jq_args+=(--arg "value$((i/2))" "${redirect}")
+ jq_query+="| .items |= (. + [{op: \"upsert\", item_key: \$key$((i/2)), item_value: \$value$((i/2))}])"
+ done
+
+ # Do not post empty items (the API gets sad)
+ if [ "${#jq_args[@]}" -ne 0 ]; then
+ json="$(jq "${jq_args[@]}" "${jq_query}" <<<'{"items": []}')"
+
+ # Post the JSON body
+ curl \
+ --fail \
+ --silent \
+ --output /dev/null \
+ --request "PATCH" \
+ --header "Fastly-Key: $FASTLY_API_KEY" \
+ --header "Content-type: application/json" \
+ --header "Accept: application/json" \
+ --data "$json"\
+ "https://api.fastly.com/service/$FASTLY_SERVICE_ID/dictionary/$FASTLY_DICTIONARY_ID/items"
+ fi
+fi
+
+# Perform a purge of the surrogate key.
if [ -z "$NO_PURGE" ]; then
echo "Purging Fastly cache..."
curl \
@@ -118,8 +188,13 @@ if [ -z "$NO_WARM" ]; then
echo "wget --recursive --delete-after https://$PROJECT_URL/"
echo ""
wget \
- --recursive \
--delete-after \
- --quiet \
+ --level inf \
+ --no-directories \
+ --no-host-directories \
+ --no-verbose \
+ --page-requisites \
+ --recursive \
+ --spider \
"https://$PROJECT_URL/"
fi
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)