Also handling custom apt.conf in config/chroot_apt/apt.conf to allow further apt configuration (Closes: #511247).

This commit is contained in:
Daniel Baumann 2009-01-09 16:17:31 +01:00
parent b211776641
commit c83edb9134
1 changed files with 22 additions and 0 deletions

View File

@ -101,6 +101,17 @@ case "${1}" in
;;
esac
# Configuring apt config
if [ -f config/chroot_apt/apt.conf ]
then
if [ -f chroot/etc/apt/apt.conf ]
then
mv chroot/etc/apt/apt.conf chroot/etc/apt/apt.conf.orig
fi
cp config/chroot_apt/apt.conf chroot/etc/apt/apt.conf
fi
# Configuring apt preferences
if [ -f config/chroot_apt/preferences ]
then
@ -182,6 +193,17 @@ case "${1}" in
rm -f chroot/etc/apt/apt.conf.d/00secure
fi
# Configuring apt config
if [ -f config/chroot_apt/apt.conf ]
then
if [ -f chroot/etc/apt/apt.conf ]
then
mv chroot/etc/apt/apt.conf chroot/etc/apt/apt.conf.orig
fi
cp config/chroot_apt/apt.conf chroot/etc/apt/apt.conf
fi
# Deconfiguring apt preferences
if [ -f chroot/etc/apt/preferences.orig ]
then