mirror of
https://git.launchpad.net/livecd-rootfs
synced 2025-02-13 22:28:27 +00:00
Import patches-unapplied version 0.61 to ubuntu/intrepid
Imported using git-ubuntu import. Changelog parent: 8df24d08479466e3ba3684e08f207bf4cb3003d7 New changelog entries: * Use apt pinning to force use of the version of ssl-cert from the hardy release pocket, not the one from -updates, so we avoid pulling in the very large openssl-blacklist package that we don't need on live CDs
This commit is contained in:
parent
8df24d0847
commit
a754f6c1db
8
debian/changelog
vendored
8
debian/changelog
vendored
@ -1,3 +1,11 @@
|
||||
livecd-rootfs (0.61) intrepid; urgency=low
|
||||
|
||||
* Use apt pinning to force use of the version of ssl-cert from the hardy
|
||||
release pocket, not the one from -updates, so we avoid pulling in the
|
||||
very large openssl-blacklist package that we don't need on live CDs
|
||||
|
||||
-- Steve Langasek <steve.langasek@ubuntu.com> Fri, 20 Jun 2008 13:53:17 -0700
|
||||
|
||||
livecd-rootfs (0.60) intrepid; urgency=low
|
||||
|
||||
* Employ hideous hack to ensure that when we're building against
|
||||
|
15
livecd.sh
15
livecd.sh
@ -307,6 +307,18 @@ link_in_boot = $link_in_boot
|
||||
LIST="$(without_package "$x" "$LIST")"
|
||||
done
|
||||
|
||||
if [ "$STE" = "hardy" ]; then
|
||||
# <hack, hack, hack> use the version of ssl-cert from the release
|
||||
# pocket, because the version in -updates pulls in the large
|
||||
# openssl-blacklist package which we should never need on the
|
||||
# live CD
|
||||
cat << @@EOF > ${ROOT}etc/apt/preferences
|
||||
Package: ssl-cert
|
||||
Pin: version 1.0.14-0ubuntu2
|
||||
Pin-Priority: 900
|
||||
@@EOF
|
||||
fi
|
||||
|
||||
# Create a good sources.list, and finish the install
|
||||
echo deb $MIRROR $STE ${COMP} > ${ROOT}etc/apt/sources.list
|
||||
echo deb $MIRROR ${STE}-security ${COMP} >> ${ROOT}etc/apt/sources.list
|
||||
@ -363,6 +375,9 @@ link_in_boot = $link_in_boot
|
||||
chroot $ROOT dpkg-divert --remove --rename /${file}
|
||||
done
|
||||
|
||||
# remove the apt preferences hack if it was added
|
||||
rm -f ${ROOT}etc/apt/preferences
|
||||
|
||||
# And make this look more pristine
|
||||
cat << @@EOF > ${ROOT}etc/apt/sources.list
|
||||
deb ${USERMIRROR} $STE ${COMP}
|
||||
|
Loading…
x
Reference in New Issue
Block a user