Skip to content
Snippets Groups Projects
Commit 3734a844 authored by Valentin Bruch's avatar Valentin Bruch
Browse files

optionally use offline repo in assemble_image.sh

parent 29076e14
No related branches found
No related tags found
No related merge requests found
......@@ -8,6 +8,13 @@ img1="kubuntu-20.04.3-desktop-amd64.iso"
img2="kubuntu-21.10-desktop-amd64.iso"
bootimg="$img1"
: ${workspace:="/workspace"}
: ${USE_OFFLINE_REPO:=0}
if [[ "$USE_OFFLINE_REPO" -eq 1 ]]
then
offlinerepo1='archives-focal'
offlinerepo2='archives-impish'
image_size='13G'
fi
# mtools, ddrescure, fdisk, grub, 7z
rm -rf "$workspace/part_files"
......@@ -34,8 +41,14 @@ cp grub_template.cfg "$workspace/part_files/boot/grub/grub.cfg"
fill_grub_config_template "$img1" "$workspace/part_files/boot/grub/grub.cfg"
fill_grub_config_template "$img2" "$workspace/part_files/boot/grub/grub.cfg"
#./create_offlinerepo.sh "$workspace/part_files/archives" "$img1" $(grep '^[^#]' packages | cut -d'|' -f 2)
#./create_offlinerepo.sh "$workspace/part_files/archives" "$img2" $(grep '^[^#]' packages | cut -d'|' -f 2)
if [[ "$USE_OFFLINE_REPO" -eq 1 ]]
then
# Note: in practice you might still want to create the offline repo separately and just copy or move the directories here.
# Creating the offline repo requires root privileges and can be quite slow.
./create_offlinerepo.sh "$workspace/part_files/$offlinerepo1" "$img1" $(grep '^[^#]' packages | cut -d'|' -f 2)
./create_offlinerepo.sh "$workspace/part_files/$offlinerepo2" "$img2" $(grep '^[^#]' packages | cut -d'|' -f 2)
fi
cp packages "$workspace/part_files/packages"
# The following command is dangerous: If offline repo is missing and "download updates while installing" is selected (default), this will install ALL listed packages during the installation.
#echo "ubiquity ubiquity/keep-installed string $(grep '^[^#]' packages | cut -d'|' -f 2 | tr '\n' ' ')" >> "$workspace/part_files/preseed/lip.seed"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment