Skip to content
Snippets Groups Projects
Verified Commit 12f74fc4 authored by Kevin Morris's avatar Kevin Morris
Browse files

fix: docker cron config timing and doc


This wasn't matching up with what's suggested in doc/maintenance.
This patch resolves that inconsistency.

Signed-off-by: Kevin Morris's avatarKevin Morris <kevr@0cost.org>
parent 2feb9b90
No related branches found
No related tags found
No related merge requests found
......@@ -120,12 +120,12 @@ The following crontab file uses every script meant to be run on an
interval:
AUR_CONFIG='/etc/aurweb/config'
*/5 * * * * bash -c 'poetry run aurweb-aurblup'
*/5 * * * * bash -c 'poetry run aurweb-mkpkglists --extended'
*/5 * * * * bash -c 'poetry run aurweb-pkgmaint'
*/5 * * * * bash -c 'poetry run aurweb-usermaint'
*/5 * * * * bash -c 'poetry run aurweb-tuvotereminder'
*/5 * * * * bash -c 'poetry run aurweb-popupdate'
*/2 * * * * bash -c 'poetry run aurweb-aurblup'
*/2 * * * * bash -c 'poetry run aurweb-pkgmaint'
*/2 * * * * bash -c 'poetry run aurweb-usermaint'
*/2 * * * * bash -c 'poetry run aurweb-popupdate'
*/12 * * * * bash -c 'poetry run aurweb-tuvotereminder'
7) Create a new database and a user and import the aurweb SQL schema:
......
AUR_CONFIG='/aurweb/conf/config'
*/5 * * * * bash -c 'aurweb-aurblup'
*/5 * * * * bash -c 'aurweb-mkpkglists --extended'
*/5 * * * * bash -c 'aurweb-pkgmaint'
*/5 * * * * bash -c 'aurweb-usermaint'
*/5 * * * * bash -c 'aurweb-tuvotereminder'
*/5 * * * * bash -c 'aurweb-popupdate'
*/2 * * * * bash -c 'aurweb-aurblup'
*/2 * * * * bash -c 'aurweb-pkgmaint'
*/2 * * * * bash -c 'aurweb-usermaint'
*/2 * * * * bash -c 'aurweb-popupdate'
*/12 * * * * bash -c 'aurweb-tuvotereminder'
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment