removes beta testers functionality

This commit is contained in:
Juanjo Bazán
2015-10-29 13:19:00 +01:00
parent 01022d2b42
commit 1e0ac137bb
6 changed files with 2 additions and 38 deletions

View File

@@ -1,12 +0,0 @@
namespace :deploy do
desc "compiles assets locally then rsyncs"
task :beta_testers do
on roles(:app) do |role|
run_locally do
execute"rsync -av ./config/beta-testers.txt #{role.user}@#{role.hostname}:#{shared_path}/config/beta-testers.txt;"
end
"chmod -R 755 #{shared_path}/config/beta-testers.txt"
execute "ln -nfs #{shared_path}/config/beta-testers.txt #{current_path}/config/beta-testers.txt"
end
end
end