Reconfigure bootstrapped packages after preseeding.
live-build supports preseeding configuration, but the configuration has to be installed after bootstrapping since it needs the debconf tools to be applied. But packages that have already been installed and configured in the bootstrap step will then ignore those preseeded configs. After applying each preseed file, parse the package list and manually reconfigure the relevant package(s) so that the configuration will be applied.
This commit is contained in:
parent
da01193965
commit
277f0cec71
|
@ -59,6 +59,21 @@ then
|
|||
|
||||
# Removing local preseed file
|
||||
rm -f chroot/root/preseed
|
||||
|
||||
# After preseeding debconf, reconfigure packages that have already
|
||||
# been installed in the debootstrap phase.
|
||||
# Strip comments and empty lines and take first column (pkg name).
|
||||
sed -e 's/[[:space:]]*#.*//' -e '/^[[:space:]]*$/d' \
|
||||
-e 's/[[:space:]].*//g' "${PRESEED}" | \
|
||||
while read PKG
|
||||
do
|
||||
# Don't know the filename, but we want to query only dpkg
|
||||
Check_installed chroot "placeholder" "${PKG}"
|
||||
if [ ${INSTALL_STATUS} -eq 0 ]
|
||||
then
|
||||
Chroot chroot "dpkg-reconfigure ${PKG}"
|
||||
fi
|
||||
done
|
||||
fi
|
||||
done
|
||||
|
||||
|
|
Loading…
Reference in New Issue