feat(docker): use mkpkglists --extended flag

Signed-off-by: Kevin Morris <kevr@0cost.org>
This commit is contained in:
Kevin Morris 2021-11-09 02:29:39 -08:00
parent 068b067e14
commit 107367f958
No known key found for this signature in database
GPG key ID: F7E46DED420788F3
2 changed files with 2 additions and 2 deletions

View file

@ -1,2 +1,2 @@
*/5 * * * * bash -c 'aurweb-aurblup && echo "[$(date -u)] executed aurblup" >> /var/log/mkpkglists.log' */5 * * * * bash -c 'aurweb-aurblup && echo "[$(date -u)] executed aurblup" >> /var/log/mkpkglists.log'
*/5 * * * * bash -c 'aurweb-mkpkglists && echo "[$(date -u)] executed mkpkglists" >> /var/log/mkpkglists.log' */5 * * * * bash -c 'aurweb-mkpkglists --extended && echo "[$(date -u)] executed mkpkglists" >> /var/log/mkpkglists.log'

View file

@ -6,7 +6,7 @@ if [ $? -eq 0 ]; then
echo "[$(date -u)] executed aurblup" >> /var/log/aurblup.log echo "[$(date -u)] executed aurblup" >> /var/log/aurblup.log
fi fi
aurweb-mkpkglists aurweb-mkpkglists --extended
if [ $? -eq 0 ]; then if [ $? -eq 0 ]; then
echo "[$(date -u)] executed mkpkglists" >> /var/log/mkpkglists.log echo "[$(date -u)] executed mkpkglists" >> /var/log/mkpkglists.log
fi fi