cache-apt-pkgs-action/install_and_cache_pkgs.sh

44 lines
1,020 B
Bash
Raw Normal View History

2021-10-14 04:11:27 +00:00
#!/bin/bash
2021-10-17 04:17:55 +00:00
# Fail on any error.
set -e
2021-10-14 04:11:27 +00:00
# Directory that holds the cached packages.
cache_dir=$1
2021-10-14 04:11:27 +00:00
# List of the packages to use.
packages="${@:2}"
2021-10-17 04:45:24 +00:00
package_count=$(echo $packages | wc -w)
echo "Clean installing and caching $package_count package(s).\n"
echo "Package list:"
2021-10-17 04:45:24 +00:00
for package in $packages; do
echo "- $package"
2021-10-17 04:45:24 +00:00
done
echo ""
2021-10-17 04:45:24 +00:00
2021-10-14 04:11:27 +00:00
mkdir -p $cache_dir
2021-10-21 19:41:47 +00:00
echo -n "Updating APT package list..."
sudo apt-get update > /dev/null
echo "done."
2021-10-21 19:41:47 +00:00
2021-10-14 04:11:27 +00:00
for package in $packages; do
cache_filepath=$cache_dir/$package.tar.gz
echo -n "Clean installing $package..."
sudo apt-get --yes install $package > /dev/null
echo "done."
2021-10-14 04:11:27 +00:00
echo -n "Caching $package to $cache_filepath..."
2021-10-14 04:11:27 +00:00
# Pipe all package files (no folders) to Tar.
dpkg -L $package |
while IFS= read -r f; do
if test -f $f; then echo ${f:1}; fi; #${f:1} removes the leading slash that Tar disallows
2021-10-14 04:11:27 +00:00
done |
xargs tar -czf $cache_filepath -C /
echo "done."
2021-10-16 18:34:14 +00:00
done
2021-10-14 04:11:27 +00:00
echo "$(echo $packages | wc -w) package(s) installed and cached."