Skip to content

Commit

Permalink
Update maintenance.sh to use app_caches.py explicitly
Browse files Browse the repository at this point in the history
  • Loading branch information
Salamandar committed Sep 12, 2024
1 parent f6566c7 commit 90b7fbc
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions maintenance.sh
Original file line number Diff line number Diff line change
Expand Up @@ -84,11 +84,17 @@ function git_pull_and_update_cron_and_restart_services_if_needed()
systemctl --quiet is-active webhooks || sendxmpppy "[autoreadme] Uhoh, failed to (re)start the autoreadme service?"
}

function update_app_cache()
{
./tools/app_caches.py -d -l . -c .apps_caches -j20
}

function rebuild_catalog()
{
log=$workdir/app_list_auto_update.log
date >> $log
git_pull_and_update_cron_and_restart_services_if_needed
update_app_cache
./tools/list_builder.py &>> $log || sendxmpppy "[listbuilder] Rebuilding the application list failed miserably"
}

Expand All @@ -97,13 +103,15 @@ function autoupdate_app_sources()
log=$workdir/app_sources_auto_update.log
date >> $log
git_pull_and_update_cron_and_restart_services_if_needed
update_app_cache
tools/autoupdate_app_sources/venv/bin/python3 tools/autoupdate_app_sources/autoupdate_app_sources.py \
--latest-commit-weekly --edit --commit --pr --paste -j1 \
&> $log || sendxmpppy "[appsourcesautoupdate] App sources auto-update failed miserably"
}

function update_app_levels()
{
update_app_cache
pushd tools/update_app_levels >/dev/null
python3 update_app_levels.py
popd >/dev/null
Expand Down

0 comments on commit 90b7fbc

Please sign in to comment.