Merge "install_rally.sh: permit absolute paths for sqlite db name"
This commit is contained in:
commit
a34b2d906a
@ -576,8 +576,13 @@ then
|
|||||||
RALLY_DATABASE_DIR="$VENVDIR"/database
|
RALLY_DATABASE_DIR="$VENVDIR"/database
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ "$DBTYPE" != 'sqlite' ]
|
if [ "$DBTYPE" = 'sqlite' ]; then
|
||||||
then
|
if [ "${DBNAME:0:1}" = '/' ]; then
|
||||||
|
DBCONNSTRING="$DBTYPE:///$DBNAME"
|
||||||
|
else
|
||||||
|
DBCONNSTRING="$DBTYPE:///${RALLY_DATABASE_DIR}/${DBNAME}"
|
||||||
|
fi
|
||||||
|
else
|
||||||
if [ -z "$DBUSER" -o -z "$DBPASSWORD" -o -z "$DBHOST" -o -z "$DBNAME" ]
|
if [ -z "$DBUSER" -o -z "$DBPASSWORD" -o -z "$DBHOST" -o -z "$DBNAME" ]
|
||||||
then
|
then
|
||||||
die $EX_USAGE "Missing mandatory options" <<__EOF__
|
die $EX_USAGE "Missing mandatory options" <<__EOF__
|
||||||
@ -595,8 +600,6 @@ __EOF__
|
|||||||
fi
|
fi
|
||||||
DBAUTH="$DBUSER:$DBPASSWORD@$DBHOST"
|
DBAUTH="$DBUSER:$DBPASSWORD@$DBHOST"
|
||||||
DBCONNSTRING="$DBTYPE://$DBAUTH/$DBNAME"
|
DBCONNSTRING="$DBTYPE://$DBAUTH/$DBNAME"
|
||||||
else
|
|
||||||
DBCONNSTRING="$DBTYPE:///${RALLY_DATABASE_DIR}/${DBNAME}"
|
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# check and install prerequisites
|
# check and install prerequisites
|
||||||
|
Loading…
x
Reference in New Issue
Block a user