about summary refs log tree commit homepage
path: root/bin
diff options
context:
space:
mode:
authorEric Wong <normalperson@yhbt.net>2009-02-27 17:04:13 -0800
committerEric Wong <normalperson@yhbt.net>2009-03-03 11:13:06 -0800
commit4414d9bf34f162a604d2aacc765ab1ca2fc90404 (patch)
tree63e133f283803747282e8270c8fc375032164c2f /bin
parent5a04b0054c4f0c3a5962ba31688e45e8763f1cf5 (diff)
downloadunicorn-4414d9bf34f162a604d2aacc765ab1ca2fc90404.tar.gz
It's confusing with the lowercase "-p" option which is more
common for developers to use.  PID files are only needed for
production deployments, and those should be using config files
anyways.
Diffstat (limited to 'bin')
-rwxr-xr-xbin/unicorn4
1 files changed, 0 insertions, 4 deletions
diff --git a/bin/unicorn b/bin/unicorn
index c306c98..30a4dfa 100755
--- a/bin/unicorn
+++ b/bin/unicorn
@@ -66,10 +66,6 @@ opts = OptionParser.new("", 24, '  ') do |opts|
     daemonize = d ? true : false
   end
 
-  opts.on("-P", "--pid FILE", "file to store PID (default: none)") do |f|
-    options[:pid] = File.expand_path(f)
-  end
-
   # Unicorn-specific stuff
   opts.on("-l", "--listen {HOST:PORT|PATH}",
           "listen on HOST:PORT or PATH",