diff options
author | Ben Howard <ben.howard@canonical.com> | 2012-03-08 16:22:16 -0700 |
---|---|---|
committer | Ben Howard <ben.howard@canonical.com> | 2012-03-08 16:22:16 -0700 |
commit | 162762d916c18ad83a6775cc1bd9a86cb78a5dd7 (patch) | |
tree | 24c704a703d49f5a77657276931b9ba59f755c08 /doc | |
parent | acf41ea8717646dedc9ddebed85d360996edfddc (diff) | |
download | vyos-cloud-init-162762d916c18ad83a6775cc1bd9a86cb78a5dd7.tar.gz vyos-cloud-init-162762d916c18ad83a6775cc1bd9a86cb78a5dd7.zip |
Simplified proposed patch
- Changed values to be more simplistic and intuitive
- Only allow pipelining values up to 5
- Changed to per_instance over per_always to remove need
for tracking the values
- Fixed Python style
Diffstat (limited to 'doc')
-rw-r--r-- | doc/examples/cloud-config.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/examples/cloud-config.txt b/doc/examples/cloud-config.txt index ce188756..542a49c7 100644 --- a/doc/examples/cloud-config.txt +++ b/doc/examples/cloud-config.txt @@ -45,12 +45,12 @@ apt_mirror_search: # apt_proxy (configure Acquire::HTTP::Proxy) apt_proxy: http://my.apt.proxy:3128 -# apt_pipelining (confiugure Acquire::http::Pipeline-Depth) +# apt_pipelining (configure 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 +# False/default: Disables pipelining for APT +# None/Unchanged: Use OS default # Number: Set pipelining to some number (not recommended) apt_pipelining: False |