File tree Expand file tree Collapse file tree 2 files changed +7
-0
lines changed
Expand file tree Collapse file tree 2 files changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -205,6 +205,7 @@ GLANCECLIENT_DIR=$DEST/python-glanceclient
205205KEYSTONE_DIR=$DEST /keystone
206206NOVACLIENT_DIR=$DEST /python-novaclient
207207KEYSTONECLIENT_DIR=$DEST /python-keystoneclient
208+ OPENSTACKCLIENT_DIR=$DEST /python-openstackclient
208209NOVNC_DIR=$DEST /noVNC
209210SWIFT_DIR=$DEST /swift
210211QUANTUM_DIR=$DEST /quantum
@@ -644,6 +645,7 @@ git_clone $NOVA_REPO $NOVA_DIR $NOVA_BRANCH
644645# python client library to nova that horizon (and others) use
645646git_clone $KEYSTONECLIENT_REPO $KEYSTONECLIENT_DIR $KEYSTONECLIENT_BRANCH
646647git_clone $NOVACLIENT_REPO $NOVACLIENT_DIR $NOVACLIENT_BRANCH
648+ git_clone $OPENSTACKCLIENT_REPO $OPENSTACKCLIENT_DIR $OPENSTACKCLIENT_BRANCH
647649git_clone $GLANCECLIENT_REPO $GLANCECLIENT_DIR $GLANCECLIENT_BRANCH
648650
649651# glance, swift middleware and nova api needs keystone middleware
691693# allowing ``import nova`` or ``import glance.client``
692694cd $KEYSTONECLIENT_DIR ; sudo python setup.py develop
693695cd $NOVACLIENT_DIR ; sudo python setup.py develop
696+ cd $OPENSTACKCLIENT_DIR ; sudo python setup.py develop
694697if is_service_enabled key g-api n-api swift; then
695698 cd $KEYSTONE_DIR ; sudo python setup.py develop
696699fi
Original file line number Diff line number Diff line change @@ -41,6 +41,10 @@ HORIZON_BRANCH=master
4141NOVACLIENT_REPO=https://github.com/openstack/python-novaclient.git
4242NOVACLIENT_BRANCH=master
4343
44+ # Shared openstack python client library
45+ OPENSTACKCLIENT_REPO=https://github.com/openstack/python-openstackclient.git
46+ OPENSTACKCLIENT_BRANCH=master
47+
4448# python keystone client library to nova that horizon uses
4549KEYSTONECLIENT_REPO=https://github.com/openstack/python-keystoneclient
4650KEYSTONECLIENT_BRANCH=master
You can’t perform that action at this time.
0 commit comments