Skip to content

Commit

Permalink
More robust checking of age of apt cache (#90)
Browse files Browse the repository at this point in the history
  • Loading branch information
jondo2010 committed Feb 12, 2023
1 parent 270eae5 commit 797d1a2
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions install_and_cache_pkgs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ manifest_main=""
log "Package list:"
for package in ${normalized_packages}; do
read package_name package_ver < <(get_package_name_ver "${package}")
manifest_main="${manifest_main}${package_name}:${package_ver},"
manifest_main="${manifest_main}${package_name}:${package_ver},"
log "- ${package_name}:${package_ver}"
done
write_manifest "main" "${manifest_main}" "${cache_dir}/manifest_main.log"
Expand All @@ -45,12 +45,11 @@ log "done"
log_empty_line

log "Updating APT package list..."
last_update_delta_s=$(($(date +%s) - $(date +%s -r /var/cache/apt/pkgcache.bin)))
if test $last_update_delta_s -gt 300; then
if [[ -z "$(find -H /var/lib/apt/lists -maxdepth 0 -mmin -5)" ]]; then
sudo apt-fast update > /dev/null
log "done"
else
log "skipped (fresh by ${last_update_delta_s} seconds)"
log "skipped (fresh within at least 5 minutes)"
fi

log_empty_line
Expand Down

0 comments on commit 797d1a2

Please sign in to comment.