Skip to content

Commit

Permalink
Fixed cron syntax issue preventing updates
Browse files Browse the repository at this point in the history
  • Loading branch information
madeofpendletonwool committed Dec 9, 2024
1 parent f7a4afe commit 59c90f8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions startup/startup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -77,8 +77,8 @@ echo "Using mysql/mariadb"
fi
echo "Database Validation complete"
# Periodic refresh
echo "*/30 * * * * /pinepods/startup/call_refresh_endpoint.sh >/dev/null 2>&1" | crontab -
echo "0 0 * * * /pinepods/startup/call_nightly_tasks.sh >/dev/null 2>&1" | crontab -
echo -e "*/30 * * * * /pinepods/startup/call_refresh_endpoint.sh >/dev/null 2>&1\n0 0 * * * /pinepods/startup/call_nightly_tasks.sh >/dev/null 2>&1" > /etc/crontabs/root
# Fix permissions on exim email server folders
# Fix permissions on exim email server folders
mkdir -p /var/log/exim4
mkdir -p /var/spool/exim4
Expand Down

0 comments on commit 59c90f8

Please sign in to comment.