mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2025-01-17 23:34:07 +00:00
16 lines
377 B
Text
16 lines
377 B
Text
|
# 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
|