2021-10-21 20:57:52 -07:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
# Fail on any error.
|
|
|
|
set -e
|
|
|
|
|
2022-07-19 20:42:48 -07:00
|
|
|
# Include library.
|
|
|
|
script_dir="$(dirname -- "$(realpath -- "${0}")")"
|
|
|
|
source "${script_dir}/lib.sh"
|
|
|
|
|
2021-10-21 20:57:52 -07:00
|
|
|
# Directory that holds the cached packages.
|
2022-07-19 20:42:48 -07:00
|
|
|
cache_dir="${1}"
|
2021-10-21 20:57:52 -07:00
|
|
|
|
|
|
|
# Root directory to untar the cached packages to.
|
|
|
|
# Typically filesystem root '/' but can be changed for testing.
|
2022-11-23 22:24:00 -08:00
|
|
|
# WARNING: If non-root, this can cause errors during install script execution.
|
2022-07-19 20:42:48 -07:00
|
|
|
cache_restore_root="${2}"
|
2021-10-21 20:57:52 -07:00
|
|
|
|
|
|
|
# Indicates that the cache was found.
|
2022-07-19 20:42:48 -07:00
|
|
|
cache_hit="${3}"
|
2021-10-21 20:57:52 -07:00
|
|
|
|
2022-11-23 22:24:00 -08:00
|
|
|
# Cache and execute post install scripts on restore.
|
|
|
|
execute_install_scripts="${4}"
|
2021-10-21 20:57:52 -07:00
|
|
|
|
2022-11-23 22:24:00 -08:00
|
|
|
# Debug mode for diagnosing issues.
|
|
|
|
debug="${5}"
|
|
|
|
test ${debug} == "true" && set -x
|
|
|
|
|
|
|
|
# List of the packages to use.
|
|
|
|
packages="${@:6}"
|
2021-10-21 21:22:07 -07:00
|
|
|
|
2022-06-03 20:30:40 -07:00
|
|
|
if [ "$cache_hit" == true ]; then
|
2022-11-23 22:24:00 -08:00
|
|
|
${script_dir}/restore_pkgs.sh "${cache_dir}" "${cache_restore_root}" "${execute_install_scripts}" "${debug}"
|
2021-10-22 00:12:56 -07:00
|
|
|
else
|
2022-11-23 22:24:00 -08:00
|
|
|
${script_dir}/install_and_cache_pkgs.sh "${cache_dir}" "${debug}" ${packages}
|
2021-10-21 20:57:52 -07:00
|
|
|
fi
|
2022-07-23 17:06:17 -07:00
|
|
|
|
|
|
|
log_empty_line
|