Sha256: 0da88f83cf4e4b59fa2f291c1672febe3c316df4a2661f1741ecd5eefc459d58

Contents?: true

Size: 636 Bytes

Versions: 24

Compression:

Stored size: 636 Bytes

Contents

Capistrano::Configuration.instance(true).load do
  #
  # simple interactions with the jetty server
  #
  namespace :jetty do

    desc "start jetty"
    task :start do
      sudo "#{jetty_ctrl} start"
    end

    desc "stop jetty"
    task :stop do
      sudo "#{jetty_ctrl} stop"
    end

    desc "stop and start jetty"
    task :restart do
      jetty.stop
      jetty.start
    end

    desc "list jetty process"
    task :ps do
      run "ps aux | grep jetty | grep -v grep"
    end

    desc "tail :jetty_home/logs/*.log and logs/catalina.out"
    task :tail do
      stream "tail -f #{jetty_home}/logs/*.log"
    end

  end
end

Version data entries

24 entries across 24 versions & 1 rubygems

Version Path
crazycode-cap-recipes-0.5.3 lib/cap_recipes/tasks/jetty/manage.rb
crazycode-cap-recipes-0.5.2 lib/cap_recipes/tasks/jetty/manage.rb
crazycode-cap-recipes-0.5.1 lib/cap_recipes/tasks/jetty/manage.rb
crazycode-cap-recipes-0.5.0 lib/cap_recipes/tasks/jetty/manage.rb
crazycode-cap-recipes-0.4.14 lib/cap_recipes/tasks/jetty/manage.rb
crazycode-cap-recipes-0.4.13 lib/cap_recipes/tasks/jetty/manage.rb
crazycode-cap-recipes-0.4.12 lib/cap_recipes/tasks/jetty/manage.rb
crazycode-cap-recipes-0.4.11 lib/cap_recipes/tasks/jetty/manage.rb
crazycode-cap-recipes-0.4.10 lib/cap_recipes/tasks/jetty/manage.rb
crazycode-cap-recipes-0.4.9 lib/cap_recipes/tasks/jetty/manage.rb
crazycode-cap-recipes-0.4.8 lib/cap_recipes/tasks/jetty/manage.rb
crazycode-cap-recipes-0.4.6 lib/cap_recipes/tasks/jetty/manage.rb
crazycode-cap-recipes-0.4.5 lib/cap_recipes/tasks/jetty/manage.rb
crazycode-cap-recipes-0.4.4 lib/cap_recipes/tasks/jetty/manage.rb
crazycode-cap-recipes-0.4.3 lib/cap_recipes/tasks/jetty/manage.rb
crazycode-cap-recipes-0.4.2 lib/cap_recipes/tasks/jetty/manage.rb
crazycode-cap-recipes-0.4.1 lib/cap_recipes/tasks/jetty/manage.rb
crazycode-cap-recipes-0.4.0 lib/cap_recipes/tasks/jetty/manage.rb
crazycode-cap-recipes-0.3.39.3 lib/cap_recipes/tasks/jetty/manage.rb
crazycode-cap-recipes-0.3.39.2 lib/cap_recipes/tasks/jetty/manage.rb