Only create ca_path directory if it does not already exist.

This commit is contained in:
Soren Hansen 2011-04-06 13:06:43 +00:00 committed by Tarmac
commit 134b1b4caa

View File

@ -110,6 +110,7 @@ class CloudController(object):
'genrootca.sh')
start = os.getcwd()
if not os.path.exists(FLAGS.ca_path):
os.makedirs(FLAGS.ca_path)
os.chdir(FLAGS.ca_path)
# TODO(vish): Do this with M2Crypto instead