More robust checking of age of apt cache (#90)
This commit is contained in:
parent
270eae5fc9
commit
797d1a2f52
1 changed files with 3 additions and 4 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue