mirror of
https://git.launchpad.net/livecd-rootfs
synced 2025-02-23 11:21:12 +00:00
Add support for multiple pools (/var/lib/{livefs,preinstalled}-pool/).
This commit is contained in:
parent
e71a331e82
commit
818af83d4d
1
debian/changelog
vendored
1
debian/changelog
vendored
@ -10,6 +10,7 @@ livecd-rootfs (25.04.18) UNRELEASED; urgency=medium
|
|||||||
* Update debhelper compat to 13, no changes needed.
|
* Update debhelper compat to 13, no changes needed.
|
||||||
* Make the package completely Lintian-clean except for no-dep5-copyright.
|
* Make the package completely Lintian-clean except for no-dep5-copyright.
|
||||||
* Update Standards-Version to 4.7.0, no changes needed.
|
* Update Standards-Version to 4.7.0, no changes needed.
|
||||||
|
* Add support for multiple pools (/var/lib/{livefs,preinstalled}-pool/).
|
||||||
|
|
||||||
-- Michael Hudson-Doyle <michael.hudson@ubuntu.com> Mon, 17 Feb 2025 11:12:00 +1300
|
-- Michael Hudson-Doyle <michael.hudson@ubuntu.com> Mon, 17 Feb 2025 11:12:00 +1300
|
||||||
|
|
||||||
|
@ -241,10 +241,11 @@ EOF
|
|||||||
|
|
||||||
configure_universe
|
configure_universe
|
||||||
|
|
||||||
if [ -d chroot/var/lib/preinstalled-pool ]; then
|
for POOL_DIR in preinstalled-pool livefs-pool; do
|
||||||
cat > config/indices/apt.conf <<-EOF
|
if [ -d chroot/var/lib/$POOL_DIR ]; then
|
||||||
|
cat > config/indices/apt.conf <<-EOF
|
||||||
Dir {
|
Dir {
|
||||||
ArchiveDir "chroot/var/lib/preinstalled-pool";
|
ArchiveDir "chroot/var/lib/$POOL_DIR";
|
||||||
OverrideDir "config/indices";
|
OverrideDir "config/indices";
|
||||||
CacheDir "config/indices";
|
CacheDir "config/indices";
|
||||||
}
|
}
|
||||||
@ -259,11 +260,11 @@ Tree "dists/$LB_DISTRIBUTION"
|
|||||||
Contents " ";
|
Contents " ";
|
||||||
}
|
}
|
||||||
EOF
|
EOF
|
||||||
for component in $LB_PARENT_ARCHIVE_AREAS; do
|
for component in $LB_PARENT_ARCHIVE_AREAS; do
|
||||||
mkdir -p chroot/var/lib/preinstalled-pool/dists/$LB_DISTRIBUTION/$component/binary-$LB_ARCHITECTURES
|
mkdir -p chroot/var/lib/$POOL_DIR/dists/$LB_DISTRIBUTION/$component/binary-$LB_ARCHITECTURES
|
||||||
done
|
done
|
||||||
apt-ftparchive generate config/indices/apt.conf
|
apt-ftparchive generate config/indices/apt.conf
|
||||||
cat << @@EOF > chroot/etc/apt/sources.list.d/preinstalled-pool.sources
|
cat << @@EOF > chroot/etc/apt/sources.list.d/$POOL_DIR.sources
|
||||||
# This is a sources.list entry for a small pool of packages
|
# This is a sources.list entry for a small pool of packages
|
||||||
# provided on your preinstalled filesystem for your convenience.
|
# provided on your preinstalled filesystem for your convenience.
|
||||||
#
|
#
|
||||||
@ -272,40 +273,41 @@ EOF
|
|||||||
# packages remotely instead.
|
# packages remotely instead.
|
||||||
#
|
#
|
||||||
Types: deb
|
Types: deb
|
||||||
URIs: file:/var/lib/preinstalled-pool/
|
URIs: file:/var/lib/$POOL_DIR/
|
||||||
Suites: $LB_DISTRIBUTION
|
Suites: $LB_DISTRIBUTION
|
||||||
Components: $LB_PARENT_ARCHIVE_AREAS
|
Components: $LB_PARENT_ARCHIVE_AREAS
|
||||||
Signed-By: /etc/apt/keyrings/preinstalled-pool.gpg
|
Signed-By: /etc/apt/keyrings/$POOL_DIR.gpg
|
||||||
@@EOF
|
@@EOF
|
||||||
|
|
||||||
|
|
||||||
echo "Waiting on gnupg ("$GPG_PROCESS") to finish generating a key."
|
echo "Waiting on gnupg ("$GPG_PROCESS") to finish generating a key."
|
||||||
wait $GPG_PROCESS
|
wait $GPG_PROCESS
|
||||||
|
|
||||||
R_ORIGIN=$(lsb_release -i -s)
|
R_ORIGIN=$(lsb_release -i -s)
|
||||||
R_CODENAME=$(lsb_release -c -s)
|
R_CODENAME=$(lsb_release -c -s)
|
||||||
R_VERSION=$(lsb_release -r -s)
|
R_VERSION=$(lsb_release -r -s)
|
||||||
R_PRETTYNAME=$(echo $R_CODENAME | sed -e 's/^\(.\)/\U\1/')
|
R_PRETTYNAME=$(echo $R_CODENAME | sed -e 's/^\(.\)/\U\1/')
|
||||||
|
|
||||||
apt-ftparchive -o APT::FTPArchive::Release::Origin=$R_ORIGIN \
|
apt-ftparchive -o APT::FTPArchive::Release::Origin=$R_ORIGIN \
|
||||||
-o APT::FTPArchive::Release::Label=$R_ORIGIN \
|
-o APT::FTPArchive::Release::Label=$R_ORIGIN \
|
||||||
-o APT::FTPArchive::Release::Suite=$R_CODENAME-local \
|
-o APT::FTPArchive::Release::Suite=$R_CODENAME-local \
|
||||||
-o APT::FTPArchive::Release::Version=$R_VERSION \
|
-o APT::FTPArchive::Release::Version=$R_VERSION \
|
||||||
-o APT::FTPArchive::Release::Codename=$R_CODENAME \
|
-o APT::FTPArchive::Release::Codename=$R_CODENAME \
|
||||||
-o APT::FTPArchive::Release::Description="$R_ORIGIN $R_PRETTYNAME Local" \
|
-o APT::FTPArchive::Release::Description="$R_ORIGIN $R_PRETTYNAME Local" \
|
||||||
release chroot/var/lib/preinstalled-pool/dists/$R_CODENAME/ \
|
release chroot/var/lib/$POOL_DIR/dists/$R_CODENAME/ \
|
||||||
> config/gnupg/Release
|
> config/gnupg/Release
|
||||||
|
|
||||||
gpg --home config/gnupg --detach-sign --armor config/gnupg/Release
|
gpg --home config/gnupg --detach-sign --armor config/gnupg/Release
|
||||||
mv config/gnupg/Release \
|
mv config/gnupg/Release \
|
||||||
chroot/var/lib/preinstalled-pool/dists/$R_CODENAME/Release
|
chroot/var/lib/$POOL_DIR/dists/$R_CODENAME/Release
|
||||||
mv config/gnupg/Release.asc \
|
mv config/gnupg/Release.asc \
|
||||||
chroot/var/lib/preinstalled-pool/dists/$R_CODENAME/Release.gpg
|
chroot/var/lib/$POOL_DIR/dists/$R_CODENAME/Release.gpg
|
||||||
cp config/gnupg/pubring.gpg chroot/etc/apt/keyrings/preinstalled-pool.gpg
|
cp config/gnupg/pubring.gpg chroot/etc/apt/keyrings/$POOL_DIR.gpg
|
||||||
find chroot/var/lib/preinstalled-pool/ -name Packages | xargs rm
|
find chroot/var/lib/$POOL_DIR/ -name Packages | xargs rm
|
||||||
# We only want to have a cache for the pre-installed pool at this point
|
# We only want to have a cache for the pre-installed pool at this point
|
||||||
Chroot chroot "apt-get update -o Dir::Etc::SourceParts=/dev/null -oDir::Etc::SourceList=etc/apt/sources.list.d/preinstalled-pool.sources"
|
Chroot chroot "apt-get update -o Dir::Etc::SourceParts=/dev/null -oDir::Etc::SourceList=etc/apt/sources.list.d/$POOL_DIR.sources"
|
||||||
fi
|
fi
|
||||||
|
done
|
||||||
case $PROJECT:$SUBPROJECT in
|
case $PROJECT:$SUBPROJECT in
|
||||||
*)
|
*)
|
||||||
if [ -e "config/seeded-snaps" ]; then
|
if [ -e "config/seeded-snaps" ]; then
|
||||||
|
Loading…
x
Reference in New Issue
Block a user