diff options
| author | Joel Moore joelbm24@gmail.com <> | 2010-07-27 15:35:20 -0700 |
|---|---|---|
| committer | Joel Moore joelbm24@gmail.com <> | 2010-07-27 15:35:20 -0700 |
| commit | 8dad7d1d45599880571689d62857cb437dea182e (patch) | |
| tree | d0a3bb93cbe8e3a99e5734a8c3d25b2c4aa2c2b4 | |
| parent | 8d0ab705f9432106ec6725be5270081ee9f5a3df (diff) | |
fixed path to keys directory
| -rw-r--r-- | nova/endpoint/cloud.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nova/endpoint/cloud.py b/nova/endpoint/cloud.py index 8c6c05566..9d81d3bba 100644 --- a/nova/endpoint/cloud.py +++ b/nova/endpoint/cloud.py @@ -86,7 +86,7 @@ class CloudController(object): """ Ensure the keychains and folders exist. """ # Create keys folder, if it doesn't exist if not os.path.exists(FLAGS.keys_path): - os.makedirs(os.path.abspath(FLAGS.keys_path)) + os.makedirs(FLAGS.keys_path) # Gen root CA, if we don't have one root_ca_path = os.path.join(FLAGS.ca_path, FLAGS.ca_file) if not os.path.exists(root_ca_path): |
