Fix backup restore

Set permissions of backup dir to g+s

Closes #20188
This commit is contained in:
Stan Hu 2016-07-24 04:56:27 -07:00
parent 8987257498
commit c6ff77d4b8
2 changed files with 3 additions and 2 deletions

View File

@ -11,6 +11,7 @@ v 8.11.0 (unreleased)
v 8.10.2 (unreleased)
- Use project ID in repository cache to prevent stale data from persisting across projects
- Fix backup restore
v 8.10.1 (unreleased)
- Fix Error 500 when creating Wiki pages with hyphens or spaces

View File

@ -54,10 +54,10 @@ module Backup
# Move repos dir to 'repositories.old' dir
bk_repos_path = File.join(path, '..', 'repositories.old.' + Time.now.to_i.to_s)
FileUtils.mv(path, bk_repos_path)
# This is expected from gitlab:check
FileUtils.mkdir_p(path, mode: 2770)
end
FileUtils.mkdir_p(repos_path)
Project.find_each(batch_size: 1000) do |project|
$progress.print " * #{project.path_with_namespace} ... "