File tree Expand file tree Collapse file tree 3 files changed +7
-1
lines changed
Expand file tree Collapse file tree 3 files changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ admin_user = %SERVICE_USERNAME%
4040admin_password = %SERVICE_PASSWORD%
4141
4242[filter:swift3]
43- use = egg:swift# swift3
43+ use = egg:swift3#middleware
4444
4545[filter:tempauth]
4646use = egg:swift#tempauth
Original file line number Diff line number Diff line change @@ -214,6 +214,7 @@ KEYSTONECLIENT_DIR=$DEST/python-keystoneclient
214214OPENSTACKCLIENT_DIR=$DEST /python-openstackclient
215215NOVNC_DIR=$DEST /noVNC
216216SWIFT_DIR=$DEST /swift
217+ SWIFT3_DIR=$DEST /swift3
217218QUANTUM_DIR=$DEST /quantum
218219QUANTUM_CLIENT_DIR=$DEST /python-quantumclient
219220MELANGE_DIR=$DEST /melange
673674if is_service_enabled swift; then
674675 # storage service
675676 git_clone $SWIFT_REPO $SWIFT_DIR $SWIFT_BRANCH
677+ git_clone $SWIFT3_REPO $SWIFT3_DIR $SWIFT3_BRANCH
676678fi
677679if is_service_enabled g-api n-api; then
678680 # image catalog service
@@ -716,6 +718,7 @@ if is_service_enabled key g-api n-api swift; then
716718fi
717719if is_service_enabled swift; then
718720 cd $SWIFT_DIR ; sudo python setup.py develop
721+ cd $SWIFT3_DIR ; sudo python setup.py develop
719722fi
720723if is_service_enabled g-api n-api; then
721724 cd $GLANCE_DIR ; sudo python setup.py develop
Original file line number Diff line number Diff line change @@ -16,6 +16,9 @@ NOVA_BRANCH=master
1616# storage service
1717SWIFT_REPO=https://github.com/openstack/swift.git
1818SWIFT_BRANCH=master
19+ SWIFT3_REPO=https://github.com/fujita/swift3.git
20+ SWIFT3_BRANCH=master
21+
1922
2023# image catalog service
2124GLANCE_REPO=https://github.com/openstack/glance.git
You can’t perform that action at this time.
0 commit comments