From 8e4083995db34908513eaff991b5e76a65053ae0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl=20Hertzog?= Date: Tue, 30 Jun 2015 12:05:22 +0200 Subject: [PATCH] Use the correct $dist-proposed-updates repository Up to now, --proposed-updates always enabled kali-proposed-updates when in fact it should have enabled the proposed-updates repository of the target distribution. --- auto/config | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/auto/config b/auto/config index 77e912d..ec8a8d7 100755 --- a/auto/config +++ b/auto/config @@ -98,9 +98,9 @@ cp -rT kali-config/common config if [ -n "$enable_pu" ]; then mkdir -p config/archives - echo "deb $kali_mirror kali-proposed-updates main contrib non-free" \ + echo "deb $kali_mirror $dist-proposed-updates main contrib non-free" \ > config/archives/kali-proposed-updates.list.chroot - echo "deb $public_kali_mirror kali-proposed-updates main contrib non-free" \ + echo "deb $public_kali_mirror $dist-proposed-updates main contrib non-free" \ > config/archives/kali-proposed-updates.list.binary fi