diff options
author | Andreas Loibl <andreas@andreas-loibl.de> | 2011-09-24 20:25:19 +0200 |
---|---|---|
committer | Andreas Loibl <andreas@andreas-loibl.de> | 2011-09-24 20:25:19 +0200 |
commit | 8fbf27aa417408a00462e8709b6a32d47f15fc26 (patch) | |
tree | 737a1313ce9e362951a64fd3161d4f2b97211a26 /config | |
parent | d7a87ce78149d37afdbc62467b8a980668b02106 (diff) | |
download | kanotix-8fbf27aa417408a00462e8709b6a32d47f15fc26.zip kanotix-8fbf27aa417408a00462e8709b6a32d47f15fc26.tar.gz |
Fix: sources.list didn't get combined when chroot_local-packages/*.deb were present
Diffstat (limited to 'config')
-rwxr-xr-x | config/chroot_local-hooks/sources.list-format | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/config/chroot_local-hooks/sources.list-format b/config/chroot_local-hooks/sources.list-format index 7fcf14e..115cb71 100755 --- a/config/chroot_local-hooks/sources.list-format +++ b/config/chroot_local-hooks/sources.list-format @@ -1,6 +1,17 @@ #!/bin/bash # update sources.list +# Remove local package repository +rm -f /etc/apt/sources.list.d/local-packages.list +rm -rf /root/local-packages + +# Remove local packages key if it exists +if apt-key list | grep -q "live-build-local-key@invalid" +then + apt-key del "live-build-local-key@invalid" +fi + +# Combine sources.list.d/*.list into a single sources.list file if [ -d /etc/apt/sources.list.d ]; then for repo in /etc/apt/sources.list.d/* do |