2017-09-26 12:37:27 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
2017-09-26 12:52:05 +02:00
|
|
|
# For production builds change to DEBUG=0 or comment the line entirely
|
2017-09-26 12:37:27 +02:00
|
|
|
export DEBUG=1
|
2017-09-26 12:52:05 +02:00
|
|
|
|
2017-09-26 12:37:27 +02:00
|
|
|
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
|
2017-09-26 12:37:27 +02:00
|
|
|
${SOURCE_DIR}/50-pandora.sh
|
2017-10-13 09:33:26 +02:00
|
|
|
${SOURCE_DIR}/60-kanboard.sh
|
2017-11-28 11:16:28 +01:00
|
|
|
${SOURCE_DIR}/70-crisiscleanup.sh
|
2017-09-26 12:52:05 +02:00
|
|
|
|
|
|
|
# Perform cleanup only if DEBUG environment variable is not set
|
|
|
|
if [ ${DEBUG:-0} -eq 0 ]; then
|
|
|
|
${SOURCE_DIR}/99-cleanup.sh
|
|
|
|
fi
|