blob: 6fec371f6aeb914d3ed0b0cf333826f14169e7e5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
# schroot chroot definitions.
# See schroot.conf(5) for complete documentation of the file format.
#
# Please take note that you should not add untrusted users to
# root-groups, because they will essentially have full root access
# to your system. They will only have root access inside the chroot,
# but that's enough to cause malicious damage.
#
# The following lines are examples. Uncomment and alter them to
# customise schroot for your needs.
#
#
#[woody]
#description=Debian woody (oldstable)
#directory=/home/woody-chroot
#groups=sbuild
#aliases=oldstable
[sid]
type=directory
description=Debian sid (unstable)
directory=/srv/chroot/sid
priority=3
groups=sbuild,root
root-groups=root,sbuild
aliases=unstable,default
[sid-local]
description=Debian sid (unstable)
#directory=/srv/chroot/sid
priority=3
groups=sbuild,root
root-groups=root,sbuild
directory=/srv/chroot/sid
#[etch]
#description=Debian etch (testing)
#directory=/srv/chroot/etch
#groups=sbuild-security
#aliases=testing
[sarge]
description=Debian sarge (stable)
directory=/srv/chroot/sarge
priority=2
groups=sbuild
root-groups=root,sbuild
#root-groups=root
aliases=stable
[experimental]
description=Debian experimental
directory=/srv/chroot/experimental
priority=3
groups=sbuild,root
root-groups=root,sbuild
|