main.fcgi: usage, fix a bit of spacing
authorGreg Price <price@mit.edu>
Thu, 29 Oct 2009 05:36:37 +0000 (01:36 -0400)
committerGreg Price <price@mit.edu>
Thu, 29 Oct 2009 05:36:37 +0000 (01:36 -0400)
svn path=/package_branches/invirt-web/cherrypy-rebased/; revision=2702

code/main.fcgi

index 6f3ed99..fa2681a 100755 (executable)
@@ -9,10 +9,23 @@ from main import InvirtWeb, InvirtUnauthWeb
 dev = False
 base_dir = os.path.dirname(__file__)
 
-if __name__=="__main__":
+def usage():
+    print >>sys.stderr, """%s [config]
+
+Run server as FastCGI, with CherryPy config from "main.conf".
+
+With `config`, run standalone with CherryPy config from `config`.
+""" % sys.argv[0]
+    sys.exit(2)
+
+if __name__ == "__main__":
     static_dir = os.path.join(base_dir, 'static')
 
+    if len(sys.argv) > 2:
+        usage()
     if len(sys.argv) > 1:
+        if sys.argv[1] in ('-h', '--help'):
+            usage()
         conf_file = sys.argv[1]
         dev = True
     else: