From 4ed5a506be313f3a19293df484c551b80ef4d5bf Mon Sep 17 00:00:00 2001 From: Job van der Voort Date: Thu, 25 Sep 2014 09:36:01 +0200 Subject: [PATCH] set the proposed backup time to 4am --- doc/raketasks/backup_restore.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/raketasks/backup_restore.md b/doc/raketasks/backup_restore.md index 359c1f33082..4db08b1ba20 100644 --- a/doc/raketasks/backup_restore.md +++ b/doc/raketasks/backup_restore.md @@ -115,6 +115,6 @@ sudo -u git crontab -e # Edit the crontab for the git user Add the following lines at the bottom: ``` -# Create a full backup of the GitLab repositories and SQL database every day at 2am -0 2 * * * cd /home/git/gitlab && PATH=/usr/local/bin:/usr/bin:/bin bundle exec rake gitlab:backup:create RAILS_ENV=production +# Create a full backup of the GitLab repositories and SQL database every day at 4am +0 4 * * * cd /home/git/gitlab && PATH=/usr/local/bin:/usr/bin:/bin bundle exec rake gitlab:backup:create RAILS_ENV=production ```