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

« back to all changes in this revision

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

  • Committer: Bazaar Package Importer
  • Author(s): Scott Moser
  • Date: 2010-02-04 03:00:05 UTC
  • Revision ID: james.westby@ubuntu.com-20100204030005-r2y1568be8rbslxo
Tags: upstream-0.5.3
ImportĀ upstreamĀ versionĀ 0.5.3

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Add apt configuration files
 
2
#  Add an apt.conf.d/ file with the relevant content
 
3
#
 
4
#  See apt.conf man page for more information.
 
5
 
6
#  Defaults:
 
7
#   + filename: 00-boot-conf
 
8
#
 
9
apt_conf:
 
10
 
 
11
 # Creates an apt proxy configuration in /etc/apt/apt.conf.d/01-proxy
 
12
 - filename: "01-proxy"
 
13
   content: |
 
14
    Acquire::http::Proxy "http://proxy.example.org:3142/ubuntu";
 
15
 
 
16
 # Add the following line to /etc/apt/apt.conf.d/00-boot-conf
 
17
 #  (run debconf at a critical priority)
 
18
 - content: |
 
19
    DPkg::Pre-Install-Pkgs:: "/usr/sbin/dpkg-preconfigure --apt -p critical|| true";
 
20
 
 
21
# Provide debconf answers
 
22
#
 
23
# See debconf-set-selections man page.
 
24
#
 
25
# Default: none
 
26
 
27
debconf_selections: |     # Need to perserve newlines
 
28
        # Force debconf priority to critical.
 
29
        debconf debconf/priority select critical
 
30
 
 
31
        # Override default frontend to readline, but allow user to select.
 
32
        debconf debconf/frontend select readline
 
33
        debconf debconf/frontend seen false
 
34
 
 
35