chiark / gitweb /
More work in progress.
[distorted-chroot] / etc / aptsrc.conf
1 ### -*- mode: conf; mdw-conf-quote-normal: ?' -*-
2 ###
3 ### APT package sources for Debian and Ubuntu.
4
5 ###--------------------------------------------------------------------------
6 ### Common definitions.
7
8 default
9         debmirror = http://deb.debian.org
10         ubuntumirror = http://gb.archive.ubuntu.com
11
12 ###--------------------------------------------------------------------------
13 ### Basic Debian stuff.
14
15 distribution debian
16         banner = Debian GNU/Linux.
17         uri[base] = %debmirror/debian/
18         uri[updates] = %debmirror/debian/
19         uri[backports] = %debmirror/debian/
20         uri[security-mirror] = %debmirror/debian-security/
21         uri[security-upstream] = http://security.debian.org/debian-security/
22         release[security-*] = %RELEASE/updates
23         release[updates] = %RELEASE-updates
24         releases[base] = stable testing unstable stretch buster sid
25         releases[updates] = stable testing stretch buster
26         releases[security-*] = stable testing stretch buster
27         releases[backports] = *-backports
28         components = main non-free contrib
29         components[security-*] = main
30         components[backports] = main
31
32 ###--------------------------------------------------------------------------
33 ### Basic Ubuntu stuff.
34
35 distribution ubuntu
36         banner = Ubuntu Linux.
37         uri[base] = %ubuntumirror/ubuntu/
38         uri[updates] = %ubuntumirror/ubuntu/
39         uri[partner] = http://archive.canonical.com/ubuntu/
40         uri[security] = http://security.ubuntu.com/ubuntu/
41         release = %RELEASE
42         release[updates] = %RELEASE-updates
43         release[security] = %RELEASE-security
44         components = main restricted universe multiverse
45         components[partner] = partner
46
47 distribution medibuntu
48         banner = Ubuntu multimedia packages.
49         uri = http://packages.medibuntu.org/
50         components = free non-free
51
52 ###----- That's all, folks --------------------------------------------------