summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJob van der Voort <jobvandervoort@gmail.com>2014-09-25 09:36:01 +0200
committerJob van der Voort <jobvandervoort@gmail.com>2014-09-25 09:38:17 +0200
commit4ed5a506be313f3a19293df484c551b80ef4d5bf (patch)
tree3196fc0b6ecf849a91472981d8611a4925132a68
parent2aeac794c2deb74043a74b263c4f4fc5d8a849a3 (diff)
downloadgitlab-ce-4ed5a506be313f3a19293df484c551b80ef4d5bf.tar.gz
set the proposed backup time to 4am
-rw-r--r--doc/raketasks/backup_restore.md4
1 files 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
```