Skip to content
This repository has been archived by the owner on Jul 31, 2024. It is now read-only.

Commit

Permalink
Merge pull request #45 from jeremyzahner/master
Browse files Browse the repository at this point in the history
Changes crontab value from '*/1 * * * *' to '0 * * * * *'.
  • Loading branch information
Cédric Vanet authored Sep 8, 2016
2 parents d8487ed + 4b3ccbf commit 9f2ce83
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Changelog

**latest**
- Fixing wrong declaration of cron "hour" value.

**1.5.2**
- Upgrade toran proxy to version 1.5.2
Expand Down
2 changes: 1 addition & 1 deletion scripts/install/toran.sh
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ elif [ "${TORAN_CRON_TIMER}" == "fifteen" ]; then
elif [ "${TORAN_CRON_TIMER}" == "half" ]; then
CRON_TIMER="*/30 * * * *"
elif [ "${TORAN_CRON_TIMER}" == "hour" ]; then
CRON_TIMER="*/1 * * * *"
CRON_TIMER="0 * * * *"
elif [ "${TORAN_CRON_TIMER}" == "daily" ]; then
read CRON_TIMER_HOUR CRON_TIMER_MIN <<< ${TORAN_CRON_TIMER_DAILY_TIME//[:]/ }
CRON_TIMER="$CRON_TIMER_MIN $CRON_TIMER_HOUR * * * *"
Expand Down

0 comments on commit 9f2ce83

Please sign in to comment.