summaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authorJenkins <jenkins@review.openstack.org>2012-01-13 19:19:46 +0000
committerGerrit Code Review <review@openstack.org>2012-01-13 19:19:46 +0000
commit6c898e6abf44caa176790e9cd4505aeed145397c (patch)
tree4d9cbc1ef13d8d208284417f333e36482bdd8c26 /bin
parent485328e48fc7dff1ce2ebfd262c442d8f993688b (diff)
parent60ff2e3b72b5a3c9200f8fc47aac01cdb610bdcf (diff)
Merge "Implements blueprint separate-nova-volumeapi"
Diffstat (limited to 'bin')
-rwxr-xr-xbin/nova-api-os-compute47
-rwxr-xr-xbin/nova-api-os-volume (renamed from bin/nova-api-os)2
2 files changed, 48 insertions, 1 deletions
diff --git a/bin/nova-api-os-compute b/bin/nova-api-os-compute
new file mode 100755
index 000000000..7bfff2a42
--- /dev/null
+++ b/bin/nova-api-os-compute
@@ -0,0 +1,47 @@
+#!/usr/bin/env python
+# vim: tabstop=4 shiftwidth=4 softtabstop=4
+
+# Copyright 2010 United States Government as represented by the
+# Administrator of the National Aeronautics and Space Administration.
+# All Rights Reserved.
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+"""Starter script for Nova OS API."""
+
+import eventlet
+eventlet.monkey_patch()
+
+import os
+import sys
+
+
+possible_topdir = os.path.normpath(os.path.join(os.path.abspath(
+ sys.argv[0]), os.pardir, os.pardir))
+if os.path.exists(os.path.join(possible_topdir, "nova", "__init__.py")):
+ sys.path.insert(0, possible_topdir)
+
+
+from nova import flags
+from nova import log as logging
+from nova import service
+from nova import utils
+
+if __name__ == '__main__':
+ utils.default_flagfile()
+ flags.FLAGS(sys.argv)
+ logging.setup()
+ utils.monkey_patch()
+ server = service.WSGIService('osapi_compute')
+ service.serve(server)
+ service.wait()
diff --git a/bin/nova-api-os b/bin/nova-api-os-volume
index 83a808987..33909c5b5 100755
--- a/bin/nova-api-os
+++ b/bin/nova-api-os-volume
@@ -42,6 +42,6 @@ if __name__ == '__main__':
flags.FLAGS(sys.argv)
logging.setup()
utils.monkey_patch()
- server = service.WSGIService('osapi')
+ server = service.WSGIService('osapi_volume')
service.serve(server)
service.wait()