cache-apt-pkgs-action/install_and_cache_pkgs.sh

51 lines
1.3 KiB
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)
2021-10-22 04:30:49 +00:00
echo "Clean installing and caching $package_count package(s)."
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 -n "Updating APT package list..."
sudo apt-get update > /dev/null
echo "done."
2021-10-21 19:41:47 +00:00
2021-10-22 05:01:57 +00:00
echo "Clean installing and caching $(echo $packages | wc -w) packages..."
2021-10-14 04:11:27 +00:00
for package in $packages; do
cache_filepath=$cache_dir/$package.tar.gz
2021-10-22 05:01:57 +00:00
echo "- $package"
echo -n " Installing..."
sudo apt-get --yes install $package > /dev/null
echo "done."
2021-10-14 04:11:27 +00:00
2021-10-22 05:01:57 +00:00
echo -n " Caching 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-22 05:01:57 +00:00
echo "done."
2021-10-14 04:11:27 +00:00
2021-10-22 05:01:57 +00:00
manifest_filepath="$cache_dir/manifest.log"
echo -n "Writing package manifest to $manifest_filepath..."
2021-10-22 06:28:06 +00:00
manifest=
for package in $packages; do
2021-10-22 07:16:17 +00:00
manifest=$manifest$package:$(dpkg -s $package | grep Version | awk '{print $2}'),
2021-10-22 06:28:06 +00:00
done
2021-10-22 05:01:57 +00:00
# Remove trailing comma.
echo ${manifest:0:-1} > $manifest_filepath
echo "done."