Commit 28e58a6a by David Noyes Committed by David Noyes

Test dpkg for multiarch support in lxc-debian template

parent 5b454329
......@@ -381,6 +381,12 @@ EOF
if [ "${arch}" != "${hostarch}" ]; then
mkdir -p ${rootfs}/etc/dpkg/dpkg.cfg.d
echo "foreign-architecture ${hostarch}" > ${rootfs}/etc/dpkg/dpkg.cfg.d/lxc-multiarch
# Test if dpkg supports multiarch
if chroot $rootfs dpkg -l dpkg 2>&1 | grep -q "unknown option 'foreign-architecture'"; then
echo "dpkg does not support multiarch: removing multiarch configuration file"
rm ${rootfs}/etc/dpkg/dpkg.cfg.d/lxc-multiarch
fi
fi
# Write a new sources.list containing both native and multiarch entries
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment