Merge "Check passwords.yml exist before init action"

This commit is contained in:
Zuul 2018-06-20 18:45:23 +00:00 committed by Gerrit Code Review
commit 3c78d808e1
1 changed files with 4 additions and 2 deletions

View File

@ -28,8 +28,10 @@ from kolla_cli.common.utils import get_kolla_etc
def _init_keys(path):
cmd = 'kolla-genpwd'
if os.path.exists(path):
cmd = ' '.join((cmd, '-p', path))
if not os.path.exists(path):
raise Exception('The path %s does not exist' % path)
cmd = ' '.join((cmd, '-p', path))
(_, err) = subprocess.Popen(cmd, shell=True,
stdout=subprocess.PIPE,
stderr=subprocess.PIPE).communicate()