cache-apt-pkgs-action/install_and_cache_pkgs.sh

28 lines
644 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
# List of the packages to use.
packages="${@:2}"
mkdir -p $cache_dir
for package in $packages; do
cache_filepath=$cache_dir/$package.tar.gz
echo "* Clean installing $package... "
sudo apt-get --yes install $package
echo "* Caching $package to $cache_filepath..."
# Pipe all package files (no folders) to Tar.
dpkg -L $package |
while IFS= read -r f; do
if test -f $f; then echo $f; fi;
done |
xargs tar -czf $cache_filepath -C /
2021-10-16 18:34:14 +00:00
done
2021-10-14 04:11:27 +00:00
echo "Action complete. ${#packages[@]} package(s) installed and cached."