diff options
author | jakefeasel <jfeasel@gmail.com> | 2015-04-19 13:08:52 -0700 |
---|---|---|
committer | jakefeasel <jfeasel@gmail.com> | 2015-04-19 13:08:52 -0700 |
commit | 0c66788b45ad28180df3897c44787fd659f79dfe (patch) | |
tree | ae1652a90cc75f91f4c83bd6681bcd637867b502 | |
parent | e293c125f954aaecab7ef2aa8c9a7d45b028108d (diff) | |
download | sqlfiddle2-0c66788b45ad28180df3897c44787fd659f79dfe.zip sqlfiddle2-0c66788b45ad28180df3897c44787fd659f79dfe.tar.gz sqlfiddle2-0c66788b45ad28180df3897c44787fd659f79dfe.tar.bz2 |
Adjusting backup interval to be once a day (during the time of day with the least traffic) to preserve system resources
-rwxr-xr-x | vagrant_scripts/pg93_aws.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vagrant_scripts/pg93_aws.sh b/vagrant_scripts/pg93_aws.sh index 9850923..3a07896 100755 --- a/vagrant_scripts/pg93_aws.sh +++ b/vagrant_scripts/pg93_aws.sh @@ -23,6 +23,6 @@ EOF chmod +x ~/backup.sh # run backups every four hours - echo "0 */4 * * * /root/backup.sh >> /root/backup.out 2>&1" | crontab + echo "0 2 * * * /root/backup.sh >> /root/backup.out 2>&1" | crontab fi
\ No newline at end of file |