chiark / gitweb /
Merge branch 'master' into deploy
[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         uri[nsecurity-mirror] = %debmirror/debian-security/
23         uri[nsecurity-upstream] = http://security.debian.org/debian-security/
24         release[security-*] = %RELEASE/updates
25         release[nsecurity-*] = %RELEASE-security
26         release[updates] = %RELEASE-updates
27         releases[base] = stable testing unstable stretch buster bullseye sid
28         releases[updates] = stable testing stretch buster bullseye
29         releases[security-*] = stable testing stretch buster
30         releases[nsecurity-*] = bullseye
31         releases[backports] = *-backports
32         components = main non-free contrib
33         components[security-*] = main
34         components[backports] = main
35
36 ###--------------------------------------------------------------------------
37 ### Basic Ubuntu stuff.
38
39 distribution ubuntu
40         banner = Ubuntu Linux.
41         uri[base] = %ubuntumirror/ubuntu/
42         uri[updates] = %ubuntumirror/ubuntu/
43         uri[partner] = http://archive.canonical.com/ubuntu/
44         uri[security] = http://security.ubuntu.com/ubuntu/
45         release = %RELEASE
46         release[updates] = %RELEASE-updates
47         release[security] = %RELEASE-security
48         components = main restricted universe multiverse
49         components[partner] = partner
50
51 distribution medibuntu
52         banner = Ubuntu multimedia packages.
53         uri = http://packages.medibuntu.org/
54         components = free non-free
55
56 ###----- That's all, folks --------------------------------------------------