cache-apt-pkgs-action/install_and_cache_pkgs.sh

89 lines
2.9 KiB
Bash
Raw Normal View History

2021-10-13 21:11:27 -07:00
#!/bin/bash
2021-10-16 21:17:55 -07:00
# Fail on any error.
set -e
# Include library.
script_dir="$(dirname -- "$(realpath -- "${0}")")"
2022-03-26 12:48:16 -07:00
source "${script_dir}/lib.sh"
2021-10-13 21:11:27 -07:00
# Directory that holds the cached packages.
cache_dir="${1}"
2021-10-13 21:11:27 -07:00
# List of the packages to use.
input_packages="${@:2}"
# Trim commas, excess spaces, and sort.
2022-06-30 01:27:20 -07:00
normalized_packages="$(normalize_package_list "${input_packages}")"
2021-10-13 21:11:27 -07:00
package_count=$(wc -w <<< "${normalized_packages}")
2022-06-30 07:13:58 -07:00
log "Clean installing and caching ${package_count} package(s)."
log "Package list:"
2022-06-30 01:27:20 -07:00
for package in ${normalized_packages}; do
2022-06-30 07:13:58 -07:00
log "- ${package}"
2021-10-16 21:45:24 -07:00
done
2022-07-14 21:44:35 -07:00
log "Updating APT package list..."
sudo apt-get update > /dev/null
2022-06-30 08:24:18 -07:00
echo "done."
2021-10-21 12:41:47 -07:00
# Strictly contains the requested packages.
manifest_main=""
# Contains all packages including dependencies.
manifest_all=""
2022-06-30 07:13:58 -07:00
log "Clean installing and caching ${package_count} packages..."
2022-06-30 01:27:20 -07:00
for package in ${normalized_packages}; do
read package_name package_ver < <(get_package_name_ver "${package}")
# Comma delimited name:ver pairs in the main requested packages manifest.
manifest_main="${manifest_main}${package_name}:${package_ver},"
2022-07-19 20:02:22 -07:00
read dep_packages < <(get_dep_packages "${package_name}")
if test -z "${dep_packages}"; then
dep_packages_text="none";
else
dep_packages_text="${dep_packages}"
2022-07-14 21:44:35 -07:00
fi
2022-06-30 07:13:58 -07:00
log "- ${package_name}"
log " * Version: ${package_ver}"
2022-07-19 20:02:22 -07:00
log " * Dependencies: ${dep_packages_text}"
2022-07-14 21:44:35 -07:00
log " * Installing..."
# Zero interaction while installing or upgrading the system via apt.
2022-07-19 20:02:22 -07:00
sudo DEBIAN_FRONTEND=noninteractive apt-get --yes install "${package_name}" > /dev/null
echo "done."
2022-07-19 20:02:22 -07:00
for cache_package in ${package_name}:${package_ver} ${dep_packages}; do
cache_filepath="${cache_dir}/${cache_package}.tar.gz"
if test ! -f "${cache_filepath}"; then
read cache_package_name cache_package_ver < <(get_package_name_ver "${cache_package}")
2022-07-14 21:44:35 -07:00
log " * Caching ${cache_package_name} to ${cache_filepath}..."
# Pipe all package files (no folders) to Tar.
dpkg -L "${cache_package_name}" |
while IFS= read -r f; do
if test -f $f || test -L $f; then echo "${f:1}"; fi; #${f:1} removes the leading slash that Tar disallows
done |
2022-06-30 06:43:45 -07:00
xargs tar -czf "${cache_filepath}" -C /
2022-07-19 20:02:22 -07:00
log "done (compressed size $(du -h "${cache_filepath}" | cut -f1))."
fi
# Comma delimited name:ver pairs in the all packages manifest.
manifest_all="${manifest_all}${cache_package_name}:${cache_package_ver},"
done
2021-10-16 11:34:14 -07:00
done
2022-06-30 07:13:58 -07:00
log "done."
2021-10-13 21:11:27 -07:00
manifest_all_filepath="${cache_dir}/manifest_all.log"
2022-07-14 21:44:35 -07:00
log "Writing all packages manifest to ${manifest_all_filepath}..."
# Remove trailing comma and write to manifest_all file.
echo "${manifest_all:0:-1}" > "${manifest_all_filepath}"
2022-07-14 21:44:35 -07:00
log "done."
manifest_main_filepath="${cache_dir}/manifest_main.log"
2022-07-14 21:44:35 -07:00
log "Writing main requested packages manifest to ${manifest_main_filepath}..."
# Remove trailing comma and write to manifest_main file.
echo "${manifest_main:0:-1}" > "${manifest_main_filepath}"
log "done."