2011-11-28 16:28:03 +01:00
|
|
|
# vim: set ft=sh:
|
|
|
|
|
|
|
|
run_hook() {
|
2011-12-03 22:20:43 +01:00
|
|
|
if [[ -n "${ip}" && -n "${archiso_http_srv}" ]]; then
|
2011-12-02 04:44:02 +01:00
|
|
|
|
2011-12-03 22:20:43 +01:00
|
|
|
archiso_http_srv=$(eval echo ${archiso_http_srv})
|
|
|
|
[[ -z "${archiso_http_spc}" ]] && archiso_http_spc="75%"
|
2011-12-02 04:44:02 +01:00
|
|
|
|
2011-12-03 22:08:57 +01:00
|
|
|
mount_handler="archiso_pxe_http_mount_handler"
|
2011-11-28 16:28:03 +01:00
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
# Fetch a file with CURL
|
|
|
|
#
|
|
|
|
# $1 URL
|
2011-12-03 22:20:43 +01:00
|
|
|
# $2 Destination directory inside httpspace/${archisobasedir}
|
2011-11-28 16:28:03 +01:00
|
|
|
_curl_get() {
|
|
|
|
local _url="${1}"
|
|
|
|
local _dst="${2}"
|
|
|
|
|
|
|
|
msg ":: Downloading '${_url}'"
|
2012-08-01 00:52:09 +02:00
|
|
|
if ! curl -L -f -o "/run/archiso/httpspace/${archisobasedir}${_dst}/${_url##*/}" --create-dirs "${_url}"; then
|
2011-11-28 16:28:03 +01:00
|
|
|
echo "ERROR: Downloading '${_url}'"
|
|
|
|
echo " Falling back to interactive prompt"
|
|
|
|
echo " You can try to fix the problem manually, log out when you are finished"
|
|
|
|
launch_interactive_shell
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2011-12-03 22:08:57 +01:00
|
|
|
archiso_pxe_http_mount_handler () {
|
2011-11-28 16:28:03 +01:00
|
|
|
newroot="${1}"
|
|
|
|
|
2011-12-03 22:20:43 +01:00
|
|
|
msg ":: Mounting /run/archiso/httpspace (tmpfs) filesystem, size='${archiso_http_spc}'"
|
|
|
|
mkdir -p "/run/archiso/httpspace"
|
|
|
|
mount -t tmpfs -o size="${archiso_http_spc}",mode=0755 httpspace "/run/archiso/httpspace"
|
2011-11-28 16:28:03 +01:00
|
|
|
|
2014-06-28 05:35:50 +02:00
|
|
|
_curl_get "${archiso_http_srv}${archisobasedir}/${arch}/airootfs.sfs" "/${arch}"
|
2011-11-28 16:28:03 +01:00
|
|
|
|
2011-12-03 21:45:45 +01:00
|
|
|
if [[ "${checksum}" == "y" ]]; then
|
2014-06-28 05:35:51 +02:00
|
|
|
_curl_get "${archiso_http_srv}${archisobasedir}/${arch}/airootfs.md5" "/"
|
2011-12-03 21:45:45 +01:00
|
|
|
fi
|
2011-11-28 16:28:03 +01:00
|
|
|
|
2011-12-03 21:45:45 +01:00
|
|
|
mkdir -p "/run/archiso/bootmnt"
|
2011-12-03 22:20:43 +01:00
|
|
|
mount -o bind /run/archiso/httpspace /run/archiso/bootmnt
|
2011-11-28 16:28:03 +01:00
|
|
|
|
|
|
|
archiso_mount_handler ${newroot}
|
|
|
|
}
|