namespace :config do
task :http_server do
# required configurations
# :test, "Test bidon", {}
# /required configurations
logger.info "Configuring HTTP Server"
web_conf = CapistranoAutoMultiInstall::ConfigureWebServer.new(self,:logger=>logger)
web_conf.generate_conf_files
web_conf.write
end
task :database do
# required configurations
# :toto, "Toto", {:toto=>:tata}
# /required configurations
db_conf = CapistranoAutoMultiInstall::ConfigureDatabase.new(self,:logger=>logger)
db_conf.check_or_create_database
db_conf.check_or_create_user
db_conf.create_database_yml
db_conf.syslink
end
task :start do end
task :stop do end
task :restart, :roles => :app, :except => { :no_release => true } do
run "#{try_sudo} touch #{File.join(current_path,'tmp','restart.txt')}"
end
end
namespace :deploy do
task :just_perform_migrations do
# required configurations
# :titi, "Titi", {:toto=>:titi}
# :tutu, "Tutu", {:toto=>:titi}
# /required configurations
run "cd #{current_path} && rake db:migrate RAILS_ENV=production"
end
end