DevStack plugin: make source dirs configurable

Make source directories of Manila and Manila client configurable such
that those of other OpenStack projects are not affected. So the
developer can conveniently use her own repos with the DevStack setup.
Currently the source directories of Manila and Manila client depend on
$DEST, which is used by other install scripts in the DevStack framework.

Change-Id: I6e430ee2478a097abaab1b78f12d17fed3895eee
This commit is contained in:
Ramana Raja 2014-03-04 19:00:36 +05:30
parent 753f161406
commit fdb1dcb147
1 changed files with 2 additions and 2 deletions

View File

@ -40,8 +40,8 @@ MANILA_SECURE_DELETE=`trueorfalse True $MANILA_SECURE_DELETE`
MANILA_DRIVER=${MANILA_DRIVER:-default}
# set up default directories
MANILA_DIR=$DEST/manila
MANILACLIENT_DIR=$DEST/python-manilaclient
MANILA_DIR=${MANILA_DIR:=$DEST/manila}
MANILACLIENT_DIR=${MANILACLIENT_DIR:=$DEST/python-manilaclient}
MANILA_STATE_PATH=${MANILA_STATE_PATH:=$DATA_DIR/manila}
MANILA_MNT_DIR=${MANILA_MNT_DIR:=$MANILA_STATE_PATH/mnt}
MANILA_AUTH_CACHE_DIR=${MANILA_AUTH_CACHE_DIR:-/var/cache/manila}