Commit 5cd98824 authored by Dmitriy Zaporozhets's avatar Dmitriy Zaporozhets

Merge pull request #4140 from amacarthur/restore-fixes-clean

fixes for gitlab restore with non-standard backup and repo dirs
parents 9a0e7c0e 5f4fea17
...@@ -71,7 +71,7 @@ module Backup ...@@ -71,7 +71,7 @@ module Backup
print 'Put GitLab hooks in repositories dirs'.yellow print 'Put GitLab hooks in repositories dirs'.yellow
gitlab_shell_user_home = File.expand_path("~#{Gitlab.config.gitlab_shell.ssh_user}") gitlab_shell_user_home = File.expand_path("~#{Gitlab.config.gitlab_shell.ssh_user}")
if system("#{gitlab_shell_user_home}/gitlab-shell/support/rewrite-hooks.sh") if system("#{gitlab_shell_user_home}/gitlab-shell/support/rewrite-hooks.sh #{Gitlab.config.gitlab_shell.repos_path}")
puts " [DONE]".green puts " [DONE]".green
else else
puts " [FAILED]".red puts " [FAILED]".red
......
...@@ -90,13 +90,21 @@ namespace :gitlab do ...@@ -90,13 +90,21 @@ namespace :gitlab do
settings = YAML.load_file("backup_information.yml") settings = YAML.load_file("backup_information.yml")
ENV["VERSION"] = "#{settings[:db_version]}" if settings[:db_version].to_i > 0 ENV["VERSION"] = "#{settings[:db_version]}" if settings[:db_version].to_i > 0
# restoring mismatching backups can lead to unexpected problems # backups directory is not always sub of Rails root and able to execute the git rev-parse below
if settings[:gitlab_version] != %x{git rev-parse HEAD}.gsub(/\n/,"") begin
puts "GitLab version mismatch:".red Dir.chdir(Rails.root)
puts " Your current HEAD differs from the HEAD in the backup!".red
puts " Please switch to the following revision and try again:".red # restoring mismatching backups can lead to unexpected problems
puts " revision: #{settings[:gitlab_version]}".red if settings[:gitlab_version] != %x{git rev-parse HEAD}.gsub(/\n/, "")
exit 1 puts "GitLab version mismatch:".red
puts " Your current HEAD differs from the HEAD in the backup!".red
puts " Please switch to the following revision and try again:".red
puts " revision: #{settings[:gitlab_version]}".red
exit 1
end
ensure
# chdir back to original intended dir
Dir.chdir(Gitlab.config.backup.path)
end end
Rake::Task["gitlab:backup:db:restore"].invoke Rake::Task["gitlab:backup:db:restore"].invoke
......
...@@ -26,10 +26,12 @@ namespace :gitlab do ...@@ -26,10 +26,12 @@ namespace :gitlab do
warn_user_is_not_gitlab warn_user_is_not_gitlab
gitlab_shell_authorized_keys = File.join(File.expand_path("~#{Gitlab.config.gitlab_shell.ssh_user}"),'.ssh/authorized_keys') gitlab_shell_authorized_keys = File.join(File.expand_path("~#{Gitlab.config.gitlab_shell.ssh_user}"),'.ssh/authorized_keys')
puts "This will rebuild an authorized_keys file." unless ENV['force'] == 'yes'
puts "You will lose any data stored in #{gitlab_shell_authorized_keys}." puts "This will rebuild an authorized_keys file."
ask_to_continue puts "You will lose any data stored in #{gitlab_shell_authorized_keys}."
puts "" ask_to_continue
puts ""
end
system("echo '# Managed by gitlab-shell' > #{gitlab_shell_authorized_keys}") system("echo '# Managed by gitlab-shell' > #{gitlab_shell_authorized_keys}")
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment