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

Signed-off-by: Chris Lamb <chris@chris-lamb.co.uk>
This commit is contained in:
Chris Lamb 2008-08-14 01:38:24 +01:00 committed by Daniel Baumann
parent 8004d56ce3
commit bdd2f385c4
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