~evarlast/cloud-init/cloud-init

« 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-11-12 17:01:54 UTC
  • Revision ID: package-import@ubuntu.com-20121112170154-37170939vlg68nst
Tags: 0.6.3-0ubuntu1.2
* debian/patches/lp-978127-maas-oauth-fix-bad-clock.patch: fix usage of
  oauth in maas data source if local system has a bad clock (LP: #978127)
* debian/cloud-init.preinst: fix bug where user data scripts re-ran on
  upgrade from 10.04 versions (LP: #1049146)
* debian/patches/lp-974509-detect-dns-server-redirection.patch: detect dns
  server redirection and disable searching dns for a mirror named
  'ubuntu-mirror' (LP: #974509)
* debian/patches/lp-1018554-shutdown-message-to-console.patch: write a
  message to the console on system shutdown. (LP: #1018554)
* debian/patches/lp-1066115-landscape-install-fix-perms.patch: install
  landscape package if needed which will ensure proper permissions on config
  file (LP: #1066115).
* debian/patches/lp-1070345-landscape-restart-after-change.patch: restart
  landscape after modifying config (LP: #1070345)
* debian/patches/lp-1073077-zsh-workaround-for-locale_warn.patch: avoid
  warning when user's shell is zsh (LP: #1073077)
* debian/patches/rework-mirror-selection.patch: improve mirror selection by:
  * allowing region/availability-zone to be part of mirror (LP: #1037727)
  * making mirror selection arch aware (LP: #1028501)
  * allow specification of a security mirror (LP: #1006963)

Show diffs side-by-side

added added

removed removed

Lines of Context:
28
28
# then use the mirror provided by the DataSource found.
29
29
# In EC2, that means using <region>.ec2.archive.ubuntu.com
30
30
31
 
# if no mirror is provided by the DataSource, then search
32
 
# for dns names '<distro>-mirror' in each of
 
31
# if no mirror is provided by the DataSource, and 'apt_mirror_search_dns' is
 
32
# true, then search for dns names '<distro>-mirror' in each of
33
33
# - fqdn of this host per cloud metadata
34
34
# - localdomain
35
35
# - no domain (which would search domains listed in /etc/resolv.conf)
 
36
# If there is a dns entry for <distro>-mirror, then it is assumed that there
 
37
# is a distro mirror at http://<distro>-mirror.<domain>/<distro>
 
38
#
36
39
# That gives the cloud provider the opportunity to set mirrors of a distro
37
40
# up and expose them only by creating dns entries.
38
41
#
42
45
 - http://local-mirror.mydomain
43
46
 - http://archive.ubuntu.com
44
47
 
 
48
apt_mirror_search_dns: False
 
49
 
45
50
# apt_proxy (configure Acquire::HTTP::Proxy)
46
51
apt_proxy: http://my.apt.proxy:3128
47
52