Rename cronjob.sh to check_git.sh. Eventually do the same with the photo checker code so that it can be called from check_git.

This commit is contained in:
2025-10-14 15:13:24 -07:00
parent ccd4f4d051
commit 1cd182b3a9
2 changed files with 5 additions and 3 deletions

7
run.sh
View File

@@ -123,6 +123,7 @@ log "Removing old index files."
find files/photos/ -name "*".html -print -delete
{
check_main photos
# TBD/TODO: Move this section to check_photos.sh similar to check_git.sh.
count=1
http_code=0
port="${ports%% *}"
@@ -148,10 +149,10 @@ find files/photos/ -name "*".html -print -delete
## Main ##
log "Start local cronjob."
log "Start check_git."
while true; do
check_main cronjob
$DIR/cronjob.sh
check_main check_git
$DIR/check_git.sh
sleep 30
done &