~cloud-init-dev/cloud-init/trunk

« back to all changes in this revision

Viewing changes to templates/sources.list.debian.tmpl

  • Committer: Scott Moser
  • Date: 2016-08-10 15:06:15 UTC
  • Revision ID: smoser@ubuntu.com-20160810150615-ma2fv107w3suy1ma
README: Mention move of revision control to git.

cloud-init development has moved its revision control to git.
It is available at 
  https://code.launchpad.net/cloud-init

Clone with 
  git clone https://git.launchpad.net/cloud-init
or
  git clone git+ssh://git.launchpad.net/cloud-init

For more information see
  https://git.launchpad.net/cloud-init/tree/HACKING.rst

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
## template:jinja
2
 
## Note, this file is written by cloud-init on first boot of an instance
3
 
## modifications made here will not survive a re-bundle.
4
 
## if you wish to make changes you can:
5
 
## a.) add 'apt_preserve_sources_list: true' to /etc/cloud/cloud.cfg
6
 
##     or do the same in user-data
7
 
## b.) add sources in /etc/apt/sources.list.d
8
 
## c.) make changes to template file /etc/cloud/templates/sources.list.debian.tmpl
9
 
###
10
 
 
11
 
# See http://www.debian.org/releases/stable/i386/release-notes/ch-upgrading.html
12
 
# for how to upgrade to newer versions of the distribution.
13
 
deb {{mirror}} {{codename}} main contrib non-free
14
 
deb-src {{mirror}} {{codename}} main contrib non-free
15
 
 
16
 
## Major bug fix updates produced after the final release of the
17
 
## distribution.
18
 
deb {{security}} {{codename}}/updates main contrib non-free
19
 
deb-src {{security}} {{codename}}/updates main contrib non-free
20
 
deb {{mirror}} {{codename}}-updates main contrib non-free
21
 
deb-src {{mirror}} {{codename}}-updates main contrib non-free
22
 
 
23
 
## Uncomment the following two lines to add software from the 'backports'
24
 
## repository.
25
 
## 
26
 
## N.B. software from this repository may not have been tested as
27
 
## extensively as that contained in the main release, although it includes
28
 
## newer versions of some applications which may provide useful features.
29
 
{#
30
 
deb http://backports.debian.org/debian-backports {{codename}}-backports main contrib non-free
31
 
deb-src http://backports.debian.org/debian-backports {{codename}}-backports main contrib non-free
32
 
-#}