Prevent (harmless) duplicate entries appearing in /etc/apt/preferences

This commit is contained in:
Chris Lamb 2008-08-14 01:38:24 +01:00 committed by Daniel Baumann
parent 6a4d709d13
commit 445de4d80a
1 changed files with 5 additions and 0 deletions

View File

@ -114,6 +114,11 @@ case "${1}" in
if Find_files config/chroot_local-packages/*.deb
then
if [ ! -f config/chroot_apt/preferences ] && [ "${1}" = "install-binary" ]
then
rm -f chroot/etc/apt/preferences
fi
echo >> chroot/etc/apt/preferences
echo "Package: *" >> chroot/etc/apt/preferences
echo "Pin: release o=chroot_local-packages" >> chroot/etc/apt/preferences