start_new_disc: include local Release file for debian-installer. Closes: #968671
tools/start_new_disc: Apply patch by JH Chatenet to include local Release file for debian-installer. Closes: #968671 Signed-off-by: Holger Levsen <holger@layer-acht.org>
This commit is contained in:
parent
21d6617f0f
commit
0985d5342b
|
@ -7,6 +7,8 @@ debian-cd (3.1.33) UNRELEASED; urgency=medium
|
||||||
[ Holger Levsen ]
|
[ Holger Levsen ]
|
||||||
* tools/which_deb: Apply patch by JH Chatenet to fix problems with local xz
|
* tools/which_deb: Apply patch by JH Chatenet to fix problems with local xz
|
||||||
compressed Packages files. Closes: #968668
|
compressed Packages files. Closes: #968668
|
||||||
|
* tools/start_new_disc: Apply patch by JH Chatenet to include local Release
|
||||||
|
file for debian-installer. Closes: #968671
|
||||||
|
|
||||||
-- Wolfgang Schweer <wschweer@arcor.de> Tue, 02 Feb 2021 13:36:04 +0100
|
-- Wolfgang Schweer <wschweer@arcor.de> Tue, 02 Feb 2021 13:36:04 +0100
|
||||||
|
|
||||||
|
|
|
@ -451,6 +451,12 @@ do
|
||||||
sed -i "s/^Archive:.*$/Archive: stable/" dists/$CODENAME/main/debian-installer/binary-$ARCH/Release
|
sed -i "s/^Archive:.*$/Archive: stable/" dists/$CODENAME/main/debian-installer/binary-$ARCH/Release
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
if [ -n "$LOCAL" -a -e "${LOCALDEBS:-$MIRROR}/dists/$DI_CODENAME/local/debian-installer/binary-$ARCH/Release" ] ; then
|
||||||
|
mkdir -p dists/$CODENAME/local/debian-installer/binary-$ARCH
|
||||||
|
cp "${LOCALDEBS:-$MIRROR}/dists/$DI_CODENAME/local/debian-installer/binary-$ARCH/Release" \
|
||||||
|
dists/$CODENAME/local/debian-installer/binary-$ARCH/
|
||||||
|
fi
|
||||||
done
|
done
|
||||||
|
|
||||||
# Copying individual release files for backports
|
# Copying individual release files for backports
|
||||||
|
|
Loading…
Reference in New Issue