summaryrefslogtreecommitdiff
path: root/doc/examples
diff options
context:
space:
mode:
authorBen Howard <ben.howard@canonical.com>2012-03-07 16:05:17 -0700
committerBen Howard <ben.howard@canonical.com>2012-03-07 16:05:17 -0700
commitacf41ea8717646dedc9ddebed85d360996edfddc (patch)
tree2d347a8ca7b456af5f408c5319f8267cb72bdc19 /doc/examples
parent54b593a166c4ac4043615dddc94a941ebc712300 (diff)
downloadvyos-cloud-init-acf41ea8717646dedc9ddebed85d360996edfddc.tar.gz
vyos-cloud-init-acf41ea8717646dedc9ddebed85d360996edfddc.zip
Added ability of cloud-init to manage apt http pipelining
- cloud-config option of "apt-pipelining" - Address LP: 948461
Diffstat (limited to 'doc/examples')
-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..ce188756 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 (confiugure Acquire::http::Pipeline-Depth)
+# Default: disables HTTP pipelining. Certain web servers, such
+# as S3 do not pipeline properly.
+# Valid options:
+# True/Default: Enables OS default
+# False: Disables pipelining all-together
+# 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