Guest User

Untitled

a guest
Jan 23rd, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. task :test do
  2. system("autotest > log/test.log 2>&1 &")
  3. end
  4.  
  5. task :deploy do
  6. system("touch tmp/restart.txt")
  7. system("rsync -r --delete * server:path")
  8. end
  9.  
  10. task :tail_log do
  11. system("tail -f log/*")
  12. end
  13.  
  14. task :restart_passenger do
  15. system("touch tmp/restart.txt")
  16. puts "touched tmp/restart.txt"
  17. end
  18.  
  19. task :restart_apache do
  20. system("sudo apache2ctl graceful")
  21. end
  22.  
  23. task :autotest do
  24. system("autotest > log/test.log 2>&1 &")
  25. end
Add Comment
Please, Sign In to add comment