cache-apt-pkgs-action/restore_pkgs.sh

16 lines
485 B
Bash
Raw Normal View History

2021-10-14 04:11:27 +00:00
#!/bin/bash
# Directory that holds the cached packages.
cache_dir=$1
# Root directory to untar the cached packages to.
# Typically filesystem root '/' but can be changed for testing.
cache_restore_root=$2
for cache_filepath in $(ls $cache_dir); do
echo "* Restoring $package from cache $cache_filepath... "
sudo tar -xf $cache_filepath -C $cache_restore_root
sudo apt-get --yes --only-upgrade install $package
2021-10-16 18:34:14 +00:00
done
2021-10-14 04:11:27 +00:00
echo "Action complete. ${#packages[@]} package(s) restored."