diff options
author | Soren Hansen <soren@linux2go.dk> | 2011-04-05 14:55:19 +0200 |
---|---|---|
committer | Soren Hansen <soren@linux2go.dk> | 2011-04-05 14:55:19 +0200 |
commit | 6c8c454826263b334eb674c9ab1c8d62e5fd491f (patch) | |
tree | cac4bd7b664de2e8eccba7a43ef7b9b63643528a | |
parent | 362b298906b6d577ab9421a0f0747469a9c21099 (diff) | |
download | nova-6c8c454826263b334eb674c9ab1c8d62e5fd491f.tar.gz nova-6c8c454826263b334eb674c9ab1c8d62e5fd491f.tar.xz nova-6c8c454826263b334eb674c9ab1c8d62e5fd491f.zip |
Help paste_config_file find the api config now that we moved it.
-rw-r--r-- | nova/wsgi.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/nova/wsgi.py b/nova/wsgi.py index ba0819466..05e7d5924 100644 --- a/nova/wsgi.py +++ b/nova/wsgi.py @@ -532,6 +532,7 @@ def paste_config_file(basename): """ configfiles = [basename, + os.path.join(FLAGS.state_path, 'etc', 'nova', basename), os.path.join(FLAGS.state_path, 'etc', basename), os.path.join(FLAGS.state_path, basename), '/etc/nova/%s' % basename] |