Merge "Point default MURANO_REPO_URL to http://storage.apps.openstack.org"

This commit is contained in:
Jenkins 2015-05-27 14:34:15 +00:00 committed by Gerrit Code Review
commit 6029f64aa9
1 changed files with 4 additions and 3 deletions

View File

@ -160,10 +160,11 @@ class MuranoShell(object):
help='Send os-username and os-password to murano.')
parser.add_argument('--murano-repo-url',
default=utils.env('MURANO_REPO_URL',
default='http://127.0.0.1'),
default=utils.env(
'MURANO_REPO_URL',
default='http://storage.apps.openstack.org'),
help=('Defaults to env[MURANO_REPO_URL] '
'or 127.0.0.1'))
'or http://storage.apps.openstack.org'))
return parser