diff options
author | Joonas Kylmälä <joonas.kylmala@iki.fi> | 2017-08-20 13:53:20 +0300 |
---|---|---|
committer | Scott Moser <smoser@brickies.net> | 2017-08-22 09:49:25 -0400 |
commit | 3395a331c014dd7b83e93a1e2b66bb55b1966d83 (patch) | |
tree | 800cc1b736571f6e3f47bf6f6119beac53f8ceed /templates/sources.list.debian.tmpl | |
parent | e74d7752f1761c3a8d3c19877de4707d00c49d08 (diff) | |
download | vyos-cloud-init-3395a331c014dd7b83e93a1e2b66bb55b1966d83.tar.gz vyos-cloud-init-3395a331c014dd7b83e93a1e2b66bb55b1966d83.zip |
Debian: Remove non-free repositories from apt sources template.
The Debian GNU/Linux distribution doesn't come offically with the
non-free repositories enabled. Therefore, we want to disable those in
the cloud-init template.
LP: #1700091
Diffstat (limited to 'templates/sources.list.debian.tmpl')
-rw-r--r-- | templates/sources.list.debian.tmpl | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/templates/sources.list.debian.tmpl b/templates/sources.list.debian.tmpl index d64ace4d..e7ef9ed1 100644 --- a/templates/sources.list.debian.tmpl +++ b/templates/sources.list.debian.tmpl @@ -10,15 +10,15 @@ # See http://www.debian.org/releases/stable/i386/release-notes/ch-upgrading.html # for how to upgrade to newer versions of the distribution. -deb {{mirror}} {{codename}} main contrib non-free -deb-src {{mirror}} {{codename}} main contrib non-free +deb {{mirror}} {{codename}} main +deb-src {{mirror}} {{codename}} main ## Major bug fix updates produced after the final release of the ## distribution. -deb {{security}} {{codename}}/updates main contrib non-free -deb-src {{security}} {{codename}}/updates main contrib non-free -deb {{mirror}} {{codename}}-updates main contrib non-free -deb-src {{mirror}} {{codename}}-updates main contrib non-free +deb {{security}} {{codename}}/updates main +deb-src {{security}} {{codename}}/updates main +deb {{mirror}} {{codename}}-updates main +deb-src {{mirror}} {{codename}}-updates main ## Uncomment the following two lines to add software from the 'backports' ## repository. @@ -26,5 +26,5 @@ deb-src {{mirror}} {{codename}}-updates main contrib non-free ## N.B. software from this repository may not have been tested as ## extensively as that contained in the main release, although it includes ## newer versions of some applications which may provide useful features. -deb {{mirror}} {{codename}}-backports main contrib non-free -deb-src {{mirror}} {{codename}}-backports main contrib non-free +deb {{mirror}} {{codename}}-backports main +deb-src {{mirror}} {{codename}}-backports main |