blob: fb87b48229b2da0ffca91aec5890df5cd2cf4c71 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
# Default settings for chroot setup and exec scripts.
# See schroot-script-config(5) for further details.
# Filesystems to mount inside the chroot.
FSTAB="/etc/schroot/mount-arch32"
# Files to copy from the host system into the chroot.
COPYFILES="/etc/schroot/copyfiles-arch32"
# Is sbuild installed?
if [ -x /usr/bin/sbuild ]; then
SBUILD="true"
else
SBUILD="false"
fi
|