Upgrading from Gitlabfrom 3.0 to 4.0
Closed
Upgrading from Gitlabfrom 3.0 to 4.0
Created by: sourcebits-nitheesh
when running this command
sudo -u gitlabhq -H bundle exec rake gitlab:enable_namespaces RAILS_ENV=production
Getting this error
rake aborted! Don't know how to build task 'gitlab:enable_namespaces'
Created by: sourcebits-nitheesh
not working
my file looks different
namespace :gitlab do namespace :app do desc "GITLAB | Enable auto merge" task :enable_automerge => :environment do Gitlab::Gitolite.new.enable_automerge
Project.find_each do |project| if project.repo_exists? && !project.satellite.exists? puts "Creating satellite for #{project.name}...".green
next project.satellite.create end end
puts "Done!".green end
end end ~
By Administrator on 2012-12-26T08:56:16 (imported from GitLab project)
Created by: riyad
Please use our Support Forum for questions regarding setup/configuration troubles. :)
By Administrator on 2012-12-26T11:07:20 (imported from GitLab project)