| ... | ... |
@@ -31,6 +31,7 @@ GITDIR["oslo.i18n"]=$DEST/oslo.i18n |
| 31 | 31 |
GITDIR["oslo.log"]=$DEST/oslo.log |
| 32 | 32 |
GITDIR["oslo.messaging"]=$DEST/oslo.messaging |
| 33 | 33 |
GITDIR["oslo.middleware"]=$DEST/oslo.middleware |
| 34 |
+GITDIR["oslo.policy"]=$DEST/oslo.policy |
|
| 34 | 35 |
GITDIR["oslo.rootwrap"]=$DEST/oslo.rootwrap |
| 35 | 36 |
GITDIR["oslo.serialization"]=$DEST/oslo.serialization |
| 36 | 37 |
GITDIR["oslo.utils"]=$DEST/oslo.utils |
| ... | ... |
@@ -65,6 +66,7 @@ function install_oslo {
|
| 65 | 65 |
_do_install_oslo_lib "oslo.log" |
| 66 | 66 |
_do_install_oslo_lib "oslo.messaging" |
| 67 | 67 |
_do_install_oslo_lib "oslo.middleware" |
| 68 |
+ _do_install_oslo_lib "oslo.policy" |
|
| 68 | 69 |
_do_install_oslo_lib "oslo.rootwrap" |
| 69 | 70 |
_do_install_oslo_lib "oslo.serialization" |
| 70 | 71 |
_do_install_oslo_lib "oslo.utils" |
| ... | ... |
@@ -346,6 +346,10 @@ GITBRANCH["oslo.messaging"]=${OSLOMSG_BRANCH:-master}
|
| 346 | 346 |
GITREPO["oslo.middleware"]=${OSLOMID_REPO:-${GIT_BASE}/openstack/oslo.middleware.git}
|
| 347 | 347 |
GITBRANCH["oslo.middleware"]=${OSLOMID_BRANCH:-master}
|
| 348 | 348 |
|
| 349 |
+# oslo.policy |
|
| 350 |
+GITREPO["oslo.policy"]=${OSLOPOLICY_REPO:-${GIT_BASE}/openstack/oslo.policy.git}
|
|
| 351 |
+GITBRANCH["oslo.policy"]=${OSLOPOLICY_BRANCH:-master}
|
|
| 352 |
+ |
|
| 349 | 353 |
# oslo.rootwrap |
| 350 | 354 |
GITREPO["oslo.rootwrap"]=${OSLORWRAP_REPO:-${GIT_BASE}/openstack/oslo.rootwrap.git}
|
| 351 | 355 |
GITBRANCH["oslo.rootwrap"]=${OSLORWRAP_BRANCH:-master}
|
| ... | ... |
@@ -29,7 +29,7 @@ for i in $TOP/lib/*; do |
| 29 | 29 |
fi |
| 30 | 30 |
done |
| 31 | 31 |
|
| 32 |
-ALL_LIBS="python-novaclient oslo.config pbr oslo.context python-troveclient python-keystoneclient taskflow oslo.middleware pycadf python-glanceclient python-ironicclient tempest-lib oslo.messaging oslo.log cliff python-heatclient stevedore python-cinderclient glance_store oslo.concurrency oslo.db oslo.vmware keystonemiddleware oslo.serialization python-saharaclient django_openstack_auth python-openstackclient oslo.rootwrap oslo.i18n python-ceilometerclient oslo.utils python-swiftclient python-neutronclient tooz ceilometermiddleware" |
|
| 32 |
+ALL_LIBS="python-novaclient oslo.config pbr oslo.context python-troveclient python-keystoneclient taskflow oslo.middleware pycadf python-glanceclient python-ironicclient tempest-lib oslo.messaging oslo.log cliff python-heatclient stevedore python-cinderclient glance_store oslo.concurrency oslo.db oslo.vmware keystonemiddleware oslo.serialization python-saharaclient django_openstack_auth python-openstackclient oslo.rootwrap oslo.i18n python-ceilometerclient oslo.utils python-swiftclient python-neutronclient tooz ceilometermiddleware oslo.policy" |
|
| 33 | 33 |
|
| 34 | 34 |
# Generate the above list with |
| 35 | 35 |
# echo ${!GITREPO[@]}
|