cache-apt-pkgs-action/install_and_cache_pkgs.sh

65 lines
2.1 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
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.
packages="${@:2}"
# Sort these packages by name and split on commas.
packages=$(echo "${packages}" | sed 's/[\s,]+/ /g' | tr ' ' '\n' | sort | tr '\n' ' ')
# Remove extraneous spaces
packages="$(echo "${packages}" | sed 's/\s\+/ /g;s/^\s\+//g;s/\s\+$//g')"
package_count=$(echo "${packages}" | wc -w)
echo "Clean installing and caching ${package_count} package(s)."
echo "Package list:"
for package in ${packages}; do
echo "- ${package}"
2021-10-16 21:45:24 -07:00
done
echo -n "Updating APT package list..."
sudo apt-get update > /dev/null
echo "done."
2021-10-21 12:41:47 -07:00
manifest=
echo "Clean installing and caching ${package_count} packages..."
for package in ${packages}; do
echo "- ${package}"
2021-10-21 22:01:57 -07:00
echo -n " Installing..."
2021-10-13 21:11:27 -07:00
# Gather a list of all packages apt installs to make this package work
required_packages=$(apt-get install --dry-run --yes "${package}" | grep -Po "(?<=Inst )[^\s]+" || echo "${package}")
echo "Package ${package} installs the following packages: ${required_packages//$'\n'/, }"
sudo DEBIAN_FRONTEND=noninteractive apt-get --yes install "${package}" > /dev/null
echo "done."
for cache_package in ${required_packages}; do
cache_filepath="${cache_dir}/${cache_package}.tar.gz"
if [ ! -f "${cache_filepath}" ]; then
package_name="$(echo "${cache_package}" | cut -d"=" -f1)"
echo -n " Caching ${package_name} to ${cache_filepath}..."
# Pipe all package files (no folders) to Tar.
dpkg -L "${package_name}" |
while IFS= read -r f; do
if test -f $f; then echo "${f:1}"; fi; #${f:1} removes the leading slash that Tar disallows
done |
xargs tar -czf "${cache_filepath}" -C /
echo "done."
# Add package to manifest
manifest="${manifest}${package_name}:$(dpkg -s "${package_name}" | grep Version | awk '{print $2}'),"
fi
done
2021-10-16 11:34:14 -07:00
done
2021-10-21 22:01:57 -07:00
echo "done."
2021-10-13 21:11:27 -07:00
manifest_filepath="${cache_dir}/manifest.log"
echo -n "Writing package manifest to ${manifest_filepath}..."
2021-10-21 22:01:57 -07:00
# Remove trailing comma.
echo ${manifest:0:-1} > ${manifest_filepath}
2021-10-21 22:01:57 -07:00
echo "done."