public
Description: Capistrano recipe for Panda and MySql
Homepage: http://redwriteshere.com
Clone URL: git://github.com/reddavis/panda_cap.git
panda_cap / panda_cap.rb
100644 21 lines (20 sloc) 0.439 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
namespace :panda do
  
  desc "Install everything" # Haven't tested this as I did it all individually, but it should work
  task :install do
    apt_get_update
    install_ruby
    install_rubygems
    install_gems
    install_mysql
    install_git
    install_imagemagick
    install_all_required_files
    install_libjpeg
    install_zlib
    install_libgd
    install_rvideo
    install_ffmpeg
    install_nginx
    copy_panda
  end
end