# GNU General Public License for more details.
# -----------------------------------------------------------------------
-while getopts aystb option
+while getopts aystbd option
do
case "${option}"
in
s) SAMPLEDATA=--load-all-sample;;
t) LIVETEST=1;;
b) NO_BROWSER=1;;
+ d) NO_DATABASE=1;;
esac
done
}
function evergreen_db_prereqs {
+ if [ "$NO_DATABASE" == 1 ]; then
+ echo "_.-~= Skipping Evergreen database pre-requisites"
+ return;
+ fi;
echo _.-~= Installing Evergreen database pre-requisites
date
if [ $YES ]; then
}
function configure_database {
+ if [ "$NO_DATABASE" == 1 ]; then
+ echo "_.-~= Skipping configure database"
+ return;
+ fi;
echo _.-~= configure database
date
if [ $YES ]; then