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 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78
|
# 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)
#location=/home/woody-chroot
#groups=sbuild
#aliases=oldstable
[sid]
type=block-device
description=Debian sid (unstable)
#location=/srv/chroot/sid
priority=3
groups=sbuild,root
root-groups=root,sbuild
aliases=unstable,default
device=/dev/hda_vg/sid_chroot
mount-options=-o atime,sync,user_xattr
run-setup-scripts=true
run-exec-scripts=true
[sid-local]
description=Debian sid (unstable)
#location=/srv/chroot/sid
priority=3
groups=sbuild,root
root-groups=root,sbuild
location=/srv/chroot/sid
[sid-snap]
type=lvm-snapshot
description=Debian sid snapshot
#location=/srv/chroot/sid
priority=3
groups=sbuild,root
root-groups=root,sbuild
device=/dev/hda_vg/sid_chroot
mount-options=-o atime,sync,user_xattr
lvm-snapshot-options=--size 2G
run-setup-scripts=true
run-exec-scripts=true
#[etch]
#description=Debian etch (testing)
#location=/srv/chroot/etch
#groups=sbuild-security
#aliases=testing
[sarge]
description=Debian sarge (stable)
location=/srv/chroot/sarge
priority=2
groups=sbuild
root-groups=root,sbuild
#root-groups=root
aliases=stable
run-setup-scripts=true
run-exec-scripts=true
[experimental]
description=Debian experimental
location=/srv/chroot/experimental
priority=3
groups=sbuild,root
root-groups=root,sbuild
run-setup-scripts=true
run-exec-scripts=true
|