Spotter-VM/00-install.sh

22 lines
526 B
Bash
Raw Normal View History

#!/bin/bash
# For production builds change to DEBUG=0 or comment the line entirely
export DEBUG=1
SOURCE_DIR=$(realpath $(dirname "${0}"))
${SOURCE_DIR}/01-basic.sh
${SOURCE_DIR}/02-sahana.sh
${SOURCE_DIR}/03-sambro.sh
${SOURCE_DIR}/10-seeddms.sh
2017-11-19 10:32:32 +01:00
${SOURCE_DIR}/20-ushahidi.sh
${SOURCE_DIR}/30-ckan.sh
${SOURCE_DIR}/50-pandora.sh
2017-10-13 09:33:26 +02:00
${SOURCE_DIR}/60-kanboard.sh
${SOURCE_DIR}/70-crisiscleanup.sh
# Perform cleanup only if DEBUG environment variable is not set
if [ ${DEBUG:-0} -eq 0 ]; then
${SOURCE_DIR}/99-cleanup.sh
fi