summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorScott Moser <smoser@ubuntu.com>2012-03-09 09:54:44 -0500
committerScott Moser <smoser@ubuntu.com>2012-03-09 09:54:44 -0500
commit1e588f0b5135731bbe2a588e26a3780176902910 (patch)
tree67a67601d2b912c625210cfdc74a844eca750dde /doc
parente40c7c0a1ae8119e38a877154070e5fa63677a66 (diff)
parent91c1ef651077dbdbe7e8a85cb7b48926fbeb0aab (diff)
downloadvyos-cloud-init-1e588f0b5135731bbe2a588e26a3780176902910.tar.gz
vyos-cloud-init-1e588f0b5135731bbe2a588e26a3780176902910.zip
add option apt_pipelining to cloud-config to address s3 mirrors (LP: #948461)
Thanks to Ben Howard.
Diffstat (limited to 'doc')
-rw-r--r--doc/examples/cloud-config.txt9
1 files changed, 9 insertions, 0 deletions
diff --git a/doc/examples/cloud-config.txt b/doc/examples/cloud-config.txt
index 4f621274..171802cc 100644
--- a/doc/examples/cloud-config.txt
+++ b/doc/examples/cloud-config.txt
@@ -45,6 +45,15 @@ apt_mirror_search:
# apt_proxy (configure Acquire::HTTP::Proxy)
apt_proxy: http://my.apt.proxy:3128
+# apt_pipelining (configure Acquire::http::Pipeline-Depth)
+# Default: disables HTTP pipelining. Certain web servers, such
+# as S3 do not pipeline properly (LP: #948461).
+# Valid options:
+# False/default: Disables pipelining for APT
+# None/Unchanged: Use OS default
+# Number: Set pipelining to some number (not recommended)
+apt_pipelining: False
+
# Preserve existing /etc/apt/sources.list
# Default: overwrite sources_list with mirror. If this is true
# then apt_mirror above will have no effect