~ubuntu-branches/ubuntu/precise/cloud-init/precise-updates

« back to all changes in this revision

Viewing changes to doc/examples/cloud-config.txt

  • Committer: Package Import Robot
  • Author(s): Scott Moser
  • Date: 2012-03-09 16:37:01 UTC
  • mfrom: (174.1.9 precise)
  • Revision ID: package-import@ubuntu.com-20120309163701-w1ntss7kxz8jsy1p
Tags: 0.6.3~bzr539-0ubuntu1
* New upstream snapshot.
  * add ability to configure Acquire::http::Pipeline-Depth via
    cloud-config setting 'apt_pipelining' (LP: #942061)
  * if cloud-config settings removed default certificats
    (remove-defaults), then seed package ca-certificates to not
    install new ones on upgrade.
  * run-parts now uses internal implementation rather than
    separate command.
  * add MaaS datasource (LP: #942061)
* debian/cloud-init.postinst: address population of apt_pipeline 
  setting on installation.
* debian/cloud-init.postinst: support configuring cloud-init
  maas datasource via preseed values cloud-init/maas-metadata-url and
  cloud-init/maas-credentials. (LP: #942061)
* debian/cloud-init.postinst: support for (LP: #924375)

Show diffs side-by-side

added added

removed removed

Lines of Context:
45
45
# apt_proxy (configure Acquire::HTTP::Proxy)
46
46
apt_proxy: http://my.apt.proxy:3128
47
47
 
 
48
# apt_pipelining (configure Acquire::http::Pipeline-Depth)
 
49
# Default: disables HTTP pipelining. Certain web servers, such
 
50
# as S3 do not pipeline properly (LP: #948461).
 
51
# Valid options:
 
52
#   False/default: Disables pipelining for APT
 
53
#   None/Unchanged: Use OS default
 
54
#   Number: Set pipelining to some number (not recommended)
 
55
apt_pipelining: False
 
56
 
48
57
# Preserve existing /etc/apt/sources.list
49
58
# Default: overwrite sources_list with mirror.  If this is true
50
59
# then apt_mirror above will have no effect