about summary refs log tree commit homepage
path: root/bin
diff options
context:
space:
mode:
authorzedshaw <zedshaw@19e92222-5c0b-0410-8929-a290d50e31e9>2006-03-14 05:48:37 +0000
committerzedshaw <zedshaw@19e92222-5c0b-0410-8929-a290d50e31e9>2006-03-14 05:48:37 +0000
commit2f049babd1ac067818b20a5643f70113ec1f3a4b (patch)
tree0d71576efdd90e2ffcaeab83e4bccc2386eb9224 /bin
parent8f915bf2e690d0c2db850585c04a729120d79ad2 (diff)
downloadunicorn-2f049babd1ac067818b20a5643f70113ec1f3a4b.tar.gz
git-svn-id: svn+ssh://rubyforge.org/var/svn/mongrel/trunk@109 19e92222-5c0b-0410-8929-a290d50e31e9
Diffstat (limited to 'bin')
-rw-r--r--bin/mongrel_rails8
-rw-r--r--bin/mongrel_rails_service8
2 files changed, 11 insertions, 5 deletions
diff --git a/bin/mongrel_rails b/bin/mongrel_rails
index 0b48b1f..e66d99e 100644
--- a/bin/mongrel_rails
+++ b/bin/mongrel_rails
@@ -121,7 +121,13 @@ class Start < GemPlugin::Plugin "/commands"
     begin
       # start mongrel processing thread
       server.run
-      STDERR.puts "Server ready."
+
+      if RUBY_PLATFORM !~ /mswin/
+        puts "Server Ready.  Use CTRL-C to quit."
+      else
+        puts "Server Ready.  Use CTRL-Pause/Break to quit."
+      end
+
       server.acceptor.join
     rescue Interrupt
       STDERR.puts "Interrupted."
diff --git a/bin/mongrel_rails_service b/bin/mongrel_rails_service
index 79fecdb..dd6c32b 100644
--- a/bin/mongrel_rails_service
+++ b/bin/mongrel_rails_service
@@ -30,7 +30,7 @@ module GenericCommand
   end
 end
 
-class Install < Mongrel::Plugin "/commands"
+class Install < GemPlugin::Plugin "/commands"
   include Mongrel::Command::Base
 
   # Default every option to nil so only the defined ones get passed to service
@@ -174,7 +174,7 @@ class Install < Mongrel::Plugin "/commands"
   end
 end
 
-class Delete < Mongrel::Plugin "/commands"
+class Delete < GemPlugin::Plugin "/commands"
   include Mongrel::Command::Base
   include GenericCommand
 
@@ -193,7 +193,7 @@ class Delete < Mongrel::Plugin "/commands"
   end
 end
 
-class Start < Mongrel::Plugin "/commands"
+class Start < GemPlugin::Plugin "/commands"
   include Mongrel::Command::Base
   include GenericCommand
   
@@ -218,7 +218,7 @@ class Start < Mongrel::Plugin "/commands"
   end
 end
 
-class Stop < Mongrel::Plugin "/commands"
+class Stop < GemPlugin::Plugin "/commands"
   include Mongrel::Command::Base
   include GenericCommand