Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixup location of boot cdrom repository #2143

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,14 @@ if [ "$(awk '$2 == "/" {print $3}' /proc/mounts)" == "tmpfs" ]; then
done
# Make sure to re-mount any mount points under /tmp
mount -a
# The boot iso is sometimes mounted as /media/cdrom but more often as /media/sr0.
# This can change on each reboot.
for MEDIA in cdrom sr0; do
if [ -d "/media/${MEDIA}/apks" ]; then
sed -i "s#^/media/.*/apks#/media/$MEDIA/apks#" /etc/apk/repositories
break
fi
done
# Reinstall packages from /mnt/data/apk/cache into the RAM disk
apk fix --no-network
fi
Loading