Make date condition easier to read.

missing-apt-list
contradict 2 years ago
parent aec8c665d7
commit ca4848b759

@ -34,7 +34,8 @@ apt_opts="-o Acquire::AllowReleaseInfoChange::Suite=true -o Acquire::AllowReleas
# run 'apt-get update' if anything in /etc/apt is newer then /var/lib/apt/lists
# it will be run a second time on error as a redundancy messure to success
cat << DONE
if [ ! -d /var/lib/apt/lists ] || { find /etc/apt -mindepth 1 -cnewer /var/lib/apt/lists | grep . > /dev/null; }; then
newer_sources=\$(find /etc/apt -mindepth 1 -cnewer /var/lib/apt/lists)
if [ ! -d /var/lib/apt/lists ] || [ -n "${newer_sources}" ]; then
apt-get $apt_opts update || apt-get $apt_opts update
fi
DONE

Loading…
Cancel
Save