Commit 3a4aff69 authored by Dmitriy Zaporozhets's avatar Dmitriy Zaporozhets

Merge pull request #973 from denispeplin/master

/home/git/repositories is hardcoded in rake task, replace it
parents 335f9d64 4a40f650
...@@ -21,7 +21,7 @@ namespace :gitlab do ...@@ -21,7 +21,7 @@ namespace :gitlab do
end end
GIT_HOST = YAML.load_file("#{Rails.root}/config/gitlab.yml")["git_host"] GIT_HOST = YAML.load_file("#{Rails.root}/config/gitlab.yml")["git_host"]
print "/home/git/repositories/............" print "#{GIT_HOST['base_path']}............"
if File.exists?(GIT_HOST['base_path']) if File.exists?(GIT_HOST['base_path'])
puts "exists".green puts "exists".green
else else
...@@ -29,7 +29,7 @@ namespace :gitlab do ...@@ -29,7 +29,7 @@ namespace :gitlab do
return return
end end
print "/home/git/repositories/ is writable?............" print "#{GIT_HOST['base_path']} is writable?............"
if File.stat(GIT_HOST['base_path']).writable? if File.stat(GIT_HOST['base_path']).writable?
puts "YES".green puts "YES".green
else else
......
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